:root {
            --primary: #ffffff;
            --secondary: #000000;
            --accent: #ffffff;
            --header-height: 48px;

            /* corrrrrr nal aleterarrrrr*/
            --bg: #000000;
            --surface: rgba(255,255,255,0.08);
            --card-surface: rgba(255,255,255,0.06);
            --card-border: rgba(255,255,255,0.08);
            --text: #ffffff;
            --muted: #ffffff;
            --hero-text: #b0b0b0;
            --radius: 24px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            background: #080808;
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--header-height, 72px) + 12px);
        }

        body {
            font: 400 16px 'Montserrat', sans-serif;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 18px;
            padding-top: var(--header-height);
            background: #000000;
        }

        #home {
            scroll-margin-top: calc(var(--header-height, 72px) + 12px);
        }

        section,
        .hero {
            scroll-margin-top: calc(var(--header-height, 72px) + 12px);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        header {
            padding: 6px 1px;
            height: var(--header-height);
            min-height: var(--header-height);
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(18px);
            background: rgba(9, 9, 9, 0.92);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        /*para separar o menu do logo e do menu de navegação*/
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(24px, 4vw, 60px);
            height: 100%;
            width: min(1200px, 100%);
            margin: 0 auto;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            position: relative;
            z-index: 30;
            height: 100%;
        }

        .navbar-brand {
            flex-shrink: 0;
            margin-right: auto;
        }

        .navbar-brand .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.20em;
            text-transform: uppercase;
            color: #C8A96B;
            transform: translateY(3px);
        }

        .card-icon i {
            color: #ffffff;
            transition: transform 0.22s cubic-bezier(.2,.9,.2,1), filter 0.22s ease;
            filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
        }

        /* Estilo especial para os ícones dos cartões (Dia 1, Dia 2, Certificado) */
        .cards .card:nth-child(1) .card-icon,
        .cards .card:nth-child(2) .card-icon,
        .cards .card:nth-child(3) .card-icon {
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            box-shadow: 0 8px 30px rgba(0,0,0,0.06), inset 0 -6px 12px rgba(0,0,0,0.12);
            border-radius: 14px;
            transform: translateZ(0);
        }

        .cards .card:nth-child(1) .card-icon i,
        .cards .card:nth-child(2) .card-icon i,
        .cards .card:nth-child(3) .card-icon i {
            color: #ffffff;
            font-size: 1.6rem;
            transform: translateY(0);
        }

        .cards .card:nth-child(1) .card-icon:hover i,
        .cards .card:nth-child(2) .card-icon:hover i,
        .cards .card:nth-child(3) .card-icon:hover i {
            transform: translateY(-6px) rotate(-6deg) scale(1.06);
            filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45)) saturate(1.12);
        }
        /* Centralizar título do terceiro cartão (Certificado) ao lado do ícone */
        .cards .card:nth-child(3) .card-headings {
            text-align: center;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-menu li {
            display: inline-block;
        }

        .nav-link {
            position: relative;
            display: inline-block;
            font-size: 0.95rem;
            color: #f2e8c8;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #C8A96B;
            border-radius: 999px;
            transition: width 0.2s ease;
        }

        .nav-link:hover::after,
        .nav-link:focus::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link:focus,
        .nav-link.active {
            color: #C8A96B;
            transform: translateY(-1px);
        }
/* fefeefefefef*/
        .hero {
            min-height: calc(100vh - var(--header-height));
            max-width: 11800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(24px, 4vw, 36px);
            align-items: center;
            justify-items: center;
            align-content: center;
            text-align: center;
            padding: 0 clamp(16px, 4vw, 24px) 0;
        }

        .hero-content {
            max-width: min(680px, 100%);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 4vw, 4.2rem);
            margin: 0 0 16px;
            line-height: 1.05;
        }

        .hero p {
            color: var(--hero-text);
            font-size: clamp(1rem, 1.2vw, 1.1rem);
            max-width: 62ch;
            margin: 0 auto 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            width: min(740px, 100%);
        }

        .hero-actions .btn,
        .hero-actions .btn-secondary,
        .hero-actions .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 999px;
            font-weight: 700;
            flex: 1 1 180px;
            min-width: 180px;
        }

        .hero-actions .btn-primary {
            background: #25d366;
            color: #ffffff;
            border: none;
        }

        .hero-actions .btn-secondary {
            color: #f2e8c8;
            border: 1px solid #C8A96B;
            background: transparent;
            box-shadow: 0 14px 40px rgba(0,0,0,0.12);
            backdrop-filter: blur(10px);
        }

        .hero-actions .btn-secondary:hover,
        .hero-actions .btn-secondary:focus {
            background: #C8A96B;
            border-color: #C8A96B;
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 18px 50px rgba(200,169,107,0.25);
        }

        .nav-menu {
            justify-content: flex-end;
        }

        .nav-link {
            padding: 4px 0;
        }

        @media (max-width: 992px) {
            .navbar .container {
                justify-content: space-between;
                align-items: center;
                gap: 12px;
                flex-wrap: nowrap;
                width: 100%;
            }

            nav {
                justify-content: space-between;
                min-width: 0;
            }

            .navbar-brand {
                flex: 0 1 auto;
                margin-right: 0;
                min-width: 0;
            }

            .navbar-brand .logo {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                display: inline-block;
                max-width: calc(100vw - 84px);
            }

            .menu-toggle {
                display: flex;
                margin-left: auto;
                background: transparent;
                border: 0;
                outline: 0;
                box-shadow: none;
                border-radius: 14px;
                width: 38px;
                height: 38px;
                align-items: center;
                justify-content: center;
                flex: 0 0 auto;
                padding: 0;
                cursor: pointer;
                appearance: none;
                -webkit-appearance: none;
                color: #C8A96B;
            }

            .menu-toggle:hover,
            .menu-toggle:focus,
            .menu-toggle:active {
                border: 0;
                outline: 0;
                box-shadow: none;
            }

            .menu-toggle span {
                width: 18px;
                height: 2px;
                background: currentColor;
                border-radius: 999px;
            }

            .nav-menu {
                display: none;
                position: fixed;
                left: -100%;
                top: var(--header-height);
                width: 100%;
                max-width: 100%;
                height: calc(100dvh - var(--header-height));
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                padding: 24px 20px 40px;
                gap: 6px;
                transition: left 0.28s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
                display: flex;
            }

            .nav-menu li {
                display: block;
                width: 100%;
            }

            .nav-menu .nav-link {
                display: block;
                width: 100%;
                padding: 16px 18px;
                color: #C8A96B;
                font-size: 1rem;
                text-align: center;
            }

            .nav-menu .nav-link:hover,
            .nav-menu .nav-link:focus {
                color: #f2e8c8;
                background: rgba(200,169,107,0.12);
            }

            .hero {
                padding: 40px 18px 30px;
            }

            .hero-actions {
                width: 100%;
                gap: 14px;
            }

            .hero-actions .btn,
            .hero-actions .btn-secondary,
            .hero-actions .btn-primary {
                min-width: 0;
                flex: 1 1 100%;
            }

            .grid-section {
                padding: 22px 18px 48px;
            }

            .cards {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }

            .hero-card,
            .card,
            .highlight-box,
            .testimonial-card,
            .faq-item {
                padding: 20px;
            }
        }

        .btn-primary,
        .btn-whatsapp,
        .whatsapp-float {
            background: #25d366 !important;
            color: #ffffff !important;
            border-color: #25d366 !important;
        }

        .whatsapp-float {
            position: fixed;
            right: 16px;
            bottom: 22px;
            z-index: 999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: #ffffff;
            border-radius: 50%;
            box-shadow: 0 18px 40px rgba(37, 211, 102, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 48px rgba(37, 211, 102, 0.30);
        }

        .hero-card {
            padding: 32px;
            border-radius: var(--radius);
            background: rgba(255, 254, 254, 0.06);
            border: 1px solid rgba(255,255,255,0.14);
            backdrop-filter: blur(22px);
            display: grid;
            gap: 18px;
        }

        .hero-card span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 20px;
            background: rgba(255,255,255,0.08);
            color: #ffffff;
            text-align: center;
        }

        .hero-card h2 {
            margin: 0;
            font-size: 1.6rem;
        }

        .hero-card strong {
            font-size: 2.8rem;
            display: block;
            margin-top: 12px;
            color: #fff;
        }

        .hero-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
        }

        .hero-card li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #ffffff;
            line-height: 1.5;
        }

        .hero-card li::before {
            content: '✓';
            color: #ffffff;
            font-weight: 700;
            margin-top: 1px;
        }

        .grid-section {
            max-width: 1180px;
            margin: 0 auto;
            padding: clamp(24px, 4vw, 56px) clamp(18px, 4vw, 24px) clamp(40px, 6vw, 60px);
            display: grid;
            gap: clamp(20px, 3vw, 32px);
        }

        .section-title {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 14px;
            margin: 0 auto 16px;
            color: #00fffb;
            width: min(100%, 900px);
        }

        .section-title::before,
        .section-title::after {
            content: '';
            display: block;
            flex: 1 1 0;
            min-width: 52px;
            height: 2px;
            background: #C8A96B;
            align-self: center;
            margin: 0;
        }

        .section-title::after {
            margin-left: 0;
        }

        #programa > div {
            text-align: center;
        }

        #beneficios > div,
        #beneficios h2,
        #beneficios p,
        #bonus > div,
        #bonus h2,
        #bonus p {
            text-align: center;
        }

        #faq h2 {
            text-align: center;
        }

        .cards {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        #bonus .cards {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .card {
            background: var(--card-surface);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 22px;
            min-height: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: center;
            text-align: center;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        @media (max-width: 980px) {
            #bonus .cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            #bonus .cards {
                grid-template-columns: 1fr;
            }
        }

        #bonus .card {
            min-height: 220px;
            padding: 12px;
            justify-content: center;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-6px);
            background: rgba(55, 55, 55, 0.189);
            border-color: #C8A96B;
            box-shadow: 0 18px 40px rgba(255,255,255,0.08);
        }

        .card-top {
            display: flex;
            align-items: center;
            gap: 18px;
            justify-content: center;
            width: 100%;
        }

        .card-headings {
            display: grid;
            gap: 6px;
            text-align: center;
            justify-items: center;
            width: 100%;
        }

        .card-image img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .card-icon {
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            color: #ffffff;
            font-size: 1.5rem;
            line-height: 1;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
        }

        .card-icon i {
            color: #ffffff;
        }

        /* Garantir que o ícone do primeiro cartão (Dia 1) fique branco */
        .cards .card:first-child .card-icon i {
            color: #ffffff !important;
        }

        .card h3 {
            margin: 0;
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .card p {
            margin: 0;
            color: #ffffff;
        }

        .checklist {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .checklist li {
            padding-left: 24px;
            position: relative;
            color: #ffffff;
            line-height: 1.6;
        }

        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #ffffff !important;
            font-weight: 700;
        }

        .highlight-box {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(200,169,106,0.12);
            border-radius: 36px;
            padding: clamp(24px, 3vw, 32px);
            display: grid;
            gap: 18px;
            place-items: center;
            text-align: center;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            overflow: hidden;
        }

        .highlight-box:hover {
            transform: translateY(-4px);
            border-color: #C8A96A;
            box-shadow: 0 18px 40px rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.12);
        }

        .highlight-box > * {
            width: 100%;
            max-width: 760px;
        }

        .highlight-box strong {
            text-align: center;
            margin: 0;
            
            font-size: clamp(1.9rem, 3vw, 2.4rem);
            color: #00fffb;
        }

        .highlight-box p {
            text-align: center;
            margin: 0;
            font-size: clamp(1.4rem, 2.5vw, 1.65rem);
            line-height: 1.6;
        }

        .highlight-box ul {
            text-align: center;
            margin: 0 auto;
            padding-left: 0;
            color: #ffffff;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .highlight-box .btn {
            margin: 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 10px;
        }

        .highlight-box li {
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 720px;
            font-size: 1.4rem;
            line-height: 1.2;
        }

        .highlight-box li {
            margin-bottom: 10px;
        }

        .testimonial-section > div {
            text-align: center;
        }

        .faq {
            display: grid;
            gap: 18px;
        }

        .faq-item {
            background: var(--card-surface);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 22px;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        .faq-item:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.12);
            border-color: #C8A96B;
            box-shadow: 0 18px 40px rgba(255,255,255,0.08);
        }

        .faq-item h4 {
            margin: 0 0 10px;
            text-align: center;
        }

        .faq-item p {
            margin: 0;
            text-align: center;
        }

        .testimonial {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .testimonial-card {
            background: var(--card-surface);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 24px;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.12);
            border-color: #C8A96B;
            box-shadow: 0 18px 40px rgba(255,255,255,0.08);
        }

        .testimonial-card p {
            margin: 0 0 16px;
            color: #ffffff;
        }

        .testimonial-card strong {
            display: block;
            color: #fff;
        }

        .footer {
            padding: 32px 24px 40px;
            max-width: 11900px;
            margin: 0 auto;
            border-top: 1px solid rgba(255,255,255,0.14);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            color: #ffffff;
            background: rgba(255,255,255,0.02);
            border-radius: 28px;
        }

        .footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
        }

        .footer a {
            color: #ffffff;
            opacity: 0.78;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

        .footer a:hover {
            color: #ffffff;
            opacity: 1;
        }

        .footer small {
            color: #ffffff;
            opacity: 0.68;
            margin: 0;
        }

        .hero-subtitle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin: 0;
            color: #ffffff;
        }

        .hero-subtitle-bullet {
            display: inline-block;
            line-height: 1;
        }

        .mobile-only {
            display: block;
        }

        @media (max-width: 900px) {
            .hero {
                padding-top: 56px;
            }

            nav {
                justify-content: flex-end;
            }

            .hero-actions {
                gap: 14px;
            }

            .hero-card {
                margin-top: 20px;
            }
        }

        @media (max-width: 720px) {
            :root {
                --header-height: 50px;
            }

            header {
                padding: 1px 2px;
                height: var(--header-height);
                min-height: var(--header-height);
            }

            body {
                padding-top: var(--header-height);
            }

            .navbar .container {
                gap: 12px;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            nav {
                justify-content: space-between;
            }

            .navbar-brand {
                margin-right: 0;
                min-width: 0;
            }

            .navbar-brand .logo {
                font-size: 1.2rem;
                letter-spacing: 0.12em;
            }

            .hero {
                gap: 24px;
                padding: 36px 16px 36px;
                min-height: auto;
                text-align: center;
                justify-items: center;
                align-items: center;
            }

            .hero h1 {
                font-size: clamp(1.9rem, 8vw, 2.6rem);
            }

            .hero p {
                font-size: 0.98rem;
                margin-bottom: 22px;
                max-width: 100%;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .hero-actions .btn,
            .hero-actions .btn-secondary,
            .hero-actions .btn-primary {
                width: 100%;
                min-width: 0;
            }

            .grid-section {
                padding: 18px 16px 50px;
            }

            .section-title::before,
            .section-title::after {
                min-width: 40px;
            }

            .card {
                padding: 20px;
                min-height: auto;
            }

            .card-icon {
                width: 52px;
                height: 52px;
                font-size: 1.2rem;
            }

            .card h3 {
                font-size: 1.4rem;
            }

            .cards.schedule-cards .checklist li {
                font-size: 1rem;
            }

            .card p,
            .testimonial-card p,
            .faq-item p {
                font-size: 0.95rem;
            }

            /* Aumenta um pouco o texto do parágrafo dentro do CTA apenas em mobile */
            .highlight-box p {
                font-size: 1.05rem;
            }

            /* Diminui um pouco o tamanho da lista dentro do destaque em mobile */
            .highlight-box li {
                font-size: 1.05rem;
            }

            .highlight-box {
                padding: 22px 16px;
            }

            .testimonial {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 28px 18px 32px;
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .footer .footer-links {
                justify-content: center;
                width: 100%;
            }

            .footer small {
                width: 100%;
                text-align: center;
            }

            .hero-subtitle {
                display: flex;
                flex-direction: column;
                gap: 4px;
                margin-top: 12px;
                color: #ffffff;
                font-size: 0.95rem;
            }

            .hero-subtitle-bullet {
                display: none;
            }

            .hero-subtitle-location {
                display: block;
            }

            .mobile-only {
                display: block;
                margin-top: 12px;
                color: #ffffff;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 560px) {
            .hero {
                padding: 28px 14px 30px;
            }

            .hero h1 {
                font-size: clamp(1.8rem, 9vw, 2.3rem);
            }

            .hero-actions {
                gap: 10px;
            }

            .grid-section {
                padding: 18px 14px 40px;
            }

            .section-title {
                gap: 10px;
            }

            .highlight-box strong {
                font-size: clamp(1.7rem, 6vw, 2rem);
            }

            .footer {
                padding: 24px 14px 28px;
            }
        }