:root {
    --green-main: #00B14F;
    --green-dark: #046338;
    --green-soft: #E5F8EE;
    --yellow-main: #FFC857;
    --text-main: #1D2B24;
    --text-soft: #64706A;
    --bg-light: #F5FBF8;
    --white: #FFFFFF;
}

/* RESET SIMPLES */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
    display: block;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ÍCONES MATERIAL DESIGN */
.mdi {
    vertical-align: middle;
    margin-right: 4px;
    font-size: 1.1em;
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* TOPO */

.topbar {
    background: var(--green-dark);
    color: var(--white);
    font-size: 0.82rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-link {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
}

/* HEADER */

.site-header {
    background: var(--green-main);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 40;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    margin: 0;
    padding: 0;
    display: block;
}

.modern-header .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 38px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 208px;
    height: 68px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .logo-img {
        width: 156px;
        height: 51px;
    }
    .modern-header .header-bar {
        justify-content: center;
    }
    .logo-area {
        margin: 0 auto;
    }
    .nav-toggle {
        position: absolute;
        right: 16px;
    }
}

.logo-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--white);
    font-weight: 600;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0; /* remove large uniform gap */
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-desktop a { 
    position: relative; 
    color: #ffffffd8; 
    transition: color .2s ease; 
    margin-right: 28px; /* manual spacing for textual links */
}

/* Garantir contraste do botão Área do Assinante dentro da nav */
.nav-desktop a.btn-area { 
    color: #046338; 
}

.nav-desktop a.btn,
.nav-desktop a.btn-area,
.nav-desktop a.btn-cta { margin-right: 0; } /* reset margin for buttons */

.nav-desktop a.btn-area { margin-left: 8px; margin-right: 12px; }
.nav-desktop a.btn-cta { margin-left: 0; }

.nav-desktop a:hover { 
    color:#fff; 
}

.nav-desktop a.active { 
    color:#fff; 
}

.nav-desktop a.active::after {
    content:""; 
    position:absolute; 
    left:0; 
    bottom:-8px; 
    width:100%; 
    height:3px; 
    background:#fff; 
    border-radius:4px; 
    opacity:.85;
}

.central-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.central-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.central-link::before {
    content: '\F0DA6';
    font-family: 'Material Design Icons';
    font-size: 18px;
}

.nav-toggle {
    border: none;
    background: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

.nav-toggle {
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-dark);
}

/* NAV MOBILE */

.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 60;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile .panel-inner { position:absolute; top:0; right:0; width:min(330px,80%); height:100%; background:var(--white); display:flex; flex-direction:column; padding:16px 18px 24px; box-shadow:-8px 0 24px rgba(0,0,0,0.2); }
.panel-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.panel-close { background:none; border:none; font-size:1.6rem; cursor:pointer; color:var(--green-dark); }
.panel-links { display:flex; flex-direction:column; gap:14px; font-size:0.95rem; margin:10px 0 20px; }
.panel-links a { position:relative; }
.panel-links a.active { color: var(--green-dark); font-weight:600; }
.central-link-mobile {
    background: #e8f5ed;
    color: var(--green-dark) !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.central-link-mobile::before {
    content: '\F0DA6';
    font-family: 'Material Design Icons';
    font-size: 20px;
    color: var(--green-main);
}
.panel-extra { font-size:0.78rem; color: var(--text-soft); margin-top:auto; display:flex; flex-direction:column; gap:6px; }
.panel-extra a { color: var(--green-dark); font-weight:600; }
.panel-extra .link-central { display:inline-block; margin-top:6px; font-size:0.75rem; text-transform:uppercase; letter-spacing:.1em; color: var(--green-main); }

.btn-cta {
    background: #FF6B35;
    color: #fff;
    font-weight:700;
    letter-spacing:.5px;
    padding: 12px 30px;
    font-size:0.78rem;
    box-shadow: 0 8px 20px rgba(255,107,53,0.35);
    border-radius: 999px;
}
.btn-cta:hover { 
    background: #E85A2A;
    box-shadow:0 10px 26px rgba(255,107,53,0.5); 
    transform:translateY(-1px); 
}
.btn-cta:active { transform:translateY(0); }

.btn-area {
    background: #fff;
    color: #046338; /* verde escuro para maior contraste */
    font-weight: 700;
    letter-spacing: .5px;
    padding: 12px 30px;
    font-size: 0.82rem; /* ligeiramente maior */
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-radius: 999px;
    border: 2px solid var(--green-main);
}

.btn-area:hover {
    background: var(--green-main);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,177,79,0.35);
    transform: translateY(-1px);
}

