/* Importar fonte Pill Gothic */
@font-face {
    font-family: 'Pill Gothic';
    font-style: normal;
    font-weight: 300;
    src: url('../font/pill-gothic-600mg-webfont/Pill Gothic 600mg Light.woff') format('woff');
}

@font-face {
    font-family: 'Pill Gothic';
    font-style: normal;
    font-weight: 600;
    src: url('../font/pill-gothic-600mg-webfont/Pill Gothic 600mg Semibd.woff') format('woff');
}

@font-face {
    font-family: 'Pill Gothic';
    font-style: normal;
    font-weight: 700;
    src: url('../font/pill-gothic-600mg-webfont/Pill Gothic 600mg Bold.woff') format('woff');
}

:root {
    --wantel-primary: #50B432;
    --wantel-secondary: #C8DC00;
    --wantel-dark: #0f1d13;
    --wantel-gray: #6c757d;
}

body {
    font-family: 'Pill Gothic', "Segoe UI", system-ui, -apple-system, sans-serif;
    color: #1f3324;
    background-color: #f9faf7;
}

.btn-primary {
    background-color: var(--wantel-primary);
    border-color: var(--wantel-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #3f8b27;
    border-color: #3f8b27;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.nav-link {
    font-weight: 500;
    color: #254127;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--wantel-primary);
}

.badge {
    background-color: rgba(80, 180, 50, .1);
    color: var(--wantel-primary);
    letter-spacing: .06em;
    font-weight: 600;
}

.hero {
    background: radial-gradient(circle at top left, rgba(80, 180, 50, .16), transparent 45%), #081007;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero .lead {
    color: rgba(255, 255, 255, .75) !important;
}

.hero .btn-outline-light {
    border-color: rgba(255, 255, 255, .4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
}

.hero-stats span {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
}

.hero-media {
    position: relative;
}

.hero-card {
    position: absolute;
    bottom: -1rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #fff;
    padding: 1.25rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: .75rem;
}

.check-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--wantel-primary);
}

.info-panel {
    background-color: #fff;
    padding: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 1.5rem 3rem rgba(15, 30, 20, .08);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    background: rgba(80, 180, 50, .15);
    color: var(--wantel-primary);
    font-size: 1.5rem;
}

.plan-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(15, 30, 20, .08);
    box-shadow: 0 1rem 2rem rgba(15, 30, 20, .05);
}

.plan-card.featured {
    border-color: var(--wantel-primary);
    box-shadow: 0 1.5rem 2.5rem rgba(80, 180, 50, .2);
    position: relative;
}

.plan-badge {
    text-transform: uppercase;
    font-size: 5px;
    color: var(--wantel-primary);
    letter-spacing: .08em;
}

.plan-speed {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wantel-primary);
}

.plan-price span {
    font-size: 1rem;
    color: var(--wantel-gray);
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: .5rem 0;
}

.plan-card ul li {
    margin-bottom: .5rem;
    color: var(--wantel-gray);
}

.coverage-form label {
    font-weight: 600;
}

.contact-card {
    background: #fff;
}

.contact-card i {
    color: var(--wantel-primary);
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 1rem 2rem rgba(15, 30, 20, .05);
}

.form-card {
    background: #fff;
}

footer {
    background: #0d140c;
    color: #dce5d8;
}

footer small,
footer p {
    color: #9cb79f;
}

/* Top Bar Verde */
.top-bar {
    background: var(--wantel-primary);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-links {
    display: flex;
    gap: 0.5rem;
}

.btn-top-bar {
    background: transparent;
    color: #fff;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-top-bar.active {
    background: var(--wantel-secondary);
    color: #333;
}

.btn-top-bar:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-top-bar.active:hover {
    background: var(--wantel-secondary);
    color: #333;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-bar-info a:hover {
    opacity: 0.8;
}

.btn-top-whatsapp {
    background: var(--wantel-secondary);
    color: #333 !important;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.top-bar-info i {
    margin-right: 0.3rem;
}

.top-bar .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.top-bar .dropdown-toggle::after {
    margin-left: 0.3rem;
}

.top-bar .dropdown-menu {
    z-index: 1050;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.top-bar .dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #333;
    transition: all 0.2s ease;
}

.top-bar .dropdown-item:hover {
    background: var(--wantel-primary);
    color: #fff;
}

.top-bar .dropdown-item.active {
    background: var(--wantel-secondary);
    color: #333;
    font-weight: 600;
}

/* Submenu de Aplicativos com scroll */
.navbar-wantel .nav-item:nth-child(3) .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Estilizar scrollbar do submenu de aplicativos */
.navbar-wantel .nav-item:nth-child(3) .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.navbar-wantel .nav-item:nth-child(3) .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.navbar-wantel .nav-item:nth-child(3) .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--wantel-primary);
    border-radius: 4px;
}

.navbar-wantel .nav-item:nth-child(3) .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #3d8a28;
}

/* Navbar customizado */
.navbar-wantel {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-wantel .nav-link {
    font-weight: 600;
    color: #333;
    margin: 0 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-wantel .nav-link:hover {
    color: var(--wantel-primary);
}

.navbar-wantel .dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.navbar-wantel .dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-wantel .dropdown-item:hover {
    background: var(--wantel-primary);
    color: #fff;
}

.navbar-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--wantel-primary);
    color: #fff;
}

.btn-cliente {
    background: var(--wantel-primary);
    color: #fff;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-cliente:hover {
    background: #3f8b27;
    color: #fff;
}

.btn-cliente i {
    margin-right: 0.4rem;
}

/* Banner/Hero Section */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Seção de Planos */
.planos-section {
    background: #fff;
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--wantel-gray);
    font-weight: 400;
}

.plan-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px; 
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--wantel-primary);
}

.plan-featured {
    border-color: var(--wantel-primary);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(80, 180, 50, 0.2);
}

