.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--azul-escuro);
}

.logo img {
    height: 55px;
    width: auto;
}

/* MENU */

.navbar {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    color: var(--azul-escuro);
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.menu > li > a:hover {
    color: var(--azul);
}

/* SUBMENU */

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    overflow: hidden;
}

.menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.submenu li a {
    display: block;
    padding: 14px 20px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: #f8fafc;
    color: var(--azul);
}

/* BOTÕES */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    height: 48px;
    padding: 0 24px;
    border: 2px solid var(--azul);
    border-radius: 999px;
    color: var(--azul);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn-login:hover {
    background: var(--azul);
    color: #fff;
}

.btn-inscricao {
    height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--azul);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn-inscricao:hover {
    background: var(--azul-escuro);
}

/* MENU MOBILE */

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--azul-escuro);
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 320px;
        height: calc(100vh - 90px);
        background: #fff;
        transition: .4s;
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
        overflow-y: auto;
    }

    .navbar.active {
        left: 0;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        display: block;
        width: 100%;
        padding: 14px 0;
    }

    .submenu {
        position: relative;
        opacity: 1;
        visibility: visible;
        top: 0;
        box-shadow: none;
        border-radius: 0;
        display: none;
        margin-left: 15px;
    }

    .menu li:hover .submenu {
        display: block;
    }

    .header-actions {
        display: none;
    }
}

:root {
    --azul: #025aff;
    --azul-escuro: #071b4d;
    --amarelo: #efb619;
    --branco: #ffffff;
    --texto: #0f172a;
    --cinza: #64748b;
    --fundo: #f5f8ff;
    --borda: #e2e8f0;
    --sombra: 0 20px 50px rgba(2, 90, 255, 0.12);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--branco);
    color: var(--texto);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* =========================
   TEXTOS PADRÃO
========================= */

.section-subtitle {
    color: var(--azul);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
}

.section-header.center {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
    display: block;
}

.section-header h2,
.hero-text h1,
.consultor-text h2,
.desconto-text h2,
.historias-content h2,
.redes-content h2 {
    color: var(--azul-escuro);
    line-height: 1.1;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-top: 10px;
}

.section-header h2 span,
.hero-text h1 span,
.consultor-text h2 span,
.desconto-text h2 span,
.historias-content h2 span,
.redes-content h2 span {
    color: var(--azul);
}

.section-header p {
    color: var(--cinza);
    margin-top: 14px;
}

.section-link {
    color: var(--azul);
    font-weight: 800;
}

/* =========================
   HERO
========================= */

.hero {
    background: linear-gradient(135deg, #eef4ff 0%, #ffffff 55%, #fff7dc 100%);
    padding: 90px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    background: var(--branco);
    color: var(--azul);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--sombra);
    margin-bottom: 22px;
}

.hero-text h1 {
    font-size: clamp(38px, 6vw, 68px);
    margin-bottom: 24px;
}

.hero-text p {
    color: var(--cinza);
    font-size: 18px;
    line-height: 1.7;
    max-width: 590px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary,
.btn-desconto,
.btn-historias,
.btn-form,
.btn-unidade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    border: none;
    cursor: pointer;
}

.btn-primary,
.btn-desconto,
.btn-form,
.btn-historias {
    background: var(--azul);
    color: var(--branco);
}

.btn-secondary,
.btn-unidade {
    background: var(--amarelo);
    color: var(--azul-escuro);
}

.hero-images {
    position: relative;
    min-height: 520px;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    background: var(--branco);
    border-radius: 34px;
    box-shadow: var(--sombra);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-main {
    width: 72%;
    height: 430px;
    right: 30px;
    bottom: 0;
}

.hero-card-top {
    width: 42%;
    height: 210px;
    left: 0;
    top: 0;
}

.hero-card-bottom {
    width: 45%;
    height: 190px;
    left: 10px;
    bottom: 40px;
}

.hero-stat {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--branco);
    padding: 14px 18px;
    border-radius: 18px;
}

.hero-stat strong {
    display: block;
    color: var(--azul);
    font-size: 24px;
}

.hero-stat span {
    font-size: 13px;
    color: var(--cinza);
}

/* =========================
   CURSOS
========================= */

.cursos {
    background: var(--fundo);
}