.btn-area:active {
    transform: translateY(0);
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
    background: var(--green-main);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0,177,79,0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0,177,79,0.45);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green-main);
    color: var(--green-dark);
}

.btn-outline:hover {
    background: #e9f8f0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.btn-full {
    width: 100%;
}

/* HERO */

.hero {
    padding: 0 0 40px;
    background: linear-gradient(135deg, #f4fff8, #e4f8ed);
    position: relative;
    overflow-x: hidden;
}

.hero-grid {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 1.9rem;
    margin: 10px 0;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.hero-label {
    font-size: 0.8rem;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f5e9;
    color: var(--green-dark);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #1d2e25;
    margin-top: 4px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid #e2eee6;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    font-weight: 500;
    color: #1d2e25;
    line-height: 1;
}
.hero-tags span i {
    color: #009b44;
    font-size: 1rem;
    line-height: 1;
}
.hero-tags span:hover {
    border-color: #c8e5d6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.hero-media img {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
}

/* SLIDER HERO */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.hero-slide.active {
    position: relative;
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slide-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px 18px 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 85%);
    color: #fff;
    font-size: 0.8rem;
}
.hero-slide-overlay h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}
.hero-slide-overlay p {
    margin: 0 0 8px;
    font-size: 0.75rem;
    opacity: .9;
}
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.hero-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
}
.hero-slider-dots button.active {
    background: var(--green-main);
}

