/* ═══ NAVBAR ═══════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-card);
    padding: 0 48px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

    .navbar-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-sidebar);
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 8px;
        transition: background .12s, color .12s;
    }

        .navbar-links a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ═══ BOTÕES ════════════════════════════════════════════════ */
.btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .15s, transform .1s, box-shadow .15s;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(36,81,200,.25);
        color: #fff;
    }

    .btn-primary:active {
        transform: scale(.98);
    }

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
}

    .btn-ghost:hover {
        background: var(--primary-light);
        border-color: var(--primary-mid);
        color: var(--primary);
    }

    .btn-ghost:active {
        transform: scale(.98);
    }

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

    .btn-white:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

.btn-lg {
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 14px;
}

/* ═══ HERO ══════════════════════════════════════════════════ */
.hero {
    padding: 80px 48px 72px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

    .hero-title span {
        color: var(--primary);
    }

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding-bottom: 32px;
}

.hero-illustration {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--primary-light);
}

    .hero-illustration svg {
        width: 100%;
        height: auto;
        display: block;
    }

.hero-badge-float {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #D4F0E4;
    border-radius: 40px;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    white-space: nowrap;
}

.hero-badge-ring {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-badge-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #1D7A5F;
}

.hero-badge-value {
    font-size: 15px;
    font-weight: 800;
    color: #0F4A38;
    letter-spacing: -.3px;
}

/* ═══ SEÇÕES GERAIS ═════════════════════════════════════════ */
.section {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}

.section-title-lg {
    font-size: 40px;
    max-width: 600px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 48px;
}

/* Variante de seção com fundo e sem padding vertical interno */
.section-bg {
    background: var(--bg-section);
    padding: 80px 0;
}

    .section-bg > .section {
        padding-top: 0;
        padding-bottom: 0;
    }

/* ═══ FEATURES — BENTO GRID ════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bc-a {
    grid-column: 1 / 7;
    grid-row: 1;
}

.bc-b {
    grid-column: 7 / 11;
    grid-row: 1;
}

.bc-c {
    grid-column: 1 / 5;
    grid-row: 2;
}

.bc-d {
    grid-column: 5 / 11;
    grid-row: 2;
}

.bento-card {
    background: #fff;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(36,81,200,.05);
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s;
}

    .bento-card:hover {
        box-shadow: 0 6px 20px rgba(36,81,200,.10);
    }

.bc-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

    .bc-icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.bc-icon-blue {
    background: var(--primary-light);
}

    .bc-icon-blue svg {
        stroke: var(--primary);
    }

.bc-icon-green {
    background: #D0EDE5;
}

    .bc-icon-green svg {
        stroke: #1D7A5F;
    }

.bc-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.bc-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.bc-screens {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.bc-screen {
    border-radius: 10px;
    overflow: hidden;
    background: #1A4A5C;
    aspect-ratio: 16 / 10;
}

.bc-b.bento-card {
    background: #1D7A5F;
    border-color: #1D7A5F;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bc-b .bc-icon-green {
    background: rgba(255,255,255,.15);
}

    .bc-b .bc-icon-green svg {
        stroke: #fff;
    }

.bc-b .bc-title {
    color: #fff;
    font-size: 20px;
}

.bc-b .bc-desc {
    color: rgba(255,255,255,.7);
}

.bc-stat {
    margin-top: 24px;
}

.bc-stat-num {
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
}

.bc-stat-unit {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255,255,255,.8);
}

.bc-stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.5);
    margin-top: 10px;
}

.bc-c.bento-card {
    border-left: 3px solid #1D7A5F;
}

.bc-d-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bc-photo {
    width: 140px;
    min-width: 140px;
    aspect-ratio: 1 / 1.1;
    border-radius: 12px;
    background: var(--primary-light);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bc-photo svg {
        width: 48px;
        height: 48px;
        stroke: var(--primary-mid);
        stroke-width: 1.5;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.bc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 14px;
    transition: gap .15s;
}

    .bc-link:hover {
        gap: 10px;
    }

/* ═══ FAQ ═══════════════════════════════════════════════════ */
.faq-section {
    background: var(--bg-section);
    padding: 80px 48px;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

    .faq-inner .section-title {
        margin-bottom: 8px;
    }

    .faq-inner .section-subtitle {
        margin: 0 auto 48px;
    }

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background .12s;
}

    .faq-question:hover {
        background: var(--primary-light);
    }

    .faq-question svg {
        width: 18px;
        height: 18px;
        stroke: var(--primary);
        stroke-width: 2.5;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
        transition: transform .2s;
    }

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 24px 20px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ═══ CTA FINAL ═════════════════════════════════════════════ */
.cta-section {
    background: var(--bg-section);
    padding: 48px 48px 80px;
}

.cta-card {
    background: var(--primary);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

    .cta-card h2 {
        font-size: 40px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -.8px;
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .cta-card p {
        font-size: 15px;
        color: rgba(255,255,255,.7);
        margin-bottom: 36px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
    }

/* ═══ FOOTER ════════════════════════════════════════════════ */
.footer {
    background: #080F22;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-mid);
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .footer-links a {
        font-size: 13px;
        color: rgba(255,255,255,.4);
        text-decoration: none;
        transition: color .12s;
    }

        .footer-links a:hover {
            color: rgba(255,255,255,.8);
        }

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.25);
}

/* ═══ RESPONSIVIDADE ════════════════════════════════════════ */
@media (max-width: 900px) {
    .navbar {
        padding: 0 24px;
    }

    .navbar-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px 56px;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .section {
        padding: 56px 24px;
    }

    .faq-section {
        padding: 56px 24px;
    }

    .cta-section {
        padding: 24px 24px 56px;
    }

    .cta-card {
        padding: 40px 28px;
    }

        .cta-card h2 {
            font-size: 28px;
        }

    .footer {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bc-a, .bc-b, .bc-c, .bc-d {
        grid-column: auto;
        grid-row: auto;
    }

        .bc-b.bento-card {
            min-height: 260px;
        }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn-lg {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .navbar-btn-secundario {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bc-d-inner {
        flex-direction: column;
    }

    .bc-photo {
        width: 100%;
        min-width: unset;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 380px) {
    .navbar {
        padding: 0 16px;
    }

    .hero {
        padding: 36px 16px;
    }

    .section {
        padding: 44px 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .faq-section, .cta-section {
        padding: 44px 16px;
    }

    .cta-card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .footer {
        padding: 28px 16px;
    }
}