.plan-featured:hover {
    box-shadow: 0 15px 50px rgba(80, 180, 50, 0.3);
}

.plan-badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wantel-primary);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.plan-header {
     
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wantel-primary), var(--wantel-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.plan-featured .plan-icon {
    background: linear-gradient(135deg, var(--wantel-secondary), var(--wantel-primary));
}

.plan-name {
    font-size: 0.9rem; 
    color: #333;
    margin-bottom: 0.2rem;
}

.plan-description {
    font-size: 0.85rem;
    color: var(--wantel-gray);
    margin: 0;
    margin-bottom: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0 0;
    color: #555;
    font-size: 0.85rem;   
    text-align: start;
    padding-left: 10px ;
}

.plan-features i {
    color: var(--wantel-primary);
    font-size: 0.9rem;
}

/* Apps inclusos nos planos - DESTAQUE */
.plan-apps-featured {
    background: linear-gradient(135deg, rgba(80, 180, 50, 0.15), rgba(200, 220, 0, 0.15));
    border-radius: 15px;
    padding: 0.5rem 0.3rem; 
    text-align: center;
    border: 2px solid rgba(80, 180, 50, 0.2);
}

.apps-included-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.apps-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.app-icon-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(80, 180, 50, 0.3);
}

.plan-featured .plan-apps-featured {
    background: linear-gradient(135deg, rgba(200, 220, 0, 0.25), rgba(80, 180, 50, 0.25));
    border-color: var(--wantel-secondary);
}