/* Navegação do slider */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 8px;
}
.hero-slider-nav button {
    pointer-events: all;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.hero-slider-nav button:hover,
.hero-slider-nav button:focus {
    background: rgba(0,0,0,0.55);
    outline: 2px solid var(--green-main);
}
.hero-slider-nav button:focus-visible {
    outline: 2px solid var(--green-main);
}

/* TOP FULL-WIDTH SLIDER */
.top-slider-section { position:relative; width:100%; background:#0d241a; color:#fff; overflow:hidden; }
.top-slider-section::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,#0d241a 0%, #12442f 60%, #0d241a 100%); opacity:.85; }
.top-slider { position:relative; width:100%; height:clamp(260px, 48vh, 520px); overflow:hidden; }
.top-slide { position:absolute; inset:0; opacity:0; transition:opacity .6s ease; display:flex; align-items:center; justify-content:center; }
.top-slide.active { position:relative; opacity:1; }
.top-slide-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.75); }
.top-slide-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; gap:14px; padding:0 32px; max-width:1120px; margin:0 auto; z-index:2; }
.top-slide-overlay h3 { margin:0; font-size:clamp(1.4rem, 3.4vw, 2.4rem); line-height:1.15; }
.top-slide-overlay p { margin:0; font-size:clamp(.85rem, 1.3vw, 1.05rem); max-width:640px; opacity:.95; }
.top-slider-nav { position:absolute; top:50%; left:0; width:100%; display:flex; justify-content:space-between; transform:translateY(-50%); pointer-events:none; padding:0 12px; z-index:4; }
.top-slider-nav button { pointer-events:all; background:rgba(0,0,0,.38); color:#fff; border:none; width:44px; height:44px; border-radius:50%; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s ease; }
.top-slider-nav button:hover, .top-slider-nav button:focus { background:rgba(0,0,0,.55); outline:2px solid var(--green-main); }
.top-slider-dots { position:absolute; left:50%; bottom:14px; transform:translateX(-50%); display:flex; gap:8px; z-index:4; }
.top-slider-dots button { width:12px; height:12px; border-radius:50%; border:none; background:rgba(255,255,255,.5); cursor:pointer; padding:0; }
.top-slider-dots button.active { background:var(--green-main); }
.top-slider-gradient { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 80%); z-index:1; }
.top-slide-missing { background:#222; display:flex; align-items:center; justify-content:center; }
.top-slide-missing-msg { color:#fff; font-size:.75rem; padding:12px 16px; background:#d93025; border-radius:6px; max-width:480px; text-align:center; }
@media (max-width: 600px){ .top-slide-missing-msg { font-size:.65rem; padding:10px 12px; } }

/* PROMO SLIDER (home abaixo do hero) */
.promo-slider-section { 
    position: relative; 
    padding: 0; 
    margin: 0; 
    width: 100%; 
    height: auto;
    overflow: hidden; 
    display: block; 
    line-height: 0;
    font-size: 0;
}
.promo-slider { 
    position: relative; 
    width: 100%; 
    max-width: none; 
    margin: 0; 
    padding: 0;
    height: auto;
    aspect-ratio: 1960 / 600;
    overflow: hidden; 
    border-radius: 0; 
    box-shadow: none; 
    background: #fff; 
    display: block;
    line-height: 0;
    font-size: 0;
}
/* Estado base dos slides: todos absolutos para crossfade sem fundo aparecendo */
.promo-slide { 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 1.4s ease-in-out; 
    will-change: opacity;
    display: block;
    line-height: 0;
}
.promo-slide.active { 
    opacity: 1; 
    z-index: 2; 
}
.promo-slide.leaving { 
    opacity: 0; 
    z-index: 1; 
    transition: opacity 1.4s ease-in-out; 
}
.promo-slide img { 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}
/* Removido zoom agressivo para aspecto mais corporativo */

/* Estado de carregamento: evita bloco preto quando imagens grandes atrasam */
/* Overlay de carregamento profissional */
.promo-slider.loading { background:#f1f4f3; }
.promo-slider .slider-loading-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#f0f6f3,#e8f3ef); z-index:10; font-size:.85rem; color:#2e5c46; letter-spacing:.05em; flex-direction:column; gap:12px; }
.spinner { width:40px; height:40px; border:4px solid #c9ddd4; border-top-color:#009b44; border-radius:50%; animation:spin 0.9s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.promo-slider:not(.loading) .slider-loading-overlay { display:none; }
.promo-slide-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; gap:14px; padding:0 42px; color:#fff; z-index:2; }
.promo-slide-overlay h3 { margin:0; font-size:clamp(1.3rem,3vw,2.1rem); line-height:1.15; }
.promo-slide-overlay p { margin:0; font-size:clamp(.8rem,1.2vw,1rem); max-width:620px; opacity:.95; }
.promo-slider-nav { position:absolute; top:50%; left:0; width:100%; display:flex; justify-content:space-between; transform:translateY(-50%); pointer-events:none; padding:0 14px; z-index:4; }
.promo-slider-nav button { pointer-events:all; background:rgba(0,0,0,.4); color:#fff; border:none; width:42px; height:42px; border-radius:50%; font-size:1.3rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s ease; }
.promo-slider-nav button:hover,.promo-slider-nav button:focus { background:rgba(0,0,0,.6); outline:2px solid var(--green-main); }
.promo-slider-dots { position:absolute; left:50%; bottom:14px; transform:translateX(-50%); display:flex; gap:8px; z-index:5; }
.promo-slider-dots button { width:12px; height:12px; border-radius:50%; border:none; background:rgba(255,255,255,.5); cursor:pointer; padding:0; }
.promo-slider-dots button.active { background:var(--green-main); }
@media (max-width: 767px){ 
    .promo-slider-section {
        width: 100%;
        height: auto;
        background: #f5f5f5;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }
    .promo-slider { 
        width: 100%;
        height: auto;
        aspect-ratio: 1960 / 600;
        position: relative;
        background: #f5f5f5;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }
    .promo-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.4s ease-in-out;
    }
    .promo-slide.active {
        opacity: 1;
        z-index: 2;
    }
    .promo-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    .promo-slide-overlay { 
        display: none;
    } 
    .promo-slider-nav {
        position: absolute;
        bottom: 20px;
        padding: 0 10px;
    }
    .promo-slider-nav button {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .promo-slider-dots {
        position: absolute;
        bottom: 5px;
    }
}

@media (max-width: 767px) {
    .top-slide-overlay { padding:0 20px; }
    .top-slide-overlay h3 { font-size:1.6rem; }
}

/* SEÇÕES BASE */

.section {
    padding: 36px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 20px;
}

.section-header.center {
    text-align: center;
}

.section-header.left {
    text-align: left;
}

.section-header h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.section-header p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* PLANOS */

.plans-grid {
    display: grid;
    gap: 18px;
}

.plan-card {
    background: var(--white);
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid #e3efe7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,177,79,0.1), transparent);
    transition: left 0.5s ease;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,177,79,0.2);
    border-color: var(--green-main);
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card:active {
    transform: translateY(-4px) scale(1.01);
}

.plan-card h3 {
    margin: 0 0 4px;
}

.plan-price {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 1.3rem;
    font-weight: 700;
}

.promo-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-main);
}

.promo-info {
    display: block;
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 400;
    margin-top: 4px;
}

.regular-price {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin: 8px 0 16px;
    font-weight: 500;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.plan-card ul li {
    margin-bottom: 4px;
}

.plan-card ul li::before {
    content: "•";
    margin-right: 6px;
    color: var(--green-main);
}

.plan-featured {
    border: 1px solid var(--green-main);
    box-shadow: 0 14px 32px rgba(0,177,79,0.15);
    position: relative;
}

.plan-ribbon {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--yellow-main);
    color: #4b3210;
}

.plans-link-more {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
}

.plans-link-more a {
    color: var(--green-dark);
}

/* BENEFÍCIOS */

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #e4f1ea;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 38px rgba(0,155,68,0.12);
    border-color: #c8e5d6;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f7ee, #d4eee0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 28px;
    color: #009b44;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, #009b44, #00b350);
    transform: rotate(8deg) scale(1.1);
}

.benefit-item:hover .benefit-icon i {
    color: #ffffff;
}

.benefit-item h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #1d2e25;
    font-weight: 600;
}

.benefit-item p {
    color: #4a5a52;
    line-height: 1.6;
}

/* COBERTURA */

.coverage-grid {

    .coverage-regions {
        font-size: 0.85rem;
        color: var(--green-dark);
        font-weight: 500;
        margin-top: 8px;
    }
    display: grid;
    gap: 20px;
    align-items: center;
}

.coverage-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}

.coverage-form input {
    border-radius: 999px;
    border: 1px solid #cfe6da;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.coverage-note {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* Resultado da consulta CEP */
.coverage-result {
    margin-top: 16px;
}

.coverage-success,
.coverage-error,
.coverage-warning {
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.coverage-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #81c784;
}

.coverage-success i {
    font-size: 24px;
    margin-top: 2px;
}

.coverage-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.coverage-error i {
    font-size: 24px;
    margin-top: 2px;
}

.coverage-warning {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffb74d;
    flex-direction: column;
    gap: 8px;
}

.coverage-warning i {
    font-size: 32px;
}

.coverage-warning strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

.coverage-warning p {
    margin: 8px 0;
    color: #5d4037;
    line-height: 1.5;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e3efe7;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--green-dark);
    line-height: 1.3;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-soft);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: var(--text-main);
}

.modal-body {
    padding: 24px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.modal-body input,
.modal-body select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cfe6da;
    padding: 12px 14px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-body input:focus,
.modal-body select:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(0, 177, 79, 0.1);
}

.modal-body select {
    cursor: pointer;
    background-color: var(--white);
}

@media (max-width: 767px) {
    .modal-content {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
}

.coverage-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.coverage-media img {
    display: block;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-10%, -10%);
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* SOBRE */

.about-grid {
    display: grid;
    gap: 22px;
    align-items: center;
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.link-more {
    font-size: 0.9rem;
    color: var(--green-dark);
    font-weight: 600;
}

.about-media img {
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* DEPOIMENTOS CAROUSEL */

.testimonials-section {
    background: var(--bg-light);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #e2eee6;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.testimonial-icon {
    font-size: 48px;
    color: var(--green-main);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 20px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--green-main);
    color: var(--green-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,177,79,0.15);
}

.testimonial-nav:hover {
    background: var(--green-main);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,177,79,0.3);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d0e4d9;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--green-main);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: var(--green-main);
    opacity: 0.7;
}

@media (max-width: 767px) {
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* PÁGINAS INTERNAS */

.page-hero {
    padding: 30px 0 20px;
    background: #f2faf6;
}

.page-hero-inner {
    display: grid;
    gap: 20px;
    align-items: center;
}

.page-hero-inner h1 {
    margin-bottom: 6px;
    font-size: 1.7rem;
}

.page-hero-inner p {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.page-hero-media img {
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* CONTATO */

.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    gap: 28px;
    align-items: flex-start;
    grid-template-columns: 1fr;
}

.contact-form-card,
.contact-info-card,
.contact-map-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 20px;
    border: 1px solid #e3efe7;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-form-card h2,
.contact-info-card h2,
.contact-map-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--green-dark);
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.contact-form-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cfe6da;
    padding: 12px 14px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(0,177,79,0.1);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card select {
    cursor: pointer;
    background-color: var(--white);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 24px;
    color: var(--green-main);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.contact-item a {
    color: var(--green-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* FOOTER */

.site-footer {
    background: var(--green-dark);
    color: #e4f5ed;
    padding: 32px 0 14px;
    font-size: 0.82rem;
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-size: 0.92rem;
    color: #ffffff;
    letter-spacing: .5px;
    font-weight: 600;
}

/* Listas do footer */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.3;
}
.footer-list a {
    color: #ffffffcc;
    transition: color .2s ease;
}
.footer-list a:hover,
.footer-list a:focus {
    color: var(--yellow-main);
}

.footer-tagline { margin: 0 0 14px; font-size: 0.75rem; line-height: 1.4; max-width: 260px; }

.footer-social-list li i { color: var(--white); }

.footer-dev a { color: #ffffffcc; }
.footer-dev a:hover { color: var(--yellow-main); }

.site-footer a { text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 32px;
    padding-top: 12px;
    text-align: center;
    font-size: 0.74rem;
    color: #cfe6da;
}
.footer-bottom a { color: #ffffffb3; }
.footer-bottom a:hover { color: var(--yellow-main); }

/* RESPONSIVO */

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .nav-toggle,
    .nav-mobile {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: flex-start;
    }
    .footer-brand { grid-column: span 1; }

    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .coverage-grid,
    .about-grid,
    .page-hero-inner,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-inner {
        padding-inline: 0;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* EFEITOS FLUTUANTES DO HERO - Bolhas coloridas animadas */

/* HERO MEDIA - Com efeitos entre a imagem */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    z-index: 3;
    overflow: visible;
}

.hero-effect-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.hero-img {
    position: relative;
    max-width: 440px;
    width: 100%;
    border-radius: 24px;
    animation: fadeInUp 0.8s ease-out;
    z-index: 3;
}

/* BOLHA VERDE - Atrás da imagem */
.floating-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00e87a 0%, #00d86f 30%, #00b14f 60%, transparent 85%);
    filter: blur(60px);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    opacity: 0.75;
    animation: float1 8s infinite ease-in-out, pulse1 4s infinite ease-in-out;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 0;
}

/* BOLHA AMARELA - Atrás da imagem */
.floating-bg-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffdf70 0%, #ffd45e 30%, #ffb736 60%, transparent 85%);
    filter: blur(55px);
    border-radius: 50%;
    bottom: 5%;
    right: 5%;
    opacity: 0.7;
    animation: float2 10s infinite ease-in-out, pulse2 5s infinite ease-in-out 1s;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 0;
}

/* LINHA DE FIBRA ÓPTICA - Atravessa a imagem */
.wave-line {
    position: absolute;
    width: 150%;
    height: 100px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    border-radius: 100px;
    filter: blur(4px);
    top: 45%;
    left: -25%;
    opacity: 0.6;
    animation: slideWave 7s infinite linear;
    will-change: transform;
    pointer-events: none;
    z-index: 2;
}

/* ANIMAÇÕES - Movimento flutuante verde */
@keyframes float1 {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1); 
    }
    25% { 
        transform: translate(50px, 60px) scale(1.12); 
    }
    50% { 
        transform: translate(-40px, 80px) scale(1.18); 
    }
    75% { 
        transform: translate(30px, -30px) scale(1.08); 
    }
}

/* ANIMAÇÕES - Movimento flutuante amarelo */
@keyframes float2 {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1); 
    }
    25% { 
        transform: translate(-60px, -50px) scale(1.15); 
    }
    50% { 
        transform: translate(45px, -70px) scale(1.08); 
    }
    75% { 
        transform: translate(-30px, 35px) scale(1.12); 
    }
}



