/* Fallbacks metricos (Arial ajustado) - evitam CLS na troca das webfonts async */
@font-face { font-family: 'Nunito Sans Fallback'; src: local('Arial'); size-adjust: 118.48%; ascent-override: 85.33%; descent-override: 29.79%; line-gap-override: 0%; }
@font-face { font-family: 'Rubik Fallback'; src: local('Arial'); size-adjust: 124.15%; ascent-override: 75.31%; descent-override: 20.14%; line-gap-override: 0%; }

        :root {
            --theme-color: #1F3A93;          /* azul principal — botões, ícones "Saiba Mais" */
            --theme-color-2: #1B42C1;        /* azul secundário */
            --theme-color-light: #1185ED;    /* azul claro — links e hovers */
            --accent-color: #FDA31B;         /* mint — destaques e tags */
            --accent-color-dark: #E08E0B;
            --whatsapp: #25D366;
            --whatsapp-dark: #1ebc59;
            --dark: #19232B;
            --body-text: #5B6577;
            --light-bg: #EEECE0;
            --light-bg-soft: #F7F5EC;
            --footer-bg: #ffffff;
            --white: #ffffff;
            --transition: all .4s ease;
            --shadow-soft: 0 12px 40px rgba(31,58,147,.10);
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        /* ========== CURSOR PERSONALIZADO ========== */
        .cursor-dot, .cursor-outline {
            position: fixed; top: 0; left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            will-change: transform;
            opacity: 0;
            transition: opacity .2s ease;
        }
        body.cursor-hidden .cursor-dot,
        body.cursor-hidden .cursor-outline { opacity: 1; }
        .cursor-dot {
            width: 8px; height: 8px;
            background: var(--accent-color);
            transition: transform .12s ease, opacity .25s ease, background .25s ease;
        }
        .cursor-outline {
            width: 38px; height: 38px;
            border: 2px solid var(--accent-color);
            transition: width .25s ease, height .25s ease,
                        border-color .25s ease, background .25s ease,
                        opacity .25s ease;
        }
        .cursor-outline.is-hover {
            width: 60px; height: 60px;
            background: rgba(253,163,27,.15);
            border-color: var(--accent-color);
        }
        .cursor-outline.is-click {
            transform: translate(-50%, -50%) scale(.75);
        }
        .cursor-dot.is-click {
            transform: translate(-50%, -50%) scale(.4);
        }
        body.cursor-hidden { cursor: none; }
        /* Cursor nativo (mãozinha/texto) retorna sobre elementos interativos */
        body.cursor-hidden a,
        body.cursor-hidden button,
        body.cursor-hidden [role="button"],
        body.cursor-hidden .swiper-button-prev-t,
        body.cursor-hidden .swiper-button-next-t,
        body.cursor-hidden label { cursor: pointer; }
        body.cursor-hidden input,
        body.cursor-hidden textarea,
        body.cursor-hidden select { cursor: auto; }
        /* Esconde cursor custom quando passa em interativo */
        .cursor-dot.is-hidden, .cursor-outline.is-hidden { opacity: 0 !important; }
        @media (hover: none), (pointer: coarse) {
            .cursor-dot, .cursor-outline { display: none !important; }
        }

        /*
        Scrollbar Option 02 — Gold Elegant
        Author: Dan Barbosa
        Usage: Elementor → Custom CSS
        */

        *::-webkit-scrollbar {
          width: 7px;
        }

        *::-webkit-scrollbar-track {
          background-color: #1a1a1a;
        }

        *::-webkit-scrollbar-thumb {
          background: linear-gradient(
            180deg,
            #246296,
            #084272
          );
          border-radius: 12px;
          border: 2px solid #1a1a1a;
        }
        body {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
            color: var(--body-text);
            background: #fff;
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }
        h1,h2,h3,h4,h5,h6 { font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif; color: var(--dark); font-weight: 800; letter-spacing: -.5px; }
        a { text-decoration: none; transition: var(--transition); }
        img { max-width: 100%; height: auto; }

        /* ========== HEADER ========== */
        .header-top {
            background: #1F3A93;
            color: rgba(255,255,255,.7);
            padding: 12px 0;
            font-size: 14px;
        }
        .header-top a { color: rgba(255,255,255,.75); }
        .header-top a:hover { color: var(--accent-color); }
        .header-top-wrap { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;}
        .header-top-social a { margin-left: 12px; }
        .header-top-contact ul { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:22px;}
        .header-top-contact i { color: var(--accent-color); margin-right: 6px;}

        .main-nav {
            background: #fff;
            box-shadow: 0 4px 22px rgba(0,0,0,.06);
            position: relative;
            z-index: 999;
            transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
        }
        .main-nav.is-stuck {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255,255,255,.72);
            backdrop-filter: saturate(180%) blur(14px);
            -webkit-backdrop-filter: saturate(180%) blur(14px);
            box-shadow: 0 10px 30px rgba(15,27,61,.10);
            animation: navSlideDown .45s cubic-bezier(.22,.61,.36,1);
            border-bottom: 1px solid rgba(255,255,255,.6);
        }
        .scroll-progress {
            position: fixed;
            left: 0; top: 0;
            height: 3px;
            width: 0;
            background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-dark) 50%, #ff7a18 100%);
            z-index: 1000;
            opacity: 0;
            transition: opacity .3s ease;
            pointer-events: none;
            box-shadow: 0 0 8px rgba(253,163,27,.45);
        }
        .scroll-progress.is-visible { opacity: 1; }
        body.nav-stuck .scroll-progress { top: auto; }
        body.nav-fixed { /* compensar a remoção do nav do fluxo */ }
        .main-nav.is-stuck .navbar-nav .nav-link { padding: 22px 16px !important; }
        .main-nav.is-stuck .navbar-brand img { max-height: 54px; transition: max-height .35s ease;}
        @keyframes navSlideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to   { transform: translateY(0); opacity: 1; }
        }
        .navbar-brand img { max-height: 64px; transition: max-height .35s ease;}
        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 600;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback';
            padding: 28px 18px !important;
            font-size: 17px;
            position: relative;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--theme-color) !important; }
        .navbar-nav .nav-link::after {
            content:''; position:absolute; left:50%; bottom:18px; width:0; height:2px; background: var(--accent-color); transition: var(--transition);
        }
        .navbar-nav .nav-link:hover::after { width: 24px; left: calc(50% - 12px); }

        .theme-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--theme-color); color: #fff !important;
            padding: 14px 28px; border-radius: 6px; font-weight: 700;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-size: 15px;
            border: 2px solid var(--theme-color);
            position: relative; overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }
        .theme-btn:hover { background: var(--accent-color); border-color: var(--accent-color); color: #fff !important; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(253,163,27,.3); }
        .theme-btn.theme-btn2 { background: var(--accent-color); border-color: var(--accent-color); }
        .theme-btn.theme-btn2:hover { background: var(--theme-color); border-color: var(--theme-color); }
        .theme-btn.theme-btn-white { background: #fff; color: var(--theme-color) !important; border-color: #fff;}
        .theme-btn.theme-btn-white:hover { background: var(--accent-color); color: #fff !important; border-color: var(--accent-color);}

        /* WhatsApp button — usado em "Agendar Visita / Agende uma Visita" */
        .whatsapp-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--whatsapp); color: #fff !important;
            padding: 14px 28px; border-radius: 6px; font-weight: 700;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-size: 15px;
            border: 2px solid var(--whatsapp);
            transition: var(--transition);
            cursor: pointer;
        }
        .whatsapp-btn:hover {
            background: var(--whatsapp-dark); border-color: var(--whatsapp-dark);
            color: #fff !important; transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(37,211,102,.35);
        }
        .whatsapp-btn i { font-size: 18px; }

        /* ===== Novo botão WhatsApp (estilo theme-btn) ===== */
        .theme-btn-wa {
            display: inline-flex; align-items: center; justify-content: center;
            gap: 10px;
            font-size: 14px;
            color: #fff !important;
            padding: 14px 26px;
            transition: var(--transition);
            text-transform: uppercase;
            position: relative;
            border-radius: 50px 50px 50px 0;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            text-align: center;
            overflow: hidden;
            border: none;
            background: var(--whatsapp);
            box-shadow: 0 10px 24px rgba(37,211,102,.30);
            z-index: 1;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
        }
        .theme-btn-wa::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            width: 0; height: 0;
            background: #116E63;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width .55s cubic-bezier(.22,.61,.36,1),
                        height .55s cubic-bezier(.22,.61,.36,1);
            z-index: -1;
        }
        .theme-btn-wa:hover {
            color: #fff !important;
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(37,211,102,.40);
        }
        .theme-btn-wa:hover::before {
            width: 260%;
            height: 700%;
        }
        .theme-btn-wa i { font-size: 16px; }
        .theme-btn-wa.no-shadow,
        .theme-btn-wa.no-shadow:hover { box-shadow: none; }
        .theme-btn-wa.no-shadow:hover { transform: none; }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: var(--theme-color);
            min-height: 620px;
            display: flex; align-items: center;
            padding-bottom: 130px; /* espaço para a barra de highlights */
        }
        .hero-section::before {
            content: '';
            position: absolute; inset: 0; z-index: 1;
            background-image:
                radial-gradient(circle at 80% 20%, rgba(253,163,27,.18) 0%, transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(17,133,237,.22) 0%, transparent 45%);
            pointer-events: none;
        }
        .hero-video {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            pointer-events: none;
        }
        .hero-video-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: rgba(0,0,0,.58);
            pointer-events: none;
        }
        .hero-section > .container { position: relative; z-index: 2; }
        .hero-content { position: relative; z-index: 2; color: #fff; max-width: 820px; padding: 30px 0 20px; }
        .hero-sub-title {
            display: inline-flex; align-items: center; gap: 10px;
            color: var(--accent-color);
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 600; font-size: 14px;
            text-transform: uppercase; letter-spacing: 2px;
            margin-bottom: 14px;
        }
        .hero-sub-title i { font-size: 18px; }
        .hero-title {
            color: #fff;
            font-size: clamp(32px, 4.4vw, 52px);
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -.3px;
            text-wrap: balance;
        }
        .hero-title span:not(.gsap-word) { color: var(--accent-color); }
        .typed-wrap { display: inline-block; white-space: nowrap; }
        .typed-text {
            color: var(--accent-color);
            font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
            font-weight: 800;
        }
        .typed-caret {
            display: inline-block;
            width: 3px; height: .9em;
            margin-left: 4px;
            background: var(--accent-color);
            vertical-align: -2px;
            animation: typedBlink 1s steps(2) infinite;
        }
        @keyframes typedBlink { 50% { opacity: 0; } }
        .hero-content p {
            color: rgba(255,255,255,.92);
            font-size: 17px;
            margin-bottom: 28px;
            max-width: 620px;
        }
        .hero-btn { display:flex; flex-wrap:wrap; gap: 18px; }

        .hero-highlights {
            position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
            background: rgba(255,255,255,.97);
            backdrop-filter: blur(8px);
            border-top: 4px solid var(--accent-color);
        }
        .hero-highlights .row { padding: 18px 0; }
        .hl-item { display:flex; align-items:center; gap:14px; padding: 8px 0; }
        .hl-item .hl-icon {
            width: 52px; height: 52px; border-radius: 50%;
            background: linear-gradient(135deg, var(--theme-color), var(--theme-color-light));
            color: #fff; display:flex; align-items:center; justify-content:center;
            font-size: 22px; flex-shrink: 0;
        }
        .hl-item h6 { margin: 0; font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800; color: var(--dark); font-size: 15px; letter-spacing: .3px;}
        .hl-item span { font-size: 13px; color: var(--body-text); }

        /* Swiper arrows */
        /* ========== SITE HEADING ========== */
        .site-heading { margin-bottom: 45px; }
        .site-title-tagline {
            display:inline-flex; align-items:center; gap:10px;
            color: var(--theme-color);
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; font-size: 14px;
            margin-bottom: 14px;
        }
        .site-title {
            font-size: clamp(32px, 4vw, 46px);
            line-height: 1.15;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .site-title span:not(.gsap-word) { color: var(--theme-color); position:relative; }
        .site-title span:not(.gsap-word)::after {
            content:''; position: absolute; left:0; right:0; bottom:4px; height: 8px;
            background: rgba(253,163,27,.25); z-index:-1; border-radius: 4px;
        }
        .section-padding { padding: 110px 0; }
        .bg-light-soft { background: var(--light-bg); }

        /* ========== AUTORIDADE / SOBRE NÓS ========== */
        .about-area { padding: 110px 0; position: relative; }

        .about-img-wrap {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 22px;
            max-width: 560px;
        }
        .about-img-1 {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
            height: 560px;
            background: transparent;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: visible;
            position: relative;
            z-index: 2;
        }
        .about-img-2 {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            height: 260px;
            border-radius: 30px 30px 30px 130px;
            overflow: hidden;
            background: linear-gradient(135deg, #ffd89a, #FDA31B);
            position: relative;
            z-index: 1;
        }
        .about-img-3 {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
            height: 278px;
            border-radius: 30px;
            overflow: hidden;
            background: linear-gradient(135deg, #cfd9e8, #4a6786);
            position: relative;
            z-index: 1;
        }
        .about-img-1 img,
        .about-img-2 img,
        .about-img-3 img { width: 100%; height: 100%; object-fit: cover; display: block;}
        /* PNG cutout (sem fundo) — maior que o slot */
        .about-img-1 img.img-cutout {
            width: auto;
            height: 130%;
            max-width: 160%;
            object-fit: contain;
            object-position: bottom center;
            display: block;
            margin-bottom: -10px;
        }

        /* preview placeholder when no image */
        .img-preview {
            width:100%; height:100%;
            display:flex; align-items:center; justify-content:center;
            flex-direction:column; gap:8px;
            color: rgba(255,255,255,.95);
            text-align:center; padding: 20px;
        }
        .img-preview i { font-size: 38px; opacity:.9; }
        .img-preview span {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight:700;
            text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px;
        }
        .img-preview small {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight:500;
            font-size: 11px; opacity:.85;
        }

        .about-experience-badge {
            position: absolute; bottom: -10px; left: -10px;
            width: 140px; height: 140px; border-radius: 50%;
            background: rgba(255,255,255,.55);
            -webkit-backdrop-filter: blur(12px) saturate(160%);
                    backdrop-filter: blur(12px) saturate(160%);
            color: #2f53a7;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding: 14px;
            z-index: 3;
            border: 1px solid rgba(255,255,255,.6);
            box-shadow: 0 8px 24px rgba(47,83,167,.12);
            animation: badge-float 4.5s ease-in-out infinite;
        }
        /* Anel pontilhado girando ao redor do selo */
        .about-experience-badge::before {
            content: '';
            position: absolute;
            inset: -16px;
            border-radius: 50%;
            border: 2px dashed #2f53a7;
            opacity: .55;
            animation: badge-spin 16s linear infinite;
            pointer-events: none;
        }
        /* Pulso suave de glow */
        .about-experience-badge::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(47,83,167,.25);
            animation: badge-pulse 3s ease-out infinite;
            pointer-events: none;
        }
        .about-experience-badge .badge-icon {
            font-size: 24px; margin-bottom: 6px;
            display: inline-block;
            animation: badge-icon-wiggle 3.5s ease-in-out infinite;
        }
        .about-experience-badge .badge-text {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800;
            font-size: 13px; line-height: 1.2;
        }
        @keyframes badge-spin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }
        @keyframes badge-float {
            0%,100% { transform: translateY(0); }
            50%     { transform: translateY(-6px); }
        }
        @keyframes badge-pulse {
            0%   { box-shadow: 0 0 0 0 rgba(47,83,167,.45); }
            100% { box-shadow: 0 0 0 22px rgba(47,83,167,0); }
        }
        @keyframes badge-icon-wiggle {
            0%, 90%, 100% { transform: rotate(0deg) scale(1); }
            45%           { transform: rotate(-8deg) scale(1.08); }
            55%           { transform: rotate(8deg) scale(1.08); }
        }
        @media (prefers-reduced-motion: reduce){
            .about-experience-badge,
            .about-experience-badge::before,
            .about-experience-badge::after,
            .about-experience-badge .badge-icon { animation: none; }
        }

        .about-text { font-size: 15.5px; margin-bottom: 18px; color: var(--body-text); line-height: 1.85; }

        .about-call { display: flex; align-items: center; gap: 14px; }
        .about-call-icon {
            width: 60px; height: 60px; border-radius: 50%;
            background: var(--theme-color); color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; flex-shrink: 0;
        }
        .about-call-info small { color: var(--accent-color); font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight:700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display:block; }
        .about-call-info h6 { font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800; color: var(--dark); margin: 0; font-size: 20px; }
        .about-call-info h6 a { color: var(--dark); }

        @media (max-width: 991.98px){
            .about-img-wrap { max-width: 500px; margin: 0 auto 60px; }
        }
        @media (max-width: 576px){
            .about-img-1 { height: 440px; border-radius: 140px 140px 24px 24px; }
            .about-img-2 { height: 200px; border-radius: 24px 24px 24px 100px;}
            .about-img-3 { height: 220px; border-radius: 24px; }
            .about-experience-badge { width: 110px; height: 110px; bottom: -20px; left: -10px;}
            .about-experience-badge .badge-text { font-size: 11px;}
        }

        /* ========== POR QUE ESCOLHER (cards) ========== */
        .feature-grid .feature-card {
            background: #fff;
            border: 1px solid #eef2f1;
            border-radius: 16px;
            padding: 38px 30px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .feature-grid .feature-card::before {
            content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, #0F1B3D 0%, #1F3A93 50%, #1185ED 100%);
            transform: scaleX(0); transform-origin: left; transition: transform .55s ease;
            opacity: .9;
        }
        .feature-grid .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: transparent; }
        .feature-grid .feature-card:hover::before { transform: scaleX(1); }
        .feature-icon-wrap {
            width: 78px; height: 78px; border-radius: 18px;
            background: rgba(31,58,147,.08); color: var(--theme-color);
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; margin-bottom: 24px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon-wrap { background: var(--theme-color); color: #fff; }
        .feature-card h4 {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 700;
            font-size: 20px; color: var(--dark); margin-bottom: 12px;
        }
        .feature-card p { font-size: 15px; margin: 0; }
        .feature-card .num {
            position: absolute; right: 24px; top: 18px;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-size: 48px; font-weight: 800;
            line-height: 1;
            color: var(--accent-color);
            opacity: .18;
            transition: opacity .35s ease;
        }
        .feature-card:hover .num { opacity: .55; }

        /* ========== ESTRUTURA (galeria) ========== */
        .structure-area {
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-image: linear-gradient(
                to right,
                transparent,
                #1F3A93,
                transparent
            ) 1;
        }
        .structure-area .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            grid-auto-rows: 230px;
            gap: 22px;
        }
        .gallery-grid .g-item {
            border-radius: 16px; overflow: hidden; position: relative;
            background-size: cover; background-position: center;
            transition: var(--transition);
            box-shadow: 0 8px 26px rgba(17,35,43,.06);
        }
        .gallery-grid .g-item::after {
            content:''; position:absolute; inset:0;
            background: linear-gradient(180deg, transparent 45%, rgba(1,39,88,.85) 100%);
            opacity: .85; transition: var(--transition);
        }
        .gallery-grid .g-item .g-label {
            position: absolute; left: 22px; bottom: 18px; z-index: 2;
            color: #fff; font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 700; font-size: 16px;
        }
        .gallery-grid .g-item:hover { transform: translateY(-4px); }
        .gallery-grid .g-item:hover::after { opacity: 1; }
        @media (max-width: 768px){
            .structure-area .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; gap: 14px;}
        }
        @media (max-width: 480px){
            .structure-area .gallery-grid { grid-template-columns: 1fr; }
        }

        /* ========== ETAPAS (portfolio style) ========== */
        .stage-area {
            position: relative;
            background: #fff;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
                    mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
        }
        .stage-area::before, .stage-area::after {
            content:''; position: absolute;
            border-radius: 50%;
            opacity: .06;
            pointer-events: none;
            z-index: 0;
        }
        .stage-area::before {
            width: 480px; height: 480px;
            top: -160px; left: -160px;
            background: var(--theme-color);
        }
        .stage-area::after {
            width: 380px; height: 380px;
            bottom: -120px; right: -100px;
            background: var(--accent-color);
            opacity: .08;
        }
        .stage-area > .container { position: relative; z-index: 1; }

        .stage-card {
            position: relative;
            border-radius: 18px;
            transition: var(--transition);
            height: 100%;
            padding-bottom: 110px;
        }
        .stage-card:hover { transform: translateY(-8px); }
        .stage-img {
            position: relative;
            height: 320px;
            overflow: hidden;
            border-radius: 18px;
        }
        .stage-img img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform .7s ease;
        }
        .stage-card:hover .stage-img img { transform: scale(1.08); }

        .stage-content {
            position: absolute;
            left: 18px; right: 18px; bottom: 0;
            background: var(--theme-color);
            color: #fff;
            padding: 20px 24px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: space-between; gap: 14px;
            box-shadow: 0 14px 28px rgba(31,58,147,.25);
            transition: var(--transition);
        }
        .stage-content::before {
            content: '';
            position: absolute;
            top: -22px; left: 50%;
            transform: translateX(-50%);
            width: 60%; height: 30px;
            background: var(--theme-color);
            border-radius: 50%;
            z-index: -1;
        }
        .stage-card:hover .stage-content { background: var(--accent-color); box-shadow: 0 14px 28px rgba(253,163,27,.35); }
        .stage-card:hover .stage-content::before { background: var(--accent-color); }

        .stage-tag {
            display: inline-flex; align-items: center; gap: 6px;
            color: rgba(255,255,255,.85);
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 700; font-size: 11px;
            text-transform: uppercase; letter-spacing: 1.2px;
            margin-bottom: 4px;
        }
        .stage-tag i { font-size: 10px; color: var(--accent-color); transition: var(--transition);}
        .stage-card:hover .stage-tag i { color: #fff; }

        .stage-content h4 {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800;
            font-size: 18px; color: #fff; margin: 0 0 6px;
            line-height: 1.2;
        }
        .stage-content p {
            color: rgba(255,255,255,.85);
            font-size: 13.5px;
            line-height: 1.55;
            margin: 0;
        }
        .stage-card:hover .stage-content p { color: rgba(255,255,255,.95); }

        .stage-arrow {
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,.15);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .stage-card:hover .stage-arrow {
            background: #fff; color: var(--accent-color);
            transform: rotate(-45deg);
        }

        /* ========== DEPOIMENTOS ========== */
        .testimonial-area {
            background: #ffffff;
            position: relative;
        }
        .testimonial-area .site-title-tagline {
            color: var(--theme-color);
            position: relative;
            display: inline-block;
            padding-bottom: 6px;
        }
        .testimonial-area .site-title-tagline::after {
            content:''; position: absolute; left: 0; right: 0; bottom: 0;
            height: 2px; background: var(--theme-color); opacity: .8;
        }
        .testimonial-area .site-title { color: var(--dark); }
        .testimonial-area .site-title span:not(.gsap-word) { color: var(--theme-color); }
        .testimonial-area .site-title span:not(.gsap-word)::after { display: none; }

        /* Animação sutil "subliminar" em Colégio Haya */
        .hl-haya {
            position: relative;
            display: inline-block;
            animation: hl-haya-pulse 3.6s ease-in-out infinite;
        }
        .hl-haya::before {
            content: 'Colégio Haya';
            position: absolute;
            inset: 0;
            color: var(--theme-color);
            opacity: 0;
            filter: blur(6px);
            animation: hl-haya-ghost 3.6s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes hl-haya-pulse {
            0%, 100% { opacity: 1; }
            50%      { opacity: .88; }
        }
        @keyframes hl-haya-ghost {
            0%, 100% { opacity: 0; transform: scale(1);}
            50%      { opacity: .35; transform: scale(1.03);}
        }
        @media (prefers-reduced-motion: reduce) {
            .hl-haya, .hl-haya::before { animation: none; }
        }
        .testimonial-area .site-heading p { color: var(--body-text); }

        .testimonial-card {
            background: #fff;
            border-radius: 14px;
            padding: 36px 32px 32px;
            position: relative;
            margin: 18px 6px 26px;
            box-shadow: 0 8px 24px rgba(17,35,43,.06);
            overflow: hidden;
            height: calc(100% - 44px);
            display: flex;
            flex-direction: column;
        }
        .testimonial-quote-99 {
            position: absolute;
            top: 20px; right: 20px;
            width: 52px; height: 52px;
            border-radius: 50%;
            border: 2px dashed var(--theme-color);
            color: var(--theme-color);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            background: rgba(31,58,147,.06);
            animation: spin-quote 14s linear infinite;
            transition: var(--transition);
        }
        .testimonial-quote-99 i {
            animation: spin-quote-reverse 14s linear infinite;
        }
        .testimonial-card:hover .testimonial-quote-99 {
            background: var(--theme-color);
            color: #fff;
            transform: scale(1.08);
        }
        @keyframes spin-quote {
            from { transform: rotate(0deg);}
            to   { transform: rotate(360deg);}
        }
        @keyframes spin-quote-reverse {
            from { transform: rotate(0deg);}
            to   { transform: rotate(-360deg);}
        }

        .testimonial-rating {
            color: #FDA31B;
            margin-bottom: 16px;
            font-size: 14px;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-size: 14.5px;
            color: var(--body-text);
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.75;
            position: relative;
            z-index: 1;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .testimonial-author { margin-top: auto; }

        /* Setas do carrossel de depoimentos */
        .testimonial-nav {
            display: flex; justify-content: center; gap: 14px;
            margin-top: 20px;
        }
        .testimonial-nav .swiper-button-prev-t,
        .testimonial-nav .swiper-button-next-t {
            width: 48px; height: 48px; border-radius: 50%;
            background: #fff; color: var(--theme-color);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: var(--transition);
            box-shadow: 0 6px 18px rgba(17,35,43,.08);
            border: 1px solid #e8eaee;
        }
        .testimonial-nav .swiper-button-prev-t:hover,
        .testimonial-nav .swiper-button-next-t:hover {
            background: var(--accent-color); color: #fff;
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .testimonial-author {
            display: flex; align-items: center; gap: 14px;
            position: relative; z-index: 3;
        }
        .testimonial-author .avatar {
            width: 54px; height: 54px; border-radius: 50%;
            background: linear-gradient(135deg, var(--theme-color), var(--accent-color));
            color: #fff; font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800; font-size: 18px;
            display: flex; align-items: center; justify-content: center;
            border: 2px solid #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,.08);
            flex-shrink: 0;
        }
        .testimonial-author h6 {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 800;
            color: var(--dark); margin: 0 0 2px; font-size: 16px;
        }
        .testimonial-author span {
            font-size: 13px;
            color: var(--theme-color);
            font-weight: 700;
        }

        .testimonial-area .swiper-pagination-bullet {
            background: #d8dade; opacity: 1;
            width: 8px; height: 8px;
        }
        .testimonial-area .swiper-pagination-bullet-active {
            background: var(--theme-color);
            width: 24px; border-radius: 4px;
            transition: var(--transition);
        }
        /* Movimento contínuo (marquee) */
        .testimonial-slider .swiper-wrapper {
            transition-timing-function: linear !important;
        }

        /* ========== PROCESSO ========== */
        .process-area { background: #F2F3F5; position: relative;}
        .process-step {
            background: #fff; border-radius: 16px; padding: 38px 30px;
            text-align: center; position: relative;
            transition: var(--transition); height: 100%;
            border: 1px solid #e9eeed;
        }
        .process-step:hover { transform: translateY(-8px); border-color: var(--theme-color); box-shadow: var(--shadow-soft);}
        .process-step .step-num {
            width: 70px; height: 70px; border-radius: 50%;
            background: var(--theme-color); color: #fff;
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-size: 28px;
            display:flex; align-items:center; justify-content:center;
            margin: 0 auto 22px; position: relative;
            transition: var(--transition);
        }
        .process-step:hover .step-num { background: var(--accent-color); transform: rotate(360deg);}
        .process-step .step-num::before {
            content:''; position: absolute; inset: -8px;
            border: 2px dashed var(--accent-color); border-radius: 50%;
            opacity: .5;
        }
        .process-step h4 {
            font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight: 700; color: var(--theme-color);
            font-size: 16px; text-transform: uppercase; letter-spacing: 1.5px;
            margin-bottom: 10px;
        }
        .process-step p { font-size: 16px; color: var(--dark); font-weight: 600; margin: 0;}

        /* ========== CTA FINAL ========== */
        .cta-area {
            position: relative;
            padding: 70px 0;
            background: linear-gradient(135deg, #1F3A93 0%, #2A4FB8 100%);
        }
        .cta-area::before {
            content:''; position: absolute; inset: 0;
            background-image: radial-gradient(rgba(255,255,255,.06) 2px, transparent 2px);
            background-size: 28px 28px; opacity: .5;
            pointer-events: none;
        }
        .cta-area > .container { position: relative; z-index: 1; }
        .cta-content { color: #fff; }
        .cta-content h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.15; margin-bottom: 16px;}
        .cta-content p { color: rgba(255,255,255,.9); font-size: 16px; margin-bottom: 22px;}

        /* ========== FORM ========== */
        .enroll-form {
            background: #fff; border-radius: 18px; padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,.18);
        }
        .enroll-form-header h3 { font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight:800; color:var(--dark); font-size:26px; margin-bottom:6px;}
        .enroll-form-header p { color: var(--body-text); margin-bottom: 24px;}
        .enroll-form .form-control, .enroll-form .form-select {
            border: 1px solid #e3eaef; padding: 13px 16px;
            border-radius: 10px; font-size: 15px; height: auto;
            background: var(--light-bg);
        }
        .enroll-form .form-control:focus, .enroll-form .form-select:focus {
            border-color: var(--theme-color); box-shadow: 0 0 0 3px rgba(31,58,147,.12); background:#fff;
        }
        .enroll-form .theme-btn { width: 100%; justify-content: center;}

        /* ========== FOOTER ========== */
        .footer {
            background: #ffffff;
            color: var(--body-text);
            padding: 80px 0 0;
            position: relative;
            border-top: 1px solid #eef1f4;
        }
        .footer h5 { color: var(--dark); font-family: 'Nunito Sans', 'Nunito Sans Fallback'; font-weight:800; font-size:18px; margin-bottom:22px; position:relative; padding-bottom:14px;}
        .footer h5::after {content:''; position:absolute; left:0; bottom:0; width:40px; height:3px; background: var(--accent-color); border-radius:3px;}
        .footer a { color: var(--body-text); }
        .footer a:hover { color: var(--theme-color);}
        .footer .footer-logo { max-height: 70px; padding: 0; margin-bottom: 22px; background: transparent;}
        .footer-contact li {display:flex; gap:14px; margin-bottom:16px; align-items: flex-start;}
        .footer-contact li i { color: var(--theme-color); font-size: 18px; margin-top: 4px;}
        .footer-social a {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--light-bg);
            color: var(--theme-color);
            display: inline-flex;
            align-items: center; justify-content: center;
            margin-right: 8px;
        }
        .footer-social a:hover { background: var(--accent-color); color: #fff;}
        .footer-bottom {
            margin-top: 60px; padding: 22px 0;
            border-top: 1px solid #eef1f4;
            text-align: center; font-size: 14px;
            color: var(--body-text);
        }
        .footer-webformas {
            display: block;
            margin: 14px auto 0;
            line-height: 0;
        }
        .footer-webformas img {
            height: 56px;
            width: auto;
            opacity: .9;
            transition: var(--transition);
        }
        .footer-webformas:hover img { opacity: 1; }

        /* ========== WHATSAPP FIXO ========== */
        .whatsapp-fixed {
            position: fixed; right: 22px; bottom: 22px; z-index: 9999;
            display: inline-flex; align-items: center; gap: 10px;
            background: #25D366; color: #fff; padding: 14px 22px;
            border-radius: 60px; font-weight: 700; font-family: 'Nunito Sans', 'Nunito Sans Fallback';
            box-shadow: 0 10px 30px rgba(37,211,102,.45);
            animation: pulse 2s infinite;
            font-size: 15px;
        }
        .whatsapp-fixed i { font-size: 22px; }
        .whatsapp-fixed:hover { color:#fff; background:#1ebc59; transform: translateY(-3px);}
        @keyframes pulse {
            0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.6);}
            70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0);}
            100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0);}
        }
        @media (max-width: 576px){
            .whatsapp-fixed span.txt { display:none;}
            .whatsapp-fixed { padding: 16px; border-radius: 50%; }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991.98px){
            .header-top { display:none;}
            .section-padding { padding: 70px 0;}
            .about-experience { left: 10px; top: 10px; padding:14px 18px;}
            .about-experience .num { font-size: 34px;}
            .about-img-wrap .img-sub { width: 150px; height: 150px; right: 0; bottom: -20px;}

            /* ── Mobile nav: drawer lateral ── */
            .navbar { padding: 10px 0; }
            .navbar-toggler {
                border: 2px solid var(--theme-color);
                border-radius: 10px;
                padding: 8px 12px;
                color: var(--theme-color);
                background: #fff;
                box-shadow: none;
                font-size: 20px;
                line-height: 1;
                transition: background .25s ease, color .25s ease;
            }
            .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(31,58,147,.18); outline: none; }
            .navbar-toggler i { transition: transform .35s ease; }
            .navbar-toggler[aria-expanded="true"] { background: var(--theme-color); color: #fff; }
            .navbar-toggler[aria-expanded="true"] i { transform: rotate(90deg); }

            /* backdrop */
            body.mobile-nav-open { overflow: hidden; }
            body.mobile-nav-open::after {
                content:'';
                position: fixed; inset: 0;
                background: rgba(15, 24, 51, .55);
                backdrop-filter: blur(4px);
                z-index: 998;
                animation: fadeBackdrop .3s ease;
            }
            @keyframes fadeBackdrop { from { opacity: 0; } to { opacity: 1; } }

            .navbar-collapse {
                position: fixed;
                top: 0; right: 0;
                width: min(86vw, 360px);
                height: 100dvh;
                background: #fff;
                box-shadow: -18px 0 60px rgba(15,27,61,.18);
                padding: 90px 26px 30px;
                z-index: 999;
                transform: translateX(100%);
                transition: transform .45s cubic-bezier(.22,.61,.36,1);
                overflow-y: auto;
                display: flex !important;
                flex-direction: column;
                visibility: hidden;
            }
            .navbar-collapse.show,
            .navbar-collapse.collapsing { visibility: visible; }
            .navbar-collapse.show { transform: translateX(0); }

            .navbar-nav.mx-auto { margin: 0 !important; width: 100%; }
            .navbar-nav .nav-item { border-bottom: 1px solid #f0eee5; }
            .navbar-nav .nav-item:last-child { border-bottom: none; }
            .navbar-nav .nav-link {
                padding: 16px 4px !important;
                font-size: 17px;
                font-weight: 700;
                color: var(--dark) !important;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .navbar-nav .nav-link::after { display: none; }
            .navbar-nav .nav-link.active,
            .navbar-nav .nav-link:hover {
                color: var(--theme-color) !important;
                padding-left: 12px !important;
            }
            .navbar-nav .nav-link.active::before,
            .navbar-nav .nav-link:hover::before {
                content: '';
                width: 4px; height: 22px;
                background: var(--accent-color);
                border-radius: 4px;
                display: inline-block;
            }

            .header-right-btns {
                margin-top: 22px;
                width: 100%;
            }
            .header-right-btns .theme-btn-wa {
                width: 100%;
                justify-content: center;
                padding: 16px 22px;
                font-size: 15px;
            }

            /* ── HERO mobile ── */
            .hero-section {
                min-height: auto;
                padding-top: 30px;
                padding-bottom: 50px;
            }
            .hero-content { padding: 40px 0 20px; max-width: 100%; }
            .hero-sub-title {
                font-size: 13px;
                letter-spacing: 1.5px;
                margin-bottom: 14px;
            }
            .hero-title {
                font-size: clamp(28px, 7vw, 40px);
                line-height: 1.15;
                margin-bottom: 16px;
            }
            .hero-content p {
                font-size: 16px;
                line-height: 1.6;
                margin-bottom: 26px;
            }
            .hero-btn .theme-btn-wa {
                width: 100%;
                justify-content: center;
                padding: 16px 22px;
            }
        }
        @media (max-width: 576px){
            .hero-slider .swiper-slide { min-height: 600px;}
            .hero-section { padding-top: 20px; padding-bottom: 40px; }
            .hero-content { padding: 20px 0 10px; }
            .hero-title { font-size: clamp(26px, 8vw, 34px); line-height: 1.2; }
            .hero-sub-title { font-size: 12px; }
            .hero-content p { font-size: 15px; margin-bottom: 22px; }
            .hl-item { justify-content: center; }
            .navbar-collapse { width: 92vw; padding: 80px 22px 24px; }
        }

        /* Header right CTA */
        .header-right-btns { display:flex; gap:12px; align-items:center;}
        @media (max-width: 991.98px) { .header-right-btns { margin-top: 14px; flex-wrap: wrap; }}


/* ── LGPD Banner ── */
.lgpd-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  background: var(--dark);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 18px 22px;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
}
.lgpd-banner.is-visible { transform: translateY(0); opacity: 1; }
.lgpd-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.lgpd-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  flex: 1 1 320px;
  color: rgba(255,255,255,.88);
}
.lgpd-banner-text a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 700;
}
.lgpd-banner-text a:hover { color: #fff; }
.lgpd-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lgpd-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.lgpd-btn-primary {
  background: var(--accent-color);
  color: var(--dark);
  border-color: var(--accent-color);
}
.lgpd-btn-primary:hover {
  background: var(--accent-color-dark);
  border-color: var(--accent-color-dark);
  transform: translateY(-2px);
}
.lgpd-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.lgpd-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}
@media (max-width: 575.98px) {
  .lgpd-banner { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .lgpd-banner-actions { width: 100%; }
  .lgpd-btn { flex: 1; }
}

/* ── Marquee (faixa animada — clean) ── */
.marquee {
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--dark);
}
.marquee-item i {
  font-size: 14px;
  color: var(--accent-color);
  opacity: .85;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee { padding: 11px 0; }
  .marquee-item { font-size: 12px; padding: 0 22px; gap: 10px; letter-spacing: 1.5px; }
  .marquee-item i { font-size: 12px; }
  .marquee-track { animation-duration: 28s; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   HERO LPV2
   ============================================================ */
:root {
  --hero-v2-blue: #0735E6;
  --hero-v2-blue-deep: #0428C4;
  --hero-v2-blue-card: #0A2BB8;
  --hero-v2-yellow: #DAFF1E;
  --hero-v2-white: #ffffff;
}

.hero-v2 {
  position: relative;
  width: 100%;
  background: var(--hero-v2-blue) url('../img/fundo-hero.webp') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 0;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}

.hero-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-v2-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Brand acima do título "Matrículas Abertas" */
.hero-v2-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.hero-v2-brand-logo {
  display: block;
  width: 130px;
  height: auto;
}

/* Grid principal */
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

/* Coluna esquerda */
.hero-v2-left {
  position: relative;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-v2-model {
  position: relative;
  background: transparent;
  max-width: 620px;
  width: 110%;
}
.hero-v2-model::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 55%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,.28) 45%, transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  filter: blur(12px);
  z-index: 2;
  animation: heroV2FaceGlow 4s ease-in-out infinite;
}
@keyframes heroV2FaceGlow {
  0%, 100% { opacity: .25; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-model::after { animation: none; }
}
.hero-v2-model > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}

/* Elementos decorativos flutuantes */
.hero-v2-model { overflow: visible; }
.hero-v2-deco {
  position: absolute;
  pointer-events: none;
  width: auto;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
  z-index: 3;
}
.hero-v2-deco-lapis {
  width: 24%;
  top: 18%;
  left: -10%;
  transform: rotate(-8deg);
  animation: heroV2Float 6s ease-in-out infinite;
}
.hero-v2-deco-borracha {
  width: 18%;
  top: 38%;
  right: -6%;
  transform: rotate(18deg);
  animation: heroV2Float 5s ease-in-out infinite reverse;
  animation-delay: .8s;
}
@keyframes heroV2Float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-deco { animation: none; }
}

.hero-v2-ctas {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.hero-v2-btn i { font-size: 16px; }
.hero-v2-btn-outline {
  background: var(--hero-v2-white);
  color: var(--hero-v2-blue-deep);
}
.hero-v2-btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  color: var(--hero-v2-blue-deep);
}
.hero-v2-btn-solid {
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
}
.hero-v2-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
  color: var(--hero-v2-blue-deep);
}