.btn-plan {
    background: var(--wantel-primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-plan:hover {
    background: #3f8b27;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(80, 180, 50, 0.3);
}

.plan-featured .btn-plan {
    background: linear-gradient(135deg, var(--wantel-primary), var(--wantel-secondary));
}

.plan-featured .btn-plan:hover {
    background: linear-gradient(135deg, #3f8b27, #a8b800);
}

/* Barra CTA */
.cta-bar {
    background: linear-gradient(135deg, var(--wantel-primary), var(--wantel-secondary));
    padding: 2rem 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-left {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.cta-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.btn-whatsapp {
    background: #fff;
    color: var(--wantel-primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
    color: var(--wantel-primary);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* ========================================
   SEÇÃO APLICATIVOS INCLUSOS
======================================== */

.apps-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.apps-title {
    color: var(--wantel-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.apps-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.app-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.app-card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.app-card-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.app-card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.apps-availability {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* ========================================
   SEÇÃO CONHEÇA A WANTEL
======================================== */

.conheca-wantel-section {
    background: #fff;
    padding: 5rem 0;
}

.conheca-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.conheca-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.conheca-content {
    padding-left: 2rem;
}

.conheca-title {
    color: var(--wantel-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.conheca-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-conheca {
    background: #e0e0e0;
    color: #555;
    border: none;
    border-radius: 25px;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-conheca:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SEÇÃO VANTAGENS DA INTERNET FIBRA
======================================== */

.vantagens-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.vantagens-title {
    color: var(--wantel-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.vantagem-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vantagem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wantel-primary), var(--wantel-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
}

.vantagem-card-title {
    color: var(--wantel-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vantagem-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   SEÇÃO CONHEÇA WANTV
======================================== */

.wantv-section {
    background: linear-gradient(135deg, #0a4d0a, #145214);
    padding: 0;
    color: #fff;
}

.wantv-content {
    padding: 5em 0;
}

.wantv-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.wantv-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.wantv-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.wantv-description {
    color: #e8f5e9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-wantv {
    background: #fff;
    color: #0a4d0a;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-wantv:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.wantv-image {
    position: relative;
}

.wantv-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* ========================================
   SEÇÃO AUTOATENDIMENTO CLIENTE WANTEL
======================================== */

.autoatendimento-section {
    background: #f0f0f0;
    padding: 5rem 0;
}

.autoatendimento-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-highlight {
    color: var(--wantel-primary);
}

.autoatendimento-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.atendimento-card {
    background: linear-gradient(135deg, #2d7a1f, #3d9428);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.atendimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 31, 0.4);
    background: linear-gradient(135deg, #3d9428, #4aab30);
}

.atendimento-icon {
    width: 60px;
    height: 60px;
    background: var(--wantel-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.atendimento-icon i {
    font-size: 2rem;
    color: #333;
}

.atendimento-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
    background: var(--wantel-secondary);
    color: #333;
}

.whatsapp-button:hover {
    background: #b8cc00;
    color: #333;
}

.phone-button {
    background: var(--wantel-secondary);
    color: #333;
}

.phone-button:hover {
    background: #b8cc00;
    color: #333;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2rem;
    color: #333;
}

.contact-text {
    color: #2d7a1f;
    font-weight: 700;
}

/* ========================================
   SEÇÃO BLOG
======================================== */

.blog-section {
    background: linear-gradient(135deg, #2d7a1f, #3d9428);
    padding: 0;
    overflow: hidden;
}

.blog-text-area {
    background: linear-gradient(135deg, #2d7a1f, #3d9428);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-text-content {
    text-align: left;
}

.blog-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.blog-cards-wrapper {
    background: linear-gradient(135deg, #3d9428, #4aab30);
    padding: 3rem 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

 

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-title {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   SEÇÃO FAQ
======================================== */

.faq-section {
    background: #f5f5f5;
    padding: 5rem 0 0 0;
}

.faq-title {
    color: var(--wantel-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: white;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--wantel-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .top-bar-info {
        flex-wrap: wrap;
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .navbar-social {
        margin-top: 1rem;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .plan-card {
        margin-bottom: 2rem;
    }

    .app-icon-large {
        width: 55px;
        height: 55px;
    }

    .apps-included-title {
        font-size: 0.95rem;
    }

    .apps-title {
        font-size: 2rem;
    }

    .app-card {
        margin-bottom: 1rem;
    }

    .wantv-content {
        padding-right: 0;
    }

    .wantv-title {
        font-size: 2rem;
    }

    .conheca-content {
        padding-left: 0;
    }

    .conheca-title {
        font-size: 2rem;
    }

    .vantagens-title {
        font-size: 1.9rem;
    }

    .vantagem-card {
        margin-bottom: 1rem;
    }

    .autoatendimento-title {
        font-size: 2rem;
    }

    .atendimento-card {
        min-height: 160px;
    }

    .contact-button {
        font-size: 1rem;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-text-area {
        padding: 3rem 1.5rem;
    }

    .blog-cards-wrapper {
        padding: 2rem 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .top-bar-info {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .top-bar-links {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .plan-name {
        font-size: 1.7rem;
    }

    .plan-apps-featured {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .app-icon-large {
        width: 50px;
        height: 50px;
    }

    .apps-included-title {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .apps-icons-wrapper {
        gap: 0.8rem;
    }

    .cta-content {
        justify-content: center;
        text-align: center;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }

    .apps-section {
        padding: 3rem 0;
    }

    .apps-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .apps-description {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .app-card-icon {
        width: 80px;
        height: 80px;
    }

    .app-card-title {
        font-size: 1.1rem;
    }

    .app-card-text {
        font-size: 0.9rem;
    }

    .wantv-section {
        padding: 3rem 0;
    }

    .wantv-content {
        text-align: center;
        padding-right: 0;
    }

    .wantv-logo-wrapper {
        justify-content: center;
    }

    .wantv-title {
        font-size: 1.8rem;
    }

    .wantv-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-wantv {
        width: 100%;
        max-width: 300px;
    }

    .wantv-logo-icon {
        width: 50px;
        height: 50px;
    }

    .conheca-wantel-section {
        padding: 3rem 0;
    }

    .conheca-logo img {
        max-width: 200px;
    }

    .conheca-content {
        text-align: center;
        padding-left: 0;
    }

    .conheca-title {
        font-size: 1.8rem;
    }

    .conheca-description {
        font-size: 1rem;
    }

    .btn-conheca {
        width: 100%;
        max-width: 300px;
    }

    .vantagens-section {
        padding: 3rem 0;
    }

    .vantagens-title {
        font-size: 1.7rem;
    }

    .vantagem-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .vantagem-card-title {
        font-size: 1.2rem;
    }

    .vantagem-card-text {
        font-size: 0.9rem;
    }

    .autoatendimento-section {
        padding: 3rem 0;
    }

    .autoatendimento-title {
        font-size: 1.7rem;
    }

    .autoatendimento-subtitle {
        font-size: 0.95rem;
    }

    .atendimento-card {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }

    .atendimento-icon {
        width: 50px;
        height: 50px;
    }

    .atendimento-icon i {
        font-size: 1.6rem;
    }

    .atendimento-title {
        font-size: 1rem;
    }

    .contact-button {
        font-size: 0.95rem;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.6rem;
    }

    .blog-section {
        padding: 0;
    }

    .blog-text-area {
        padding: 2rem 1rem;
    }

    .blog-title {
        font-size: 1.7rem;
        text-align: center;
    }

    .blog-cards-wrapper {
        padding: 2rem 1rem;
    }
 
    .blog-card-title {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .accordion-body {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-image {
        margin-top: 2rem;
    }
}

/* ========================================
   SEÇÃO WIFI 6
   ======================================== */

.wifi6-section {
    background: #C8DC00;
    background: linear-gradient(135deg, rgba(200, 220, 0, 1) 0%, rgba(35, 115, 11, 1) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.wifi6-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(200, 220, 0, 0.3) 0%, rgba(122, 144, 0, 0.5) 100%);
    pointer-events: none;
}

.wifi6-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wifi6-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.wifi6-content {
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.wifi6-title {
    font-family: 'Pill Gothic 600mg Bold', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.wifi6-text {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.btn-wifi6 {
    font-family: 'Pill Gothic 600mg Semibd', sans-serif;
    background: #2d5c1f;
    color: #C8DC00;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-wifi6:hover {
    background: #1f4015;
    color: #C8DC00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER WANTEL
   ======================================== */

.footer-wantel {
    background: #3d3d3d;
    color: #fff;
    overflow: hidden;
}

/* Footer Links Section */
.footer-links-section {
    background: #3d3d3d;
    padding: 4rem 0 2rem;
}

.footer-column-title {
    font-family: 'Pill Gothic 600mg Bold', sans-serif;
    font-size: 1.2rem;
    color: #C8DC00;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    color: #d4d4d4;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #C8DC00;
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-3px);
}

.app-badge img {
    height: 45px;
    width: auto;
}

/* Premiações Grid */
.premiacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.premiacao-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem;
}

.premiacao-img:hover {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-3px);
}

/* Footer Info Section */
.footer-info-section {
    background: #2d2d2d;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

.footer-section-title {
    font-family: 'Pill Gothic 600mg Bold', sans-serif;
    font-size: 1.1rem;
    color: #C8DC00;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section-subtitle {
    font-family: 'Pill Gothic 600mg Bold', sans-serif;
    font-size: 1rem;
    color: #C8DC00;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.footer-info-text {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    background: #222;
    padding: 1.5rem 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: #C8DC00;
}

.footer-copyright {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles para WiFi 6 e Footer */
@media (max-width: 991.98px) {
    .wifi6-section {
        padding: 4rem 0;
    }

    .wifi6-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .wifi6-title {
        font-size: 1.9rem;
    }

    .wifi6-text {
        font-size: 1rem;
    }

    .btn-wifi6 {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .premiacoes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .wifi6-section {
        padding: 3rem 0;
    }

    .wifi6-title {
        font-size: 1.6rem;
    }

    .wifi6-text {
        font-size: 0.95rem;
    }

    .btn-wifi6 {
        width: 100%;
        max-width: 300px;
    }

    .footer-links-section {
        padding: 3rem 0 2rem;
    }

    .footer-column {
        margin-bottom: 2rem;
        text-align: center;
    }

    .app-badges {
        justify-content: center;
    }

    .premiacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-info-section {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-links a {
        display: inline-block;
        margin: 0.3rem 0.5rem;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* ============================================
   PAGE HEADER & BREADCRUMB
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    padding: 3rem 0 2.5rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%) !important;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 1.5rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    background-color: #f9faf7;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 1rem 2rem rgba(15, 30, 20, 0.08);
    height: 100%;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f3324;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #1f3324;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--wantel-primary);
    box-shadow: 0 0 0 0.2rem rgba(80, 180, 50, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(80, 180, 50, 0.2);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-details h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wantel-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f3324;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-details a:hover {
    color: var(--wantel-primary);
}

/* Social Icons */
.contact-social .social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(80, 180, 50, 0.2);
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(80, 180, 50, 0.3);
    color: #fff;
}

.social-icon-link i {
    font-size: 1.25rem;
}

/* Contact Icon Circle (for card-based layout) */
.contact-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.5rem 3rem rgba(15, 30, 20, 0.12) !important;
}

.hover-primary:hover {
    color: var(--wantel-primary) !important;
}

.hover-success:hover {
    color: #198754 !important;
}

.hover-info:hover {
    color: #0dcaf0 !important;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

#map,
#map1 {
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-item {
        padding: 1.25rem 0;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-page-section {
    background-color: #f9faf7;
}

/* FAQ Category Titles */
.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.faq-category-title i {
    font-size: 1.75rem;
    opacity: 0.8;
}

/* FAQ Category Description */
.faq-category-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Contact Cards */
.faq-contact-card,
.faq-whatsapp-card,
.faq-hours-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(15, 30, 20, 0.08);
    text-align: center;
}

.faq-contact-icon,
.faq-whatsapp-icon,
.faq-hours-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.faq-contact-icon {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    color: #fff;
}

.faq-whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.faq-hours-icon {
    background: linear-gradient(135deg, var(--wantel-secondary) 0%, #a8b800 100%);
    color: #333;
}

.faq-contact-title,
.faq-whatsapp-title,
.faq-hours-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f3324;
    margin-bottom: 0.75rem;
}

.faq-contact-text,
.faq-whatsapp-text,
.faq-hours-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* FAQ WhatsApp Button */
.btn-whatsapp-faq {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-faq:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* FAQ Hours Note */
.faq-hours-note {
    background: rgba(80, 180, 50, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--wantel-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Accordion Customization for FAQ */
.faq-page-section .accordion-item {
    background: #fff;
    border: none;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 30, 20, 0.06);
    transition: all 0.3s ease;
}

.faq-page-section .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(15, 30, 20, 0.1);
}

.faq-page-section .accordion-header {
    margin: 0;
}

.faq-page-section .accordion-button {
    background: #fff;
    color: #1f3324;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-page-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    color: #fff;
    box-shadow: none;
}

.faq-page-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-page-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f3324'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-page-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-page-section .accordion-body {
    padding: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    background: #fafafa;
}

/* Responsive Styles for FAQ */
@media (max-width: 991.98px) {
    .faq-category-title {
        font-size: 1.35rem;
    }

    .faq-contact-card,
    .faq-whatsapp-card,
    .faq-hours-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .faq-category-title {
        font-size: 1.25rem;
    }

    .faq-contact-icon,
    .faq-whatsapp-icon,
    .faq-hours-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .faq-contact-title,
    .faq-whatsapp-title,
    .faq-hours-title {
        font-size: 1.15rem;
    }

    .faq-page-section .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-page-section .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-section {
    background-color: #f9faf7;
    min-height: 60vh;
}

/* Blog Post Card */
.blog-post-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 30, 20, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2.5rem rgba(15, 30, 20, 0.15);
}

/* Imagem do Post */
.blog-post-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f0f0f0;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Conteúdo do Post */
.blog-post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta informações (data) */
.blog-post-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-post-meta i {
    color: var(--wantel-primary);
}

/* Título do Post */
.blog-post-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: var(--wantel-primary);
}

/* Link "Leia mais" */
.blog-post-link {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wantel-primary);
    margin-top: auto;
}

.blog-post-link i {
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-link i {
    transform: translateX(5px);
}

/* Paginação do Blog */
.blog-section .pagination {
    margin-top: 3rem;
}

.blog-section .page-link {
    color: var(--wantel-primary);
    border: 1px solid #dee2e6;
    padding: 0.625rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-section .page-link:hover {
    background-color: var(--wantel-primary);
    border-color: var(--wantel-primary);
    color: #fff;
    transform: translateY(-2px);
}

.blog-section .page-item.active .page-link {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    border-color: var(--wantel-primary);
    color: #fff;
    box-shadow: 0 0.25rem 0.75rem rgba(80, 180, 50, 0.3);
}

.blog-section .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

/* Responsividade - Blog */
@media (max-width: 991.98px) {
    .blog-post-image {
        height: 200px;
    }

    .blog-post-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .blog-post-image {
        height: 180px;
    }

    .blog-post-content {
        padding: 1.25rem;
    }

    .blog-post-title {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }

    .blog-section .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES (SOBRE)
   ============================================ */

/* Seção Introdução */
.about-intro {
    background-color: #f9faf7;
}

.about-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image img {
    border: 5px solid #fff;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Estatísticas */
.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 1rem rgba(15, 30, 20, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Missão, Visão e Valores */
.about-mvv {
    background-color: #fff;
}

.mvv-card {
    background: #f9faf7;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mvv-card:hover {
    border-color: var(--wantel-primary);
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(80, 180, 50, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mvv-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Seção Diferenciais */
.about-differentials {
    background-color: #f9faf7;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.differential-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1rem rgba(15, 30, 20, 0.08);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(15, 30, 20, 0.15);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.differential-card:hover .differential-icon {
    transform: scale(1.1);
}

.differential-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.differential-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
}

.cta-text {
    font-size: 1.15rem;
    opacity: 0.95;
    position: relative;
}

.about-cta .btn {
    position: relative;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-width: 2px;
}

.about-cta .btn-light:hover {
    background-color: var(--wantel-secondary);
    border-color: var(--wantel-secondary);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.about-cta .btn-outline-light:hover {
    background-color: #fff;
    color: var(--wantel-primary);
    transform: translateY(-2px);
}

/* Responsividade - About Page */
@media (max-width: 991.98px) {
    .about-section-title {
        font-size: 1.85rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .mvv-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 767.98px) {
    .about-section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-stats {
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .mvv-card,
    .differential-card {
        padding: 1.5rem;
    }

    .mvv-icon,
    .differential-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .about-cta .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   STORES PAGE STYLES (LOJAS)
   ============================================ */

/* Introdução das Lojas */
.stores-intro {
    background-color: #fff;
}

.stores-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.stores-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Seção de Listagem */
.stores-list {
    background-color: #f9faf7;
}

/* Card da Loja */
.store-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(15, 30, 20, 0.1);
    transition: all 0.3s ease;
}

.store-card:hover {
    box-shadow: 0 1rem 3rem rgba(15, 30, 20, 0.15);
    transform: translateY(-5px);
}

/* Mapa */
.store-map {
    height: 100%;
    min-height: 400px;
    background: #f0f0f0;
    position: relative;
}

.store-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.store-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    color: #fff;
}

.store-map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.store-map-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

/* Informações da Loja */
.store-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--wantel-primary);
    display: flex;
    align-items: center;
}

.store-title i {
    font-size: 2rem;
}

/* Detalhes da Loja */
.store-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #fff;
}

.store-detail-icon-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.store-detail-content {
    flex: 1;
}

.store-detail-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.store-detail-text {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
}

.store-detail-text a {
    color: var(--wantel-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.store-detail-text a:hover {
    color: #3f8b27;
}

.store-whatsapp-link {
    color: #25d366 !important;
}

.store-whatsapp-link:hover {
    color: #128c7e !important;
}

/* Ações da Loja */
.store-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.store-actions .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.store-actions .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
}

.store-actions .btn-success:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d6b5b 100%);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(37, 211, 102, 0.3);
}

.store-actions .btn-outline-primary {
    border-width: 2px;
}

.store-actions .btn-outline-primary:hover {
    background-color: var(--wantel-primary);
    border-color: var(--wantel-primary);
    transform: translateY(-2px);
}

/* CTA da página de lojas */
.stores-cta {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
}

/* Responsividade - Stores Page */
@media (max-width: 991.98px) {
    .store-info {
        padding: 2rem;
    }

    .store-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .store-title i {
        font-size: 1.75rem;
    }

    .store-map {
        min-height: 350px;
    }

    .store-map-placeholder {
        min-height: 350px;
    }

    .stores-intro-title {
        font-size: 1.75rem;
    }

    .stores-intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .store-card {
        border-radius: 1rem;
    }

    .store-info {
        padding: 1.5rem;
    }

    .store-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .store-title i {
        font-size: 1.5rem;
    }

    .store-detail {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .store-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .store-detail-title {
        font-size: 0.75rem;
    }

    .store-detail-text {
        font-size: 0.95rem;
    }

    .store-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .store-actions .btn {
        width: 100%;
        padding: 0.625rem 1.25rem;
    }

    .store-map {
        min-height: 300px;
    }

    .store-map-placeholder {
        min-height: 300px;
    }

    .store-map-placeholder i {
        font-size: 3rem;
    }

    .store-map-placeholder p {
        font-size: 1rem;
    }

    .stores-intro-title {
        font-size: 1.5rem;
    }

    .stores-intro-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   PLANS PAGES STYLES (PLANOS)
   ============================================ */

/* Introdução Business */
.business-intro {
    background-color: #fff;
}

.business-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.business-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Plan Card Business Variations */
.plan-card.plan-business {
    border: 2px solid #0066cc;
}

.plan-card.plan-business.plan-featured {
    border-color: #0066cc;
    box-shadow: 0 1rem 3rem rgba(0, 102, 204, 0.2);
}

.plan-badge-business {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
}

.plan-icon-business {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
}

.btn-plan-business {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    border-color: #0066cc;
}

.btn-plan-business:hover {
    background: linear-gradient(135deg, #004999 0%, #003366 100%);
    border-color: #004999;
}

/* CTA Bar Business */
.cta-bar-business {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
}

/* Business Features Section */
.business-features {
    background-color: #f9faf7;
}

.business-feature-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.business-feature-card:hover {
    border-color: #0066cc;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 102, 204, 0.15);
}

.business-feature-card .vantagem-icon {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
}

/* Plan Price */
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.plan-price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wantel-primary);
    margin-right: 0.25rem;
}

.plan-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wantel-primary);
    line-height: 1;
}

.plan-price-period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.25rem;
}

.plan-business .plan-price-currency,
.plan-business .plan-price-value {
    color: #0066cc;
}

.plan-speed {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--wantel-primary);
    margin: 0.5rem 0;
}

.plan-business .plan-speed {
    color: #0066cc;
}

/* Plan Icon with Image */
.plan-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Responsividade - Plans Pages */
@media (max-width: 991.98px) {
    .business-intro-title {
        font-size: 1.75rem;
    }

    .business-intro-text {
        font-size: 1rem;
    }

    .plan-price-value {
        font-size: 2rem;
    }

    .plan-speed {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .business-intro-title {
        font-size: 1.5rem;
    }

    .business-intro-text {
        font-size: 0.95rem;
    }

    .plan-price-currency {
        font-size: 1rem;
    }

    .plan-price-value {
        font-size: 1.75rem;
    }

    .plan-price-period {
        font-size: 0.9rem;
    }

    .plan-speed {
        font-size: 1.1rem;
    }
}

/* ============================================
   APPS PAGE STYLES (APLICATIVOS)
   ============================================ */

/* Introdução Apps */
.apps-intro {
    background-color: #fff;
}

.apps-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.apps-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Grid de Apps */
.apps-grid-section {
    background-color: #f9faf7;
}

.apps-category-section {
    margin-bottom: 3rem;
}

.apps-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--wantel-primary);
}

/* App Card Full */
.app-card-full {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 30, 20, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2.5rem rgba(15, 30, 20, 0.15);
}

.app-card-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem; 
    transition: transform 0.3s ease;
}

.app-card-full:hover .app-card-icon-large {
    transform: scale(1.05);
}

.app-card-icon-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.app-card-icon-large i {
    font-size: 3rem;
    color: var(--wantel-primary);
}

.app-card-title-full {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.app-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.app-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wantel-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.app-card-link:hover {
    color: #3f8b27;
    gap: 0.75rem;
}

.app-card-link i {
    transition: transform 0.3s ease;
}

.app-card-link:hover i {
    transform: translateX(3px);
}

/* Apps Benefits Section */
.apps-benefits {
    background-color: #fff;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f9faf7;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 30, 20, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Apps CTA */
.apps-cta {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, #3f8b27 100%);
}

/* Responsividade - Apps Page */
@media (max-width: 991.98px) {
    .apps-intro-title {
        font-size: 1.75rem;
    }

    .apps-intro-text {
        font-size: 1rem;
    }

    .apps-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .app-card-full {
        padding: 1.75rem 1.25rem;
    }

    .app-card-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .app-card-icon-large i {
        font-size: 2.5rem;
    }

    .app-card-title-full {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .apps-intro-title {
        font-size: 1.5rem;
    }

    .apps-intro-text {
        font-size: 0.95rem;
    }

    .apps-category-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .app-card-full {
        padding: 1.5rem 1rem;
    }

    .app-card-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .app-card-icon-large i {
        font-size: 2rem;
    }

    .app-card-title-full {
        font-size: 1.05rem;
    }

    .app-card-description {
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1.05rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER BLOG SECTION
   ============================================ */

.footer-blog-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-blog-card {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.footer-blog-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.footer-blog-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.footer-blog-card:hover .footer-blog-image img {
    transform: scale(1.05);
}

.footer-blog-content {
    padding: 1rem;
}

.footer-blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-blog-date i {
    color: var(--wantel-primary);
}

.footer-blog-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-blog-card:hover .footer-blog-title {
    color: var(--wantel-secondary);
}

/* Responsividade - Footer Blog */
@media (max-width: 767.98px) {
    .footer-blog-section {
        padding: 2rem 0;
    }

    .footer-blog-image {
        height: 150px;
    }

    .footer-blog-title {
        font-size: 0.95rem;
    }

    .footer-blog-date {
        font-size: 0.8rem;
    }
}

/* ========================================
   POST SINGLE PAGE STYLES
   ======================================== */

/* Post Content Section */
.post-content-section {
    background-color: #f8f9fa;
}

/* Post Single Card */
.post-single-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Post Header */
.post-single-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.post-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-single-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Meta Information */
.post-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.post-single-meta .meta-item {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-single-meta .meta-item i {
    color: var(--wantel-primary);
}

/* Share Buttons */
.post-single-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.post-single-share .share-label {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.share-btn-facebook {
    background-color: #3b5998;
}

.share-btn-facebook:hover {
    background-color: #2d4373;
}

.share-btn-whatsapp {
    background-color: #25D366;
}

.share-btn-whatsapp:hover {
    background-color: #1da851;
}

.share-btn-twitter {
    background-color: #1DA1F2;
}

.share-btn-twitter:hover {
    background-color: #0d8bd9;
}

/* Post Content */
.post-single-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-single-content p {
    margin-bottom: 1.5rem;
}

.post-single-content a {
    color: var(--wantel-primary);
    text-decoration: underline;
}

.post-single-content a:hover {
    color: #3d8a28;
}

.post-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-single-content h2,
.post-single-content h3,
.post-single-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.post-single-content h2 {
    font-size: 2rem;
}

.post-single-content h3 {
    font-size: 1.5rem;
}

.post-single-content h4 {
    font-size: 1.25rem;
}

.post-single-content ul,
.post-single-content ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.post-single-content li {
    margin-bottom: 10px;
}

.post-single-content blockquote {
    border-left: 4px solid var(--wantel-primary);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #495057;
}

/* Figure Styles for CKEditor */
.post-single-content figure.image {
    display: inline-block;
    margin: 20px 0;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
}

.post-single-content figure.align-left {
    float: left;
    margin-right: 20px;
    max-width: 50%;
}

.post-single-content figure.align-right {
    float: right;
    margin-left: 20px;
    max-width: 50%;
}

.post-single-content figure.align-center {
    display: block;
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.post-single-content figure.image img {
    margin: 0;
    width: 100%;
    border-radius: 6px;
}

.post-single-content figcaption {
    font-size: 0.85rem;
    font-style: italic;
    color: #6c757d;
    margin-top: 10px;
    text-align: left;
}

/* Related Posts Section */
.related-posts-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--wantel-primary);
    display: inline-block;
}

/* Related Post Card */
.related-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-post-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-meta i {
    color: var(--wantel-primary);
}

.related-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-card:hover .related-post-title {
    color: var(--wantel-primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .post-single-card {
        padding: 30px 25px;
    }

    .post-single-title {
        font-size: 2rem;
    }

    .post-single-subtitle {
        font-size: 1.1rem;
    }

    .post-single-content {
        font-size: 1rem;
    }

    .related-posts-section {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .post-single-card {
        padding: 25px 20px;
    }

    .post-single-title {
        font-size: 1.75rem;
    }

    .post-single-meta {
        flex-direction: column;
        gap: 10px;
    }

    .post-single-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-single-content figure.align-left,
    .post-single-content figure.align-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

    .related-posts-section {
        padding: 25px 20px;
    }

    .related-posts-title {
        font-size: 1.5rem;
    }
}



/* ========================================
   STORES PAGE - NEW GRID LAYOUT WITH LEAFLET
   ======================================== */

/* Mapa Leaflet */
.stores-leaflet-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Marcador customizado Leaflet */
.custom-marker .marker-pin {
    width: 40px;
    height: 40px;
    background: var(--wantel-primary);
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.custom-marker .marker-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 20px;
}

/* Popup do mapa */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.store-popup {
    padding: 10px;
    min-width: 250px;
}

.store-popup-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wantel-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.store-popup p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.store-popup a {
    color: var(--wantel-primary);
}

/* Grid de Lojas */
.stores-grid-section {
    background-color: #f8f9fa;
}

.store-grid-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.store-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Cabeçalho do Card */
.store-grid-header {
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    padding: 20px;
    color: #fff;
}

.store-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-grid-title i {
    font-size: 1.5rem;
}

/* Corpo do Card */
.store-grid-body {
    padding: 20px;
    flex-grow: 1;
}

.store-grid-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.store-grid-item:last-child {
    margin-bottom: 0;
}

.store-grid-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-grid-item strong {
    color: #495057;
}

.store-grid-item a {
    color: var(--wantel-primary);
}

.store-grid-item a:hover {
    text-decoration: underline;
}

/* Footer do Card */
.store-grid-footer {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.store-grid-footer .btn {
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 991px) {
    .stores-leaflet-map {
        height: 400px;
    }

    .store-grid-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .stores-leaflet-map {
        height: 350px;
        border-radius: 8px;
    }

    .store-grid-header {
        padding: 15px;
    }

    .store-grid-title {
        font-size: 1.1rem;
    }

    .store-grid-body {
        padding: 15px;
    }

    .store-grid-item {
        font-size: 0.85rem;
    }
}



/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Intro Section */
.contact-intro {
    background-color: #fff;
}

.contact-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-intro-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Contact Map */
.contact-leaflet-map {
    height: 450px;
    width: 100%;
}

/* Contact Cards Hover Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Contact Icon Circle */
.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hover Colors for Contact Links */
.hover-primary:hover {
    color: var(--wantel-primary) !important;
}

.hover-success:hover {
    color: #25D366 !important;
}

.hover-info:hover {
    color: #0dcaf0 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-intro-title {
        font-size: 2rem;
    }

    .contact-leaflet-map {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-intro-title {
        font-size: 1.75rem;
    }

    .contact-intro-text {
        font-size: 1rem;
    }

    .contact-leaflet-map {
        height: 300px;
    }

    .contact-icon-circle {
        width: 50px;
        height: 50px;
    }
}



/* ==========================================
   CAREERS / TRABALHE CONOSCO PAGE
   ========================================== */

.careers-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.careers-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.careers-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.vacancy-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vacancy-header {
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    padding: 1.5rem;
    color: #fff;
}

.vacancy-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.vacancy-date {
    font-size: 0.9rem;
    opacity: 0.95;
}

.vacancy-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.vacancy-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.vacancy-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 991.98px) {
    .careers-hero-title {
        font-size: 2rem;
    }

    .careers-hero-text {
        font-size: 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .vacancy-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .careers-hero-title {
        font-size: 1.75rem;
    }

    .benefit-card {
        margin-bottom: 1rem;
    }
}

/* ==========================================
   APP DETAIL PAGE (aplicativo.php)
   ========================================== */

.app-detail-icon {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.app-detail-icon:hover {
    transform: scale(1.05);
}

.app-detail-icon-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.app-detail-icon-placeholder i {
    font-size: 5rem;
    color: #fff;
}

.app-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.app-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.app-detail-description p {
    margin-bottom: 1rem;
}

/* Guia Passo a Passo */
.app-guide-title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.guide-step-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.guide-step-badge {
    background: var(--wantel-secondary);
    color: #333;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    display: inline-block;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.guide-step-image {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.guide-step-image img {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
}

.guide-step-text {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--wantel-primary);
    font-weight: 500;
    line-height: 1.6;
}

/* Outros Aplicativos */
.other-app-card {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 1rem;
}

.other-app-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.other-app-icon {
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.other-app-card:hover .other-app-icon {
    transform: scale(1.1);
}

.other-app-title {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .app-detail-title {
        font-size: 1.5rem;
    }

    .app-guide-title {
        font-size: 1.5rem;
    }

    .guide-step-card {
        min-height: 350px;
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .app-detail-icon {
        max-width: 150px;
    }

    .app-detail-icon-placeholder {
        width: 150px;
        height: 150px;
    }

    .app-detail-icon-placeholder i {
        font-size: 4rem;
    }

    .app-detail-title {
        font-size: 1.35rem;
    }

    .app-guide-title {
        font-size: 1.25rem;
    }

    .app-guide-title .badge {
        font-size: 1.25rem !important;
        display: block;
        margin: 0.5rem auto;
    }

    .guide-step-card {
        min-height: 300px;
    }

    .guide-step-image img {
        max-height: 200px;
    }
}


/* ========================================
   SUPPORT / SUPORTE TÉCNICO PAGE
   ======================================== */

/* Support Intro */
.support-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.support-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Support Channels */
.support-channel-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.support-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.support-channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
}

.support-channel-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.support-channel-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.support-channel-time {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Common Issues */
.issue-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.issue-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.issue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.issue-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.issue-steps {
    color: #666;
    font-size: 0.95rem;
}

.issue-steps ol {
    padding-left: 1.25rem;
}

.issue-steps li {
    margin-bottom: 0.5rem;
}

/* Network Status */
.status-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.status-header {
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    padding: 1.5rem;
    text-align: center;
}

.status-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.status-body {
    padding: 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border-bottom: 1px solid #eee;
}

.status-item:last-child {
    border-bottom: none;
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    opacity: 0.3;
}

.status-online {
    background: #28a745;
}

.status-online::before {
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-warning {
    background: #ffc107;
}

.status-warning::before {
    background: #ffc107;
    animation: pulse 2s infinite;
}

.status-offline {
    background: #dc3545;
}

.status-offline::before {
    background: #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.status-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.status-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    text-align: center;
}

/* Quick FAQ Accordion */
.quick-faq .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.quick-faq .accordion-button {
    font-weight: 600;
    color: #333;
    background: #fff;
    font-size: 1.05rem;
}

.quick-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--wantel-primary), #3d8a28);
    color: #fff;
}

.quick-faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--wantel-primary);
}

.quick-faq .accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991.98px) {
    .support-intro-title {
        font-size: 2rem;
    }

    .support-channel-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .issue-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .support-intro-title {
        font-size: 1.75rem;
    }

    .support-channel-card,
    .issue-card {
        padding: 1.5rem;
    }

    .status-title {
        font-size: 1.25rem;
    }

    .status-body {
        padding: 1.5rem;
    }

    .status-item {
        padding: 1rem;
    }
}

/* ============================================
   SWIPER PLANOS - FIX OVERFLOW
   ============================================ */

/* Container do Swiper de Planos */
.swiperPlanos {
    overflow: visible !important;
    padding: 1rem 0 0rem 0 !important;
}

.swiperPlanos .swiper-wrapper {
    padding-bottom: 0rem;
}

.swiperPlanos .swiper-slide {
    height: auto;
}

/* Ajustar navegação para não sobrepor */
.swiperPlanos .swiper-button-next,
.swiperPlanos .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.swiperPlanos .swiper-button-next::after,
.swiperPlanos .swiper-button-prev::after {
    font-size: 20px;
    color: var(--wantel-primary);
    font-weight: bold;
}

.swiperPlanos .swiper-button-next:hover,
.swiperPlanos .swiper-button-prev:hover {
    background: var(--wantel-primary);
}

.swiperPlanos .swiper-button-next:hover::after,
.swiperPlanos .swiper-button-prev:hover::after {
    color: #fff;
}

/* Pagination ajustada */
.swiperPlanos .swiper-pagination {
    bottom: 0 !important;
    position: relative;
    margin-top: 1.5rem;
}

.swiperPlanos .swiper-pagination-bullet {
    background: var(--wantel-primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiperPlanos .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* Responsivo */
@media (max-width: 767.98px) {
    .swiperPlanos {
        padding: 1rem 0 2rem 0 !important;
    }

    .swiperPlanos .swiper-button-next,
    .swiperPlanos .swiper-button-prev {
        display: none;
    }
}

/* ============================================
   PÁGINA GENÉRICA (pagina.php)
   ============================================ */

/* Header da Página */
.page-header-wantel {
    background: linear-gradient(135deg, var(--wantel-primary) 0%, var(--wantel-secondary) 100%);
    padding: 3rem 0 2rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.page-header-title {
    font-family: 'Pill Gothic 600mg Semibd', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-breadcrumb {
    margin-top: 1rem;
}

.page-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
}

.page-breadcrumb .breadcrumb-item {
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    font-size: 0.95rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--wantel-dark);
}

.page-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Card de Conteúdo */
.page-content-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-content-body {
    padding: 3rem;
    font-family: 'Pill Gothic 600mg Light', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* Estilos do Conteúdo */
.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4,
.page-content-body h5,
.page-content-body h6 {
    font-family: 'Pill Gothic 600mg Semibd', sans-serif;
    color: var(--wantel-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-body h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--wantel-primary);
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
}

.page-content-body h3 {
    font-size: 1.5rem;
    color: var(--wantel-primary);
}

.page-content-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.page-content-body a {
    color: var(--wantel-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.page-content-body a:hover {
    color: var(--wantel-secondary);
    border-bottom-color: var(--wantel-secondary);
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content-body li {
    margin-bottom: 0.75rem;
}

.page-content-body strong,
.page-content-body b {
    font-family: 'Pill Gothic 600mg Semibd', sans-serif;
    color: var(--wantel-dark);
}

.page-content-body blockquote {
    border-left: 4px solid var(--wantel-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Imagens no Conteúdo */
.page-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-content-body figure {
    margin: 2rem 0;
}

.page-content-body figure.image {
    display: inline-block;
    margin: 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-content-body figure.align-left {
    float: left;
    margin: 0 2rem 1rem 0;
    max-width: 50%;
}

.page-content-body figure.align-right {
    float: right;
    margin: 0 0 1rem 2rem;
    max-width: 50%;
}

.page-content-body figure.align-center {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    text-align: center;
}

.page-content-body figure.align-center img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.page-content-body figure.image img {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-content-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
    padding: 0.75rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Tabelas */
.page-content-body table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.page-content-body table th {
    background: var(--wantel-primary);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-family: 'Pill Gothic 600mg Semibd', sans-serif;
}

.page-content-body table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.page-content-body table tr:last-child td {
    border-bottom: none;
}

.page-content-body table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .page-header-title {
        font-size: 2rem;
    }

    .page-content-body {
        padding: 2rem;
        font-size: 1rem;
    }

    .page-content-body h2 {
        font-size: 1.75rem;
    }

    .page-content-body figure.align-left,
    .page-content-body figure.align-right {
        float: none;
        margin: 1.5rem auto;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .page-header-wantel {
        padding: 2rem 0 1.5rem 0;
    }

    .page-header-title {
        font-size: 1.75rem;
    }

    .page-breadcrumb .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .page-content-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .page-content-body h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .page-content-body h3 {
        font-size: 1.25rem;
    }

    .page-content-body p {
        text-align: left;
    }
}