/* ANIMAÇÃO - Pulso verde */
@keyframes pulse1 {
    0%, 100% { 
        opacity: 0.7;
        filter: blur(60px) brightness(1);
    }
    50% { 
        opacity: 0.85;
        filter: blur(70px) brightness(1.15);
    }
}

/* ANIMAÇÃO - Pulso amarelo */
@keyframes pulse2 {
    0%, 100% { 
        opacity: 0.65;
        filter: blur(55px) brightness(1);
    }
    50% { 
        opacity: 0.8;
        filter: blur(65px) brightness(1.2);
    }
}

/* ANIMAÇÃO - Onda deslizante */
@keyframes slideWave {
    0% { 
        transform: translateX(-60%) skewX(-10deg);
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% { 
        transform: translateX(60%) skewX(10deg);
        opacity: 0.4;
    }
}

/* ANIMAÇÃO - Fade in da imagem */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* RESPONSIVO - Ajustes para telas maiores */
@media (min-width: 768px) {
    .floating-bg {
        width: 450px;
        height: 450px;
    }
    
    .floating-bg-2 {
        width: 400px;
        height: 400px;
    }
    
    .hero-media {
        min-height: 500px;
    }
}

@media (min-width: 1024px) {
    .floating-bg {
        width: 500px;
        height: 500px;
    }
    
    .floating-bg-2 {
        width: 450px;
        height: 450px;
    }
}