/* Coluna direita */
.hero-v2-right {
  padding-top: 0;
  max-width: 560px;
}

.hero-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  color: var(--hero-v2-yellow);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero-v2-title-line {
  display: block;
  background-color: var(--hero-v2-yellow);
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,.95) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-repeat: no-repeat;
  background-position: 150% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroV2Shine 3.5s linear infinite;
}
.hero-v2-title-line:nth-child(2) { animation-delay: .4s; }

@keyframes heroV2Shine {
  0%, 100% { background-position: 150% 0; }
  50%      { background-position: -50% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-title-line {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--hero-v2-yellow);
  }
}
.hero-v2-title-dash {
  display: inline-block;
  width: 56px;
  height: 6px;
  background: var(--hero-v2-yellow);
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 14px;
  margin-bottom: 4px;
}

.hero-v2-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--hero-v2-blue-card);
  padding: 18px 26px;
  border-radius: 18px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-v2-card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-v2-yellow);
  font-size: 30px;
  flex-shrink: 0;
}
.hero-v2-card-text {
  color: var(--hero-v2-white);
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}
.hero-v2-card-text strong { font-weight: 800; }

.hero-v2-text {
  color: var(--hero-v2-white);
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 500px;
}
.hero-v2-text--lead {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}
.hero-v2-text:last-child { margin-bottom: 0; }