.curso-categorias {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.curso-categorias button {
    border: 1px solid var(--borda);
    background: var(--branco);
    color: var(--texto);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.curso-categorias .active {
    background: var(--azul);
    color: var(--branco);
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.curso-card {
    background: var(--branco);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.curso-tag,
.blog-category,
.unidade-tag {
    display: inline-block;
    background: #eaf1ff;
    color: var(--azul);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.curso-card h3 {
    margin: 18px 0;
    font-size: 22px;
    color: var(--azul-escuro);
}

.curso-img {
    height: 170px;
    border-radius: 20px;
    overflow: hidden;
}

.curso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-btn {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--azul-escuro);
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 900;
}

/* =========================
   CONSULTOR
========================= */

.consultor-box {
    background: var(--azul-escuro);
    border-radius: 34px;
    padding: 42px;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.7fr;
    gap: 32px;
    align-items: center;
    overflow: hidden;
}

.consultor-text h2 {
    color: var(--branco);
    font-size: clamp(28px, 4vw, 42px);
}

.consultor-text h2 span {
    color: var(--amarelo);
}

.consultor-text ul {
    margin-top: 24px;
}

.consultor-text li {
    color: var(--branco);
    margin-bottom: 12px;
}

.consultor-text li::before {
    content: "✓ ";
    color: var(--amarelo);
    font-weight: 900;
}

.consultor-form {
    background: var(--branco);
    padding: 26px;
    border-radius: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.consultor-form input,
.consultor-form select {
    width: 100%;
    height: 52px;
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 0 16px;
    font-family: inherit;
}

.btn-form {
    width: 100%;
}

.consultor-img img {
    max-height: 330px;
    margin-left: auto;
}

/* =========================
   DESCONTO
========================= */

.desconto-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
}

.desconto-content {
    background: linear-gradient(135deg, var(--azul), #003bb5);
    border-radius: 34px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    overflow: hidden;
}

.desconto-text h2 {
    color: var(--branco);
    font-size: clamp(30px, 4vw, 50px);
}

.desconto-text h2 span {
    color: var(--amarelo);
}

.desconto-text p,
.desconto-text small {
    color: #dbeafe;
}

.desconto-text p {
    margin: 20px 0 28px;
    line-height: 1.7;
}

.desconto-img {
    position: relative;
}

.desconto-badge {
    position: absolute;
    top: 10px;
    left: -10px;
    background: var(--amarelo);
    color: var(--azul-escuro);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
}

.desconto-badge strong {
    font-size: 30px;
}

.numeros-box {
    background: var(--fundo);
    border-radius: 34px;
    padding: 34px;
}

.numeros-box h3 {
    color: var(--azul-escuro);
    margin-bottom: 22px;
}

.numero-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--borda);
}

.numero-item span {
    color: var(--azul);
    font-weight: 900;
}

.numero-item strong {
    color: var(--azul);
    font-size: 28px;
}

.numero-item p {
    color: var(--cinza);
}

/* =========================
   BENEFÍCIOS
========================= */

.beneficios {
    background: var(--fundo);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.beneficio-card {
    background: var(--branco);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
}

.beneficio-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eaf1ff;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.beneficio-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.beneficio-card p {
    color: var(--cinza);
    line-height: 1.6;
}

/* =========================
   HISTÓRIAS
========================= */

.historias-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.historias-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 12px 0 20px;
}

.historias-content p {
    color: var(--cinza);
    line-height: 1.7;
    margin-bottom: 28px;
}

.video-card {
    height: 390px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--sombra);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: none;
    background: var(--amarelo);
    color: var(--azul-escuro);
    font-size: 28px;
    cursor: pointer;
}

.depoimento-card {
    background: var(--branco);
    padding: 24px;
    border-radius: 22px;
    box-shadow: var(--sombra);
    margin-top: -50px;
    margin-left: 40px;
    position: relative;
    max-width: 430px;
}

.depoimento-card p {
    color: var(--texto);
    line-height: 1.6;
}

.depoimento-author {
    margin-top: 16px;
}

.depoimento-author strong {
    display: block;
    color: var(--azul-escuro);
}

.depoimento-author span {
    color: var(--cinza);
    font-size: 14px;
}

/* =========================
   BLOG
========================= */

.blog {
    background: var(--fundo);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 24px;
}

.blog-card {
    background: var(--branco);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
}

.blog-img {
    height: 210px;
}

.blog-card.destaque .blog-img {
    height: 300px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    color: var(--azul-escuro);
    margin: 14px 0;
    line-height: 1.3;
}

.blog-content p {
    color: var(--cinza);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--azul);
    font-weight: 800;
}

/* =========================
   UNIDADES
========================= */

.unidades-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.unidades-mapa {
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;
    background: var(--fundo);
    box-shadow: var(--sombra);
}

.unidades-lista {
    display: grid;
    gap: 20px;
}

.unidade-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--sombra);
}

.unidade-card h3 {
    color: var(--azul-escuro);
    margin: 14px 0;
}

.unidade-card li {
    color: var(--cinza);
    margin-bottom: 10px;
}

/* =========================
   REDES
========================= */

.redes {
    background: var(--azul-escuro);
}

.redes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.redes-content h2 {
    color: var(--branco);
    font-size: clamp(30px, 4vw, 48px);
    margin: 12px 0 20px;
}

.redes-content h2 span {
    color: var(--amarelo);
}

.redes-content p {
    color: #dbeafe;
    line-height: 1.7;
}

.redes-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.rede-btn {
    background: var(--branco);
    color: var(--azul-escuro);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.redes-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rede-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 28px;
    border-radius: 24px;
}

.rede-card strong {
    color: var(--amarelo);
    font-size: 32px;
    display: block;
}

.rede-card span {
    color: var(--branco);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #020617;
    color: var(--branco);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
}

.footer-brand img {
    max-width: 170px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-col li,
.footer-col a,
.footer-bottom p,
.footer-social a {
    color: #cbd5e1;
}

.footer-col h3 {
    color: var(--branco);
    margin-bottom: 18px;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 46px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 980px) {
    section {
        padding: 60px 0;
    }

    .hero-content,
    .consultor-box,
    .desconto-grid,
    .desconto-content,
    .historias-grid,
    .unidades-grid,
    .redes-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-images {
        min-height: 460px;
    }

    .cursos-grid,
    .beneficios-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultor-img {
        display: none;
    }
}

@media (max-width: 640px) {
    .section-header {
        display: block;
    }

    .section-link {
        display: inline-block;
        margin-top: 16px;
    }

    .hero {
        padding-top: 60px;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-desconto,
    .btn-historias {
        width: 100%;
    }

    .hero-images {
        min-height: 380px;
    }

    .hero-card-main {
        width: 78%;
        height: 320px;
        right: 0;
    }

    .hero-card-top {
        width: 48%;
        height: 150px;
    }

    .hero-card-bottom {
        width: 52%;
        height: 140px;
        bottom: 20px;
    }

    .cursos-grid,
    .beneficios-grid,
    .blog-grid,
    .redes-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consultor-box,
    .desconto-content {
        padding: 28px;
        border-radius: 26px;
    }

    .desconto-img {
        display: none;
    }

    .depoimento-card {
        margin: 18px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}