/* Responsivo */
/* ============================================================
   HERO LPV2 — TABLET & MOBILE
   Ordem visual (1 col): brand → título+card → descrição+CTAs → imagem
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-v2 { padding: 32px 0 0; }
  .hero-v2-container { padding: 0 24px; }

  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Reordena: texto (right) primeiro, imagem (left) por último */
  .hero-v2-right {
    order: 1;
    padding-top: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-v2-left {
    order: 2;
    align-self: center;
    margin: 0 auto;
  }

  /* Título centralizado */
  .hero-v2-title { margin-bottom: 24px; }
  .hero-v2-title-dash { display: none; }

  /* Card e descrição centralizam */
  .hero-v2-card { margin-left: auto; margin-right: auto; }
  .hero-v2-text { margin-left: auto; margin-right: auto; }

  /* Botões */
  .hero-v2-ctas { justify-content: center; }

  /* Imagem */
  .hero-v2-model { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 575.98px) {
  .hero-v2 { padding: 24px 0 0; }
  .hero-v2-container { padding: 0 20px; }

  .hero-v2-brand {
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .hero-v2-brand-logo { width: 140px; }

  .hero-v2-grid { gap: 32px; }

  .hero-v2-title { font-size: clamp(42px, 12vw, 60px); margin-bottom: 20px; }

  .hero-v2-card {
    padding: 14px 20px;
    gap: 14px;
    border-radius: 14px;
  }
  .hero-v2-card-icon { width: 38px; height: 38px; font-size: 24px; }
  .hero-v2-card-text { font-size: 15px; }

  .hero-v2-text { font-size: 16.5px; line-height: 1.5; }
  .hero-v2-text--lead { font-size: 17px; line-height: 1.5; }

  .hero-v2-btn { padding: 14px 22px; font-size: 12px; flex: 1; }
  .hero-v2-ctas { gap: 10px; flex-wrap: nowrap; }

  /* Decorativos menores pra não estourar lateralmente */
  .hero-v2-deco-lapis { width: 16%; left: -4%; top: 6%; }
  .hero-v2-deco-borracha { width: 18%; right: -4%; top: 36%; }

  /* Glow do rosto ajustado */
  .hero-v2-model::after { top: 14%; width: 58%; }
}

/* ============================================================
   SOBRE NÓS LPV2
   ============================================================ */
.about-v2 {
  position: relative;
  background: #f5f5f5;
  padding: 70px 0;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.about-v2-cta { margin-top: 32px; }
.about-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}
.about-v2-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-v2-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: center;
}

/* Coluna esquerda */
.about-v2-left { max-width: 520px; }

.about-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dark, #19232B);
  margin-bottom: 22px;
  line-height: 1;
}
.about-v2-eyebrow i {
  color: var(--hero-v2-blue, #0735E6);
  font-size: 16px;
}
.about-v2-eyebrow span { display: inline-block; }
.about-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark, #19232B);
  margin: 0 0 24px;
}
.about-v2-title-word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
.about-v2-title-accent { color: var(--hero-v2-blue, #0735E6); }
@media (prefers-reduced-motion: reduce) {
  .about-v2-title-word { opacity: 1; transform: none; }
}

.about-v2-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a5260;
  margin: 0 0 18px;
}
.about-v2-text:last-child { margin-bottom: 0; }

/* Coluna direita */
.about-v2-right {
  display: flex;
  justify-content: center;
}
.about-v2-img-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.about-v2-img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* Borda neon amarela — discreta, atrás do aluno */
.about-v2-border {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  max-width: 600px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: .8;
  filter: drop-shadow(0 0 10px rgba(218,255,30,.45));
  animation: aboutV2BorderPulse 3.6s ease-in-out infinite;
}
@keyframes aboutV2BorderPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 14px rgba(218,255,30,.45));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    filter: drop-shadow(0 0 24px rgba(218,255,30,.75));
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-v2-border { animation: none; }
}

/* Decorativos */
.about-v2-deco {
  position: absolute;
  pointer-events: none;
  width: auto;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}
.about-v2-deco-borracha {
  width: 14%;
  top: 10%;
  left: 4%;
  transform: rotate(-14deg);
  animation: aboutV2Float 6s ease-in-out infinite;
}
.about-v2-deco-lapis {
  width: 22%;
  top: 36%;
  right: -4%;
  transform: rotate(-6deg);
  animation: aboutV2Float 5.5s ease-in-out infinite reverse;
  animation-delay: .6s;
}

/* Sparkles */
.about-v2-spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.about-v2-spark--yellow { fill: var(--hero-v2-yellow, #DAFF1E); }
.about-v2-spark--blue   { fill: var(--hero-v2-blue, #0735E6); }

.about-v2-spark {
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
}
.about-v2-spark--1 { width: 46px; top: 26%; left: 8%;  animation-delay: 0s;  }
.about-v2-spark--2 { width: 78px; top: 60%; left: 0%;  animation-delay: .9s; }
.about-v2-spark--3 { width: 36px; top: 14%; right: 6%; animation-delay: .4s; }
.about-v2-spark--4 { width: 40px; bottom: 12%; right: 4%; animation-delay: 1.4s; }

@keyframes aboutV2Float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}
@keyframes aboutV2Twinkle {
  0%, 100% { opacity: .55; transform: scale(.9); }
  50%      { opacity: 1;   transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .about-v2-deco, .about-v2-spark { animation: none; }
}

/* Responsivo */
@media (max-width: 991.98px) {
  .about-v2 { padding: 50px 0; }
  .about-v2-container { padding: 0 24px; }
  .about-v2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-v2-left {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .about-v2-img-wrap { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 575.98px) {
  .about-v2 { padding: 40px 0; }
  .about-v2-container { padding: 0 20px; }
  .about-v2-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .about-v2-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 22px; }
  .about-v2-text { font-size: 15px; line-height: 1.65; }

  /* Decorativos no mobile */
  .about-v2-spark--1 { width: 32px; }
  .about-v2-spark--2 { width: 52px; }
  .about-v2-spark--3 { width: 26px; }
  .about-v2-spark--4 { width: 28px; }
  .about-v2-deco-borracha { width: 16%; left: 2%; }
  .about-v2-deco-lapis { width: 24%; right: -2%; }
}

/* ============================================================
   DIFERENCIAIS LPV2
   Fundo azul + cards brancos com número amarelo e ícone em badge
   ============================================================ */
.diff-v2 {
  position: relative;
  background: var(--hero-v2-blue, #0735E6);
  padding: 90px 0 110px;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.diff-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.diff-v2-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sparkles de seção */
.diff-v2-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.diff-v2-spark--1 { width: 38px; top: 12%; left: 5%;  fill: var(--hero-v2-yellow); animation-delay: 0s;  }
.diff-v2-spark--2 { width: 28px; top: 8%;  right: 8%; fill: #FFFFFF;             animation-delay: .6s; }
.diff-v2-spark--3 { width: 46px; bottom: 10%; left: 7%; fill: var(--hero-v2-yellow); animation-delay: 1.2s; }
.diff-v2-spark--4 { width: 32px; bottom: 18%; right: 6%; fill: #FFFFFF;             animation-delay: .9s; }
@media (prefers-reduced-motion: reduce) {
  .diff-v2-spark { animation: none; }
}

/* Cabeçalho */
.diff-v2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  color: #fff;
}
.diff-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  line-height: 1;
}
.diff-v2-eyebrow i {
  color: var(--hero-v2-yellow);
  font-size: 16px;
}
.diff-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.diff-v2-title-word { display: inline-block; }
.diff-v2-title-accent { color: var(--hero-v2-yellow); margin-left: .35em; }

/* Grid de cards */
.diff-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diff-v2-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 38px 30px 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease;
  isolation: isolate;
}
/* Camada de gradient sutil sempre presente */
.diff-v2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,53,230,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Sweep amarelo que entra no hover */
.diff-v2-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-v2-yellow) 0%, var(--hero-v2-blue-light, #1185ED) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.diff-v2-card > * { position: relative; z-index: 2; }

.diff-v2-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 36px 70px rgba(7,53,230,.28);
}
.diff-v2-card:hover::after { transform: scaleX(1); }

.diff-v2-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--hero-v2-yellow);
  letter-spacing: -0.04em;
  opacity: .9;
  -webkit-text-stroke: 1.5px var(--hero-v2-blue);
  transition: color .35s ease, opacity .35s ease, transform .4s cubic-bezier(.2,.7,.2,1),
              -webkit-text-stroke-color .35s ease;
}
.diff-v2-card:hover .diff-v2-num {
  color: var(--hero-v2-blue);
  opacity: 1;
  transform: scale(1.08) translateY(-2px);
  -webkit-text-stroke-color: transparent;
}

.diff-v2-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hero-v2-blue) 0%, var(--hero-v2-blue-card) 100%);
  color: var(--hero-v2-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(7,53,230,.25);
  transition: transform .5s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease,
              border-radius .4s ease;
}
.diff-v2-card:hover .diff-v2-icon {
  transform: rotate(-8deg) scale(1.08);
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(7,53,230,.4);
}
.diff-v2-icon i { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.diff-v2-card:hover .diff-v2-icon i { transform: scale(1.1); }
.diff-v2-card-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark, #19232B);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.diff-v2-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #5a6371;
  margin: 0;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .diff-v2 { padding: 70px 0 90px; }
  .diff-v2-container { padding: 0 24px; }
  .diff-v2-head { margin-bottom: 28px; }
  .diff-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 575.98px) {
  .diff-v2 { padding: 56px 0 70px; }
  .diff-v2-container { padding: 0 20px; }
  .diff-v2-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .diff-v2-title { font-size: clamp(30px, 8vw, 40px); }

  .diff-v2-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .diff-v2-card { padding: 32px 24px 26px; }
  .diff-v2-num { font-size: 48px; top: 14px; right: 20px; }
  .diff-v2-icon { width: 56px; height: 56px; font-size: 24px; border-radius: 16px; }
  .diff-v2-card-title { font-size: 18px; }
  .diff-v2-card-text { font-size: 14px; }

  .diff-v2-spark--1 { width: 26px; }
  .diff-v2-spark--2 { width: 20px; }
  .diff-v2-spark--3 { width: 32px; }
  .diff-v2-spark--4 { width: 22px; }
}

/* ============================================================
   ESTRUTURA LPV2
   ============================================================ */
.struct-v2 {
  position: relative;
  background: #f5f5f5;
  padding: 90px 0 100px;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.struct-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}
.struct-v2-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sparkles */
.struct-v2-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.struct-v2-spark--1 { width: 36px; top: 6%;  left: 48%; fill: var(--hero-v2-yellow); animation-delay: 0s; }
.struct-v2-spark--2 { width: 28px; top: 36%; left: 4%;  fill: var(--hero-v2-blue);   animation-delay: .6s; }
.struct-v2-spark--3 { width: 32px; bottom: 18%; left: 42%; fill: var(--hero-v2-yellow); animation-delay: 1.2s; }
.struct-v2-spark--4 { width: 24px; top: 60%; right: 6%; fill: var(--hero-v2-blue);   animation-delay: .9s; }

/* ── Cabeçalho: text + card grande ── */
.struct-v2-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 32px;
}

.struct-v2-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}
.struct-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dark, #19232B);
  margin-bottom: 22px;
  line-height: 1;
}
.struct-v2-eyebrow i { color: var(--hero-v2-blue); font-size: 16px; }
.struct-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark, #19232B);
  margin: 0 0 24px;
}
.struct-v2-title-word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
.struct-v2-title-accent {
  position: relative;
  display: inline-block;
  /* Base azul + brilho branco passando — mesmo padrão da hero */
  background-color: var(--hero-v2-blue);
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,.95) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-repeat: no-repeat;
  background-position: 150% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroV2Shine 3.5s linear infinite;
}
.struct-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -6px;
  height: 10px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: .9;
}
@media (prefers-reduced-motion: reduce) {
  .struct-v2-title-word { opacity: 1; transform: none; }
  .struct-v2-title-accent {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--hero-v2-blue);
  }
}
.struct-v2-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5260;
  margin: 0 0 14px;
}
.struct-v2-text:last-of-type { margin-bottom: 0; }

/* ── Card base ── */
.struct-v2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 24px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
  transition: transform .45s cubic-bezier(.2,.7,.2,1),
              box-shadow .45s ease;
  isolation: isolate;
}
.struct-v2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,53,230,.0) 0%, rgba(4,40,196,.45) 45%, rgba(4,40,196,.95) 100%);
  z-index: 1;
  transition: opacity .4s ease;
}
.struct-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px rgba(0,0,0,.28);
  color: #fff;
}
.struct-v2-card:hover::before {
  background: rgba(0,0,0,.50);
}

.struct-v2-card-content {
  position: relative;
  z-index: 2;
}
.struct-v2-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--hero-v2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.struct-v2-card-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: #fff;
}
.struct-v2-card-text {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  color: rgba(255,255,255,.85);
  max-width: 90%;
}
.struct-v2-card-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--hero-v2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.struct-v2-card:hover .struct-v2-card-arrow {
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
  transform: translateX(4px) rotate(-12deg);
}

/* Card grande (Laboratórios) */
.struct-v2-card--lg {
  min-height: 100%;
}
.struct-v2-card--lg .struct-v2-card-title { font-size: 28px; }

/* Grade dos demais cards */
.struct-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.struct-v2-grid .struct-v2-card { grid-column: span 2; }
.struct-v2-grid .struct-v2-card--wide { grid-column: span 3; }
.struct-v2-grid .struct-v2-card:nth-child(4) { grid-column: span 3; } /* Área infantil */

/* ── Banner de fechamento ── */
.struct-v2-banner {
  margin-top: 60px;
  padding: 24px 32px;
  border-radius: 22px;
  background: var(--hero-v2-blue);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 40px rgba(7,53,230,.22);
}
.struct-v2-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  color: var(--hero-v2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.struct-v2-banner-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.struct-v2-banner-text strong { color: var(--hero-v2-yellow); font-weight: 800; }

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  .struct-v2 { padding: 70px 0 80px; }
  .struct-v2-container { padding: 0 24px; }

  .struct-v2-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 22px;
  }
  .struct-v2-intro { max-width: 100%; }
  .struct-v2-card--lg { min-height: 320px; }

  .struct-v2-grid { gap: 18px; }
  .struct-v2-grid .struct-v2-card,
  .struct-v2-grid .struct-v2-card--wide,
  .struct-v2-grid .struct-v2-card:nth-child(4) { grid-column: span 3; }
}

@media (max-width: 575.98px) {
  .struct-v2 { padding: 56px 0 70px; }
  .struct-v2-container { padding: 0 20px; }

  .struct-v2-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .struct-v2-title { font-size: clamp(30px, 8vw, 40px); }
  .struct-v2-text { font-size: 15px; }

  .struct-v2-card { min-height: 240px; padding: 20px; }
  .struct-v2-card-title { font-size: 20px; }
  .struct-v2-card--lg .struct-v2-card-title { font-size: 24px; }

  .struct-v2-grid { grid-template-columns: 1fr; gap: 14px; }
  .struct-v2-grid .struct-v2-card,
  .struct-v2-grid .struct-v2-card--wide,
  .struct-v2-grid .struct-v2-card:nth-child(4) { grid-column: auto; }

  .struct-v2-banner {
    flex-direction: column;
    text-align: center;
    padding: 22px;
    gap: 14px;
    margin-top: 40px;
  }
  .struct-v2-banner-text { font-size: 16px; }

  .struct-v2-spark--1 { width: 24px; }
  .struct-v2-spark--2 { width: 20px; }
  .struct-v2-spark--3 { width: 22px; }
  .struct-v2-spark--4 { width: 18px; }
}

/* ============================================================
   MASCOTE FLUTUANTE LPV2
   ============================================================ */
.mascot {
  position: fixed;
  /* Lado direito = acima do botão WhatsApp; lado esquerdo = rente ao chão */
  bottom: 100px;
  right: 24px;
  width: 170px;
  height: auto;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease,
              bottom .8s cubic-bezier(.2,.7,.2,1),
              left .8s cubic-bezier(.2,.7,.2,1),
              right .8s cubic-bezier(.2,.7,.2,1),
              width .4s ease;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
}
.mascot.is-visible { opacity: 1; }
.mascot.is-left {
  right: auto;
  left: 24px;
  bottom: 24px;
  width: 140px;
}
.mascot.is-dragging { z-index: 9999; }

.mascot-inner {
  position: relative;
  width: 100%;
  animation: mascotIdle 4s ease-in-out infinite;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
}
.mascot.is-dragging .mascot-inner {
  animation-play-state: paused;
  cursor: grabbing;
}
.mascot-inner img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.mascot-pose {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(.92);
  /* Out: rápido, pra evitar sobreposição visível com a próxima pose */
  transition: opacity .12s ease, transform .12s ease;
  pointer-events: none;
}
.mascot-pose:first-child { position: relative; }
.mascot-pose.is-active {
  opacity: 1;
  transform: scale(1);
  /* In: suave, depois que a anterior já sumiu */
  transition: opacity .35s ease .1s, transform .45s cubic-bezier(.2,.7,.2,1) .1s;
}

@keyframes mascotIdle {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
@media (prefers-reduced-motion: reduce) {
  .mascot-inner { animation: none; }
}

/* Mobile: avatar menor no canto */
@media (max-width: 767.98px) {
  .mascot { width: 110px; bottom: 90px; right: 14px; }
  .mascot.is-left { left: 14px; bottom: 14px; width: 90px; }
}
@media (max-width: 480px) {
  .mascot { width: 92px; }
  .mascot.is-left { width: 78px; }
}

/* ============================================================
   ETAPAS LPV2 (Uma jornada completa de aprendizado)
   ============================================================ */
.etapas-v2 {
  position: relative;
  background: var(--hero-v2-blue);
  padding: 60px 0 0;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.etapas-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.etapas-v2-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sparkles brancos */
.etapas-v2-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  fill: #fff;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.etapas-v2-spark--1 { width: 64px; top: 38%; left: 44%; animation-delay: 0s; }
.etapas-v2-spark--2 { width: 28px; top: 52%; left: 35%; fill: var(--hero-v2-yellow); animation-delay: .9s; }
.etapas-v2-spark--3 { width: 48px; bottom: 18%; left: 4%; animation-delay: 1.4s; }

/* ── Grid principal ── */
.etapas-v2-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
}

/* ── Coluna esquerda ── */
.etapas-v2-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  align-self: stretch;
  z-index: 3;
}
.etapas-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 280px;
}
.etapas-v2-title-word {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.etapas-v2-title-accent {
  position: relative;
  display: inline-block;
}
.etapas-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 4%;
  bottom: -2px;
  height: 9px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: .9;
}
@media (prefers-reduced-motion: reduce) {
  .etapas-v2-title-word { opacity: 1; transform: none; }
}
.etapas-v2-professor {
  display: block;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-78%);
  width: 40%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.28));
  z-index: 2;
  pointer-events: none;
}

/* ── Coluna direita ── */
.etapas-v2-right {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  max-width: 420px;
  justify-self: start;
}
.etapas-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
.etapas-v2-eyebrow i {
  color: var(--hero-v2-yellow);
  font-size: 16px;
}

/* Card branco com o slider */
.etapas-v2-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
}

/* Tags amarelas (lápis decorativo + copo de lápis) */
.etapas-v2-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-v2-yellow);
  border-radius: 20px;
  z-index: 4;
  pointer-events: none;
}
.etapas-v2-tag img {
  display: block;
  width: 100%;
  height: auto;
}

/* Copo de lápis – canto superior direito do card (sem fundo amarelo) */
.etapas-v2-tag--cup {
  top: -85px;
  right: -34px;
  width: 130px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transform: rotate(6deg);
  animation: aboutV2Float 5.5s ease-in-out infinite;
}
.etapas-v2-tag--cup img {
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.32));
}

/* Lápis vermelho-azul – abaixo do título, no fluxo do .etapas-v2-left */
.etapas-v2-tag--pencil {
  position: relative;
  margin-top: 60px;
  width: 90px;
  height: 90px;
  padding: 0;
  border-radius: 20px;
  transform: rotate(-6deg);
  z-index: 4;
  animation: aboutV2Float 6s ease-in-out infinite;
  overflow: visible;
}
.etapas-v2-tag--pencil img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(8deg);
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.32));
}

.etapas-v2-swiper { overflow: hidden; border-radius: 14px; padding-bottom: 8px; }

.etapas-v2-slide {
  display: flex;
  flex-direction: column;
}
.etapas-v2-slide-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 16 / 8.5;
  background: #f5f5f5;
}
.etapas-v2-slide-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.etapas-v2-slide-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--dark, #19232B);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.etapas-v2-slide-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
}
.etapas-v2-slide-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--dark, #19232B);
  font-weight: 700;
  margin: 14px 0 0;
  padding-bottom: 4px;
}

/* Setas amarelas circulares nas LATERAIS do card */
.etapas-v2-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.etapas-v2-nav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}
.etapas-v2-nav--prev { left: -28px; }
.etapas-v2-nav--next { right: -28px; }
.etapas-v2-nav.swiper-button-disabled { opacity: .45; cursor: default; }

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  /* Mobile: ordem desejada
     1. Título "Uma jornada completa de aprendizado"
     2. Elemento do lápis (tag amarela)
     3. Eyebrow "ENSINO PARA CADA ETAPA"
     4. Card slider
     5. Imagem do professor
  */
  .etapas-v2 {
    padding: 56px 0 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  /* Container (grid) primeiro, professor depois */
  .etapas-v2-container { order: 1; padding: 0 24px; }
  .etapas-v2-professor {
    order: 2;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 78%;
    max-width: 420px;
    margin: 12px auto 0;
    display: block;
  }

  /* Sparkles reposicionados */
  .etapas-v2-spark--1 { width: 36px; top: 50%; left: 8%; }
  .etapas-v2-spark--2 { width: 20px; top: 16%; right: 8%; left: auto; }
  .etapas-v2-spark--3 { width: 28px; bottom: 18%; left: 6%; }

  /* Grid vira flex column: left (title + pencil) → right (eyebrow + card) */
  .etapas-v2-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  /* Coluna esquerda: título + tag de lápis */
  .etapas-v2-left {
    padding-top: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .etapas-v2-title {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(28px, 7vw, 38px);
  }
  .etapas-v2-tag--pencil {
    margin: 22px auto 0;
    width: 86px;
    height: 86px;
  }
  .etapas-v2-tag--pencil img { width: 150%; }

  /* Coluna direita: eyebrow + card */
  .etapas-v2-right {
    padding: 0;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    justify-self: center;
  }
  .etapas-v2-eyebrow { font-size: 12px; }
  .etapas-v2-card { padding: 18px 20px 24px; border-radius: 20px; }
  .etapas-v2-slide-title { font-size: 24px; padding-bottom: 8px; }
  .etapas-v2-slide-text { font-size: 14.5px; }

  /* Setas circulares menores */
  .etapas-v2-nav { width: 42px; height: 42px; font-size: 13px; }
  .etapas-v2-nav--prev { left: -18px; }
  .etapas-v2-nav--next { right: -18px; }

  /* Copo de lápis menor sobre o card */
  .etapas-v2-tag--cup {
    top: -42px;
    right: -10px;
    width: 90px;
  }
}

@media (max-width: 575.98px) {
  .etapas-v2 { padding: 44px 0 0; }
  .etapas-v2-container { padding: 0 18px; }
  .etapas-v2-grid { gap: 22px; }

  .etapas-v2-title { font-size: clamp(26px, 8vw, 34px); }
  .etapas-v2-tag--pencil { width: 76px; height: 76px; margin-top: 18px; }
  .etapas-v2-tag--pencil img { width: 145%; }

  .etapas-v2-card { padding: 16px 18px 22px; border-radius: 18px; }
  .etapas-v2-slide-title { font-size: 22px; }
  .etapas-v2-slide-text { font-size: 14px; }

  .etapas-v2-nav { width: 38px; height: 38px; font-size: 12px; }
  .etapas-v2-nav--prev { left: -14px; }
  .etapas-v2-nav--next { right: -14px; }

  .etapas-v2-tag--cup { width: 78px; top: -36px; right: -6px; }

  .etapas-v2-professor { width: 88%; max-width: 360px; margin-top: 8px; }

  .etapas-v2-spark--1 { width: 28px; }
  .etapas-v2-spark--2 { width: 18px; }
  .etapas-v2-spark--3 { width: 22px; }
}

/* ============================================================
   CTA + FORMULÁRIO LPV2 (#matricula)
   ============================================================ */
.cta-v2 {
  position: relative;
  background: var(--hero-v2-blue);
  padding: 90px 0 100px;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.cta-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.cta-v2-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sparkles */
.cta-v2-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.cta-v2-spark--1 { width: 44px; top: 14%; left: 6%; fill: var(--hero-v2-yellow); animation-delay: 0s; }
.cta-v2-spark--2 { width: 28px; top: 28%; left: 42%; fill: #fff; animation-delay: .8s; }
.cta-v2-spark--3 { width: 36px; bottom: 12%; right: 8%; fill: var(--hero-v2-yellow); animation-delay: 1.4s; }

/* Grid principal */
.cta-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

/* ── Coluna esquerda ── */
.cta-v2-left { max-width: 520px; color: #fff; }
.cta-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  line-height: 1;
}
.cta-v2-eyebrow i { color: var(--hero-v2-yellow); font-size: 16px; }
.cta-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.cta-v2-title-word { display: block; }
.cta-v2-title-accent {
  position: relative;
  display: inline-block;
  color: var(--hero-v2-yellow);
}
.cta-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 4%;
  bottom: -2px;
  height: 9px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  z-index: -1;
}
.cta-v2-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  margin: 0 0 30px;
}

/* Ações: WhatsApp + telefone */
.cta-v2-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-v2-btn-wa {
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
}
.cta-v2-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  color: var(--hero-v2-blue-deep);
}
.cta-v2-btn-wa i { font-size: 18px; }

.cta-v2-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.cta-v2-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: var(--hero-v2-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .3s ease;
}
.cta-v2-phone:hover .cta-v2-phone-icon { background: rgba(255,255,255,.2); }
.cta-v2-phone-info { display: flex; flex-direction: column; line-height: 1.2; }
.cta-v2-phone-info small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.7);
  margin-bottom: 2px;
}
.cta-v2-phone-info strong { font-size: 17px; color: #fff; font-weight: 800; }

/* ── Coluna direita: formulário ── */
.cta-v2-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
  position: relative;
}
.cta-v2-form-header { margin-bottom: 22px; }
.cta-v2-form-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--dark, #19232B);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.cta-v2-form-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
}
.cta-v2-form-sub {
  font-size: 14.5px;
  color: #5a6371;
  margin: 0;
  line-height: 1.5;
}

.cta-v2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-top: 8px;
}
.cta-v2-field { display: flex; flex-direction: column; }
.cta-v2-field--full { grid-column: 1 / -1; }
.cta-v2-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark, #19232B);
  margin-bottom: 6px;
}
.cta-v2-field input,
.cta-v2-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e3e6ec;
  border-radius: 12px;
  background: #f7f8fb;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--dark, #19232B);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  appearance: none;
}
.cta-v2-field input::placeholder { color: #98a0ad; }
.cta-v2-field input:focus,
.cta-v2-field select:focus {
  outline: none;
  border-color: var(--hero-v2-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,53,230,.08);
}
.cta-v2-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23556071'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.cta-v2-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  padding: 16px 22px;
  border: none;
  border-radius: 50px;
  background: var(--hero-v2-blue);
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta-v2-submit:hover {
  background: var(--hero-v2-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7,53,230,.35);
}
.cta-v2-submit i { font-size: 18px; color: #25D366; }

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  .cta-v2 { padding: 70px 0 80px; }
  .cta-v2-container { padding: 0 24px; }
  .cta-v2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-v2-left { max-width: 100%; text-align: center; margin: 0 auto; }
  .cta-v2-actions { justify-content: center; }
}

@media (max-width: 575.98px) {
  .cta-v2 { padding: 56px 0 70px; }
  .cta-v2-container { padding: 0 20px; }
  .cta-v2-title { font-size: clamp(30px, 8vw, 42px); }
  .cta-v2-text { font-size: 15px; }
  .cta-v2-eyebrow { font-size: 12px; }

  .cta-v2-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .cta-v2-btn { justify-content: center; }
  .cta-v2-phone { justify-content: center; }

  .cta-v2-form-card { padding: 24px 22px; border-radius: 20px; }
  .cta-v2-form { grid-template-columns: 1fr; }
  .cta-v2-form-title { font-size: 22px; }

  .cta-v2-spark--1 { width: 28px; }
  .cta-v2-spark--2 { width: 20px; }
  .cta-v2-spark--3 { width: 26px; }
}

/* ============================================================
   PROCESSO DE MATRÍCULA LPV2
   Fundo igual ao "Conheça Nossa Estrutura" (#f5f5f5 + textura)
   ============================================================ */
.proc-v2 {
  position: relative;
  background: #f5f5f5;
  padding: 80px 0 90px;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.proc-v2-texture {
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}
.proc-v2-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sparkles */
.proc-v2-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
  animation: aboutV2Twinkle 3.2s ease-in-out infinite;
}
.proc-v2-spark--1 { width: 34px; top: 14%; left: 6%; fill: var(--hero-v2-yellow); animation-delay: 0s; }
.proc-v2-spark--2 { width: 24px; top: 22%; right: 8%; fill: var(--hero-v2-blue); animation-delay: .7s; }
.proc-v2-spark--3 { width: 30px; bottom: 16%; left: 48%; fill: var(--hero-v2-yellow); animation-delay: 1.2s; }

/* Cabeçalho */
.proc-v2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.proc-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dark, #19232B);
  margin-bottom: 22px;
  line-height: 1;
}
.proc-v2-eyebrow i { color: var(--hero-v2-blue); font-size: 16px; }
.proc-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--dark, #19232B);
  letter-spacing: -0.02em;
  margin: 0;
}
.proc-v2-title-word { display: block; }
.proc-v2-title-accent {
  position: relative;
  display: inline-block;
  color: var(--hero-v2-blue);
}
.proc-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 4%;
  bottom: -4px;
  height: 10px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: .9;
}

/* Grid dos cards (ordered list para semântica de passos) */
.proc-v2-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
/* Linha tracejada centralizada nos cards */
.proc-v2-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  right: 8%;
  height: 3px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    to right,
    var(--hero-v2-blue) 0 10px,
    transparent 10px 20px
  );
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}


.proc-v2-step {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px 28px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease;
  isolation: isolate;
  overflow: hidden;
}
.proc-v2-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-v2-yellow) 0%, var(--hero-v2-blue) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.proc-v2-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 52px rgba(7,53,230,.18);
}
.proc-v2-step:hover::after { transform: scaleX(1); }

/* Número grande no topo */
.proc-v2-num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--hero-v2-yellow);
  letter-spacing: -0.04em;
  transition: color .35s ease, -webkit-text-stroke-color .35s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.proc-v2-step:hover .proc-v2-num {
  color: var(--hero-v2-blue);
  -webkit-text-stroke-color: transparent;
  transform: scale(1.08);
}

/* Ícone circular azul */
.proc-v2-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hero-v2-blue) 0%, var(--hero-v2-blue-card) 100%);
  color: var(--hero-v2-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(7,53,230,.25);
  transition: transform .5s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease;
}
.proc-v2-step:hover .proc-v2-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 16px 32px rgba(7,53,230,.4);
}

.proc-v2-step-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark, #19232B);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.proc-v2-step-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #5a6371;
  margin: 0;
}

/* Estado inicial para entrada GSAP */
.proc-v2-title-word {
  opacity: 0;
  transform: translateY(28px);
}
@media (prefers-reduced-motion: reduce) {
  .proc-v2-title-word { opacity: 1; transform: none; }
}

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  .proc-v2 { padding: 60px 0 70px; }
  .proc-v2-container { padding: 0 24px; }
  .proc-v2-head { margin-bottom: 36px; }
  .proc-v2-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .proc-v2-grid::before { display: none; }
}

@media (max-width: 575.98px) {
  .proc-v2 { padding: 50px 0 60px; }
  .proc-v2-container { padding: 0 20px; }
  .proc-v2-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .proc-v2-title { font-size: clamp(28px, 8vw, 38px); }
  .proc-v2-grid { grid-template-columns: 1fr; gap: 14px; }
  .proc-v2-step { padding: 26px 22px 22px; }
  .proc-v2-num { font-size: 38px; top: 14px; right: 18px; }
  .proc-v2-icon { width: 62px; height: 62px; font-size: 24px; margin-bottom: 18px; }
  .proc-v2-step-title { font-size: 18px; }
  .proc-v2-step-text { font-size: 14px; }
}

/* ============================================================
   DEPOIMENTOS LPV2 — cabeçalho no padrão visual + fade nas bordas
   ============================================================ */
/* Fade lateral nos cards da ponta esquerda e direita */
.depo-v2 .testimonial-slider {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  /* Compensa o corte deixando o slider respirar lateralmente */
  margin: 0 -16px;
  padding: 0 16px;
}
@media (max-width: 575.98px) {
  .depo-v2 .testimonial-slider {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
            mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
  }
}

.depo-v2-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.depo-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dark, #19232B);
  margin-bottom: 22px;
  line-height: 1;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
.depo-v2-eyebrow i { color: var(--hero-v2-blue); font-size: 16px; }

.depo-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--dark, #19232B);
  letter-spacing: -0.02em;
  margin: 0;
}
.depo-v2-title-word {
  display: block;
  opacity: 0;
  transform: translateY(28px);
}
.depo-v2-title-accent {
  position: relative;
  display: inline-block;
  color: var(--hero-v2-blue);
}
.depo-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 4%;
  bottom: -4px;
  height: 10px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: .9;
}
@media (prefers-reduced-motion: reduce) {
  .depo-v2-title-word { opacity: 1; transform: none; }
}

@media (max-width: 991.98px) {
  .depo-v2-head { margin-bottom: 36px; }
}
@media (max-width: 575.98px) {
  .depo-v2-eyebrow { font-size: 12px; margin-bottom: 16px; }
  .depo-v2-title { font-size: clamp(28px, 8vw, 38px); }
}

/* Poses específicas com tamanho maior */
.mascot[data-pose="estrutura"],
.mascot[data-pose="etapas"],
.mascot[data-pose="depoimentos"] {
  width: 210px;
}
.mascot[data-pose="estrutura"].is-left,
.mascot[data-pose="etapas"].is-left,
.mascot[data-pose="depoimentos"].is-left {
  width: 180px;
}

@media (max-width: 767.98px) {
  .mascot[data-pose="estrutura"],
  .mascot[data-pose="etapas"],
  .mascot[data-pose="depoimentos"] { width: 130px; }
  .mascot[data-pose="estrutura"].is-left,
  .mascot[data-pose="etapas"].is-left,
  .mascot[data-pose="depoimentos"].is-left { width: 110px; }
}
@media (max-width: 480px) {
  .mascot[data-pose="estrutura"],
  .mascot[data-pose="etapas"],
  .mascot[data-pose="depoimentos"] { width: 108px; }
  .mascot[data-pose="estrutura"].is-left,
  .mascot[data-pose="etapas"].is-left,
  .mascot[data-pose="depoimentos"].is-left { width: 94px; }
}

/* ============================================================
   LGPD Banner LPV2
   ============================================================ */
.lgpd-v2 {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(7,53,230,.22), 0 4px 12px rgba(0,0,0,.08);
  border: 1.5px solid rgba(7,53,230,.08);
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  /* entrada suave */
  animation: lgpdV2In .55s cubic-bezier(.2,.7,.2,1) both;
}
.lgpd-v2[hidden] { display: none; }

/* Barrinha amarela decorativa no topo */
.lgpd-v2::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-v2-yellow) 0%, var(--hero-v2-blue) 100%);
}

.lgpd-v2-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
}

.lgpd-v2-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hero-v2-yellow) 0%, #b9e000 100%);
  color: var(--hero-v2-blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 22px rgba(7,53,230,.18);
}

.lgpd-v2-content { flex: 1; min-width: 0; }

.lgpd-v2-title {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--dark, #19232B);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.lgpd-v2-title-accent {
  position: relative;
  display: inline-block;
  color: var(--hero-v2-blue);
}
.lgpd-v2-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 6px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: .85;
}
.lgpd-v2-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #5a6371;
  margin: 0;
}
.lgpd-v2-text a {
  color: var(--hero-v2-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lgpd-v2-text a:hover { color: var(--hero-v2-blue-deep); }

.lgpd-v2-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lgpd-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.lgpd-v2-btn--ghost {
  background: transparent;
  color: #6b7380;
  border: 1.5px solid #e1e4ea;
}
.lgpd-v2-btn--ghost:hover {
  background: #f3f4f8;
  color: var(--dark);
}
.lgpd-v2-btn--primary {
  background: var(--hero-v2-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7,53,230,.28);
}
.lgpd-v2-btn--primary:hover {
  background: var(--hero-v2-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7,53,230,.36);
}
.lgpd-v2-btn--primary i { font-size: 11px; }

@keyframes lgpdV2In {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .lgpd-v2 { animation: none; }
}

/* Tablet/mobile */
@media (max-width: 767.98px) {
  .lgpd-v2 { left: 14px; right: 14px; bottom: 14px; border-radius: 18px; }
  .lgpd-v2-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
    padding: 20px 20px 18px;
  }
  .lgpd-v2-icon { margin: 0 auto; width: 48px; height: 48px; font-size: 22px; }
  .lgpd-v2-title { font-size: 16px; }
  .lgpd-v2-text { font-size: 13px; }
  .lgpd-v2-actions { justify-content: center; }
  .lgpd-v2-btn { flex: 1; justify-content: center; padding: 12px 16px; }
}

/* ============================================================
   FOOTER LPV2 — talento sutil no padrão da identidade
   ============================================================ */
.footer-v2 {
  position: relative;
  background: #fff;
  padding: 60px 0 0;
  overflow: hidden;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
}
/* Faixa amarelo→azul no topo (mesmo padrão do LGPD) */
.footer-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-v2-yellow) 0%, var(--hero-v2-blue) 100%);
  z-index: 2;
}
/* Textura sutil de fundo (mesma das seções claras) */
.footer-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}
.footer-v2 .container { position: relative; z-index: 2; }

/* Logo + descrição */
.footer-v2 .footer-logo { margin-bottom: 18px; }
.footer-v2 p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5a6371;
}

/* Sociais circulares com hover azul→amarelo */
.footer-v2 .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px !important;
}
.footer-v2 .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f8;
  color: var(--hero-v2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform .25s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.footer-v2 .footer-social a:hover {
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7,53,230,.18);
}

/* Títulos das colunas */
.footer-v2 h5 {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--dark, #19232B);
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.footer-v2 h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 4px;
  background: var(--hero-v2-yellow);
  border-radius: 999px;
}

/* Lista de navegação */
.footer-v2 ul.list-unstyled li a {
  font-size: 14.5px;
  color: #5a6371;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
  display: inline-flex;
  align-items: center;
}
.footer-v2 ul.list-unstyled li a:hover {
  color: var(--hero-v2-blue);
  transform: translateX(4px);
}
.footer-v2 ul.list-unstyled li a i {
  color: var(--hero-v2-yellow) !important;
  font-size: 12px;
  transition: color .25s ease;
}
.footer-v2 ul.list-unstyled li a:hover i { color: var(--hero-v2-blue) !important; }

/* Contato */
.footer-v2 .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #5a6371;
}
.footer-v2 .footer-contact li i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(7,53,230,.08);
  color: var(--hero-v2-blue) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px !important;
  transition: background .3s ease, color .3s ease;
}
.footer-v2 .footer-contact li a {
  color: #5a6371;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-v2 .footer-contact li a:hover { color: var(--hero-v2-blue); }
.footer-v2 .footer-contact li:hover i {
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep) !important;
}

/* Footer bottom */
.footer-v2 .footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid #ebedf2;
  text-align: center;
  font-size: 13.5px;
  color: #6b7380;
}
.footer-v2 .footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease;
}
.footer-v2 .footer-bottom a:hover { color: var(--hero-v2-blue); }
.footer-v2 .footer-webformas {
  display: block;
  margin: 12px auto 0;
  width: max-content;
}
.footer-v2 .footer-webformas img { opacity: 1; }

@media (max-width: 767.98px) {
  .footer-v2 { padding: 48px 0 0; }
  .footer-v2 h5 { margin-bottom: 16px; }
  .footer-v2 .footer-bottom { margin-top: 30px; }
}

/* ============================================================
   PRELOADER LPV2
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-stage {
  position: relative;
  width: 140px;
  height: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.loader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.loader-track {
  fill: none;
  stroke: #f0f1f5;
  stroke-width: 3;
}
.loader-progress {
  fill: none;
  stroke: url(#loaderGrad);
  stroke-width: 3;
  stroke-linecap: round;
  /* circunferência: 2 * PI * 54 ≈ 339.29 */
  stroke-dasharray: 339.29;
  stroke-dashoffset: 339.29;
  transition: stroke-dashoffset .35s ease;
}

.loader-mascot {
  position: relative;
  z-index: 1;
  width: 72%;
  height: auto;
}

.loader-percent {
  font-family: 'Rubik', 'Rubik Fallback', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #98a0ad;
  letter-spacing: 0.06em;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .loader-stage { width: 110px; height: 110px; }
  .loader-percent { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mascot { animation: none; }
}

/* Bloqueia scroll do body durante o load */
body.is-loading { overflow: hidden; }

/* ============================================================
   BACK TO TOP LPV2
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--hero-v2-yellow);
  color: var(--hero-v2-blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 10px 22px rgba(7,53,230,.22);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, box-shadow .3s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #fff;
  box-shadow: 0 16px 30px rgba(7,53,230,.32);
  transform: translateY(-4px);
}

@media (max-width: 575.98px) {
  .back-to-top { bottom: 14px; left: 14px; width: 42px; height: 42px; font-size: 14px; }
}

/* ============================ PÁGINAS SECUNDÁRIAS (404, obrigado, política) ============================ */
body.sec-body { display: flex; flex-direction: column; min-height: 100vh; background: var(--light-bg-soft); }
body.sec-body > main { flex: 1 0 auto; }

.sec-nav {
  background: #fff;
  border-bottom: 1px solid rgba(31,58,147,.08);
  padding: 14px 0;
  position: relative;
  z-index: 5;
}
.sec-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sec-nav-brand img { height: 52px; width: auto; display: block; }
.sec-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--theme-color);
  color: #fff !important;
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--theme-color);
}
.sec-nav-back:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(253,163,27,.3);
}

.sec-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-2) 60%, #0f2470 100%);
  color: #fff;
  padding: 80px 20px 70px;
  text-align: center;
}
.sec-hero-texture {
  position: absolute; inset: 0;
  background: url('../img/textura-fundo.webp') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.sec-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.sec-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sec-hero-eyebrow i { color: var(--accent-color); }
.sec-hero-title {
  color: #fff;
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.sec-hero-title-accent { color: var(--accent-color); }
.sec-hero-subtitle {
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.sec-hero-code {
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 220px);
  line-height: 1;
  color: #fff;
  letter-spacing: -8px;
  margin: 0 0 8px;
  text-shadow: 0 10px 40px rgba(0,0,0,.25);
  display: block;
}
.sec-hero-code span { color: var(--accent-color); }
.sec-hero-icon {
  display: inline-flex;
  width: 88px; height: 88px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: 40px;
  margin-bottom: 22px;
  box-shadow: 0 14px 40px rgba(253,163,27,.5);
}
.sec-hero-spark {
  position: absolute;
  width: 26px; height: 26px;
  fill: var(--accent-color);
  opacity: .5;
  pointer-events: none;
  animation: sec-spark 3.5s ease-in-out infinite;
}
.sec-hero-spark--1 { top: 12%; left: 8%; }
.sec-hero-spark--2 { top: 20%; right: 12%; width: 18px; height: 18px; animation-delay: .8s; }
.sec-hero-spark--3 { bottom: 18%; left: 14%; width: 20px; height: 20px; animation-delay: 1.6s; }
.sec-hero-spark--4 { bottom: 12%; right: 8%; animation-delay: 2.2s; }
@keyframes sec-spark {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .4; }
  50%      { transform: scale(1.25) rotate(180deg); opacity: .85; }
}

.sec-hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.sec-btn-accent {
  background: var(--accent-color);
  color: #fff !important;
  border-color: var(--accent-color);
}
.sec-btn-accent:hover {
  background: var(--accent-color-dark);
  border-color: var(--accent-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(253,163,27,.35);
}
.sec-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.5);
}
.sec-btn-ghost:hover {
  background: #fff;
  color: var(--theme-color) !important;
  border-color: #fff;
  transform: translateY(-3px);
}
.sec-btn-wa {
  background: var(--whatsapp, #25D366);
  color: #fff !important;
  border-color: var(--whatsapp, #25D366);
}
.sec-btn-wa:hover {
  background: var(--whatsapp-dark, #1ebc59);
  border-color: var(--whatsapp-dark, #1ebc59);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37,211,102,.35);
}

.sec-content {
  padding: 70px 20px 90px;
  position: relative;
}
.sec-card {
  max-width: 960px;
  margin: -60px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 60px clamp(24px, 5vw, 70px);
  box-shadow: 0 30px 80px rgba(31,58,147,.12);
  position: relative;
  z-index: 3;
}
.sec-card h2 {
  color: var(--theme-color);
  font-family: 'Rubik', 'Rubik Fallback', 'Nunito Sans', 'Nunito Sans Fallback', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  margin: 42px 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent-color);
  display: inline-block;
}
.sec-card h2:first-of-type { margin-top: 0; }
.sec-card p,
.sec-card li {
  color: var(--body-text);
  line-height: 1.8;
  font-size: 16px;
}
.sec-card p { margin-bottom: 14px; }
.sec-card ul { padding-left: 22px; margin-bottom: 18px; }
.sec-card li { margin-bottom: 8px; }
.sec-card a {
  color: var(--theme-color-light);
  font-weight: 700;
  word-break: break-word;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: var(--transition);
}
.sec-card a:hover { color: var(--accent-color); border-color: var(--accent-color); }
.sec-meta {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(31,58,147,.1);
  font-size: 14px;
  color: #8892a3;
  text-align: center;
}

@media (max-width: 767.98px) {
  .sec-hero { padding: 60px 18px 54px; }
  .sec-nav-inner { flex-direction: row; }
  .sec-nav-back { padding: 10px 16px; font-size: 13px; }
  .sec-nav-back span.txt { display: none; }
  .sec-card { padding: 40px 22px; margin-top: -40px; border-radius: 18px; }
  .sec-hero-ctas .sec-btn { width: 100%; justify-content: center; }
}

