
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
/* ===== NOISE OVERLAY ===== */
.noise {
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    opacity: 0.9;
    top: 0;
    left: 0;
    overflow: hidden;
    background-image: url("assets/noise.png");
    background-repeat: repeat;
    mix-blend-mode: screen;
    z-index: 9999;
}

/* ===== DOT PATTERN OVERLAY ===== */
.padrao-pontos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 7 7' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.125' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

/* ==================== FONT FACE ==================== */
@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk-Regular.woff2') format('woff2'),
         url('fonts/HankenGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk-SemiBold.woff2') format('woff2'),
         url('fonts/HankenGrotesk-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Tipografia */
    --font-primary: 'Hanken Grotesk', sans-serif;
    --fw-regular: 400;
    --fw-semibold: 600;

    /* Escala tipográfica */
    --text-h1: 56px;
    --text-h2: 48px;
    --text-h3: 40px;
    --text-h4: 32px;
    --text-h5: 24px;
    --text-h6: 20px;
    --text-p1: 20px;
    --text-p2: 16px;
    --text-btn: 20px;
    --text-tag: 16px;
    --line-height: 1.4em;        /* textos, tags, botões */
    --line-height-title: 1.1em;  /* títulos: h1 → h6 */

    /* Fundos escuros */
    --dark-bg-1: #1d1f22;
    --dark-bg-2: #0A0B0E;
    --dark-bg-3: #131418;
    --dark-bg-4: #17171a;

    /* Texto dark */
    --dark-title: #F9FAFB;
    --dark-text: #A3A0AE;

    /* Fundos claros */
    --light-bg-1: #F2F2F2;
    --light-bg-2: #F9FAFB;

    /* Texto light */
    --light-text: #5D6368;

    /* Branco utilitário */
    --white: #FFFFFF;

    /* Grid */
    --container-max: 1280px;
    --container-padding: 24px;
    --section-padding-y: 120px;
    --section-padding-y-mobile: 40px;

    /* Gradient background animation */
    --color-bg1: #0A0B0E;
    --color-bg2: #131418;
    --color1: 218, 27, 146;
    --color2: 244, 142, 255;
    --color3: 194, 218, 247;
    --color4: 255, 87, 192;
    --color5: 47, 70, 228;
    --color-interactive: 221, 43, 162;
    --circle-size: 80%;
    --blending: hard-light;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== BASE ==================== */
html {
    font-size: 18px;
    letter-spacing: -0.02em;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    background-color: var(--dark-bg-2);
    color: var(--dark-text);
    line-height: var(--line-height);
    overflow-x: hidden;
    padding-top: 44px; /* urgency bar fixa */
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.grad2 {
    background: #CFD7E4;
background: radial-gradient(circle farthest-side at right center, #CFD7E4 0%, #FFFFFF 30%, #FFFFFF 69%, #CFD7E4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== NOISE OVERLAY ==================== */
.noise {
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    opacity: 0.3;
    top: 0;
    left: 0;
    overflow: hidden;
    background-image: url("assets/noise.png");
    background-repeat: repeat;
    z-index: 1;
}

/* ==================== GRADIENT BACKGROUND ANIMATION ==================== */
@keyframes moveInCircle {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes moveVertical {
    0%   { transform: translateY(-50%); }
    50%  { transform: translateY(50%); }
    100% { transform: translateY(-50%); }
}

@keyframes moveHorizontal {
    0%   { transform: translateX(-50%) translateY(-10%); }
    50%  { transform: translateX(50%) translateY(10%); }
    100% { transform: translateX(-50%) translateY(-10%); }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.scroll-left {
    opacity: 0;
    filter: blur(10px);
    transition: 0.8s all;
    transform: translate(-30px, 0);
}

.scroll-right {
    opacity: 0;
    filter: blur(10px);
    transition: 0.8s all;
    transform: translate(30px, 0);
}

.scroll-bottom {
    opacity: 0;
    transition: 0.4s all;
    transform: translate(0, 30px);
}

.scroll-top {
    opacity: 0;
    filter: blur(10px);
    transition: 0.8s all;
    transform: translate(0, -30px);
}

.ativo {
    opacity: 1;
    filter: blur(0);
    transform: translate(0);
}

/* ==================== SHARED: TAG / BADGE ==================== */
.tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    border-radius: 73px;
    border: 1px solid #28354B;
    background: linear-gradient(180deg, #0A0B0E 0%, #182231 100%);
    box-shadow: 0 0 22px 0 #212C3E inset;
    font-weight: var(--fw-regular);
    font-size: var(--text-tag);
    color: var(--dark-title);
    padding: 8px 18px;
    line-height: var(--line-height);
}

.tag-gradient-text {
    background: linear-gradient(to right, #C39B5C 0%, #DAB578 25%, #B47424 50%, #DBB576 75%, #B47424 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--fw-semibold);
}

/* ==================== SHARED: CTA BUTTON ==================== */
.cta-button-wrapper {
    display: inline-block;
    border: 1px solid #FE9EF2;
    border-radius: 79px;
    padding: 4px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 79px;
    background: linear-gradient(105deg, #DA1B92 4.96%, #F48EFF 117.5%);
    box-shadow: 0 0 25.1px 0 #DD2BA2, 0 0 11.6px 0 #FE9EF2 inset;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: var(--fw-semibold);
    font-size: var(--text-btn);
    letter-spacing: -0.02em;
    line-height: var(--line-height);
    border: none;
    cursor: pointer;
    padding: 16px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    color: #000000;
    box-shadow: 0 0 40px 0 #DD2BA2, 0 0 20px 0 #FE9EF2 inset;
}

/* ==================== HIGHLIGHT / GRADIENT TEXT ==================== */
.text-red {
    color: #D32F2F;
}

.grad {
    background: linear-gradient(91deg, #C2DAF7 -9.12%, #FF57C0 42.96%, #2F46E4 107.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-text {
    background: #C39B5C;
    background: linear-gradient(to right, #C39B5C 0%, #DAB578 25%, #B47424 50%, #DBB576 75%, #B47424 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== SECTION DIVIDER ==================== */
/*
   Separador entre seções: glow centralizado em cima e em baixo da linha.
   Uso: <div class="section-divider"></div> entre duas <section>.
   A cor de fundo deve combinar com a seção que o contém (ou ser transparente).
*/
.section-divider {
    position: relative;
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.section-divider::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 250px);
    width: 500px;
    height: 40px;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(
        90deg,
        transparent 0%,
        rgba(195, 155, 92, 0.55) 50%,
        transparent 100%
    );
    border-image-slice: 1;
    background: radial-gradient(
        50% 100% at 50% 100%,
        rgba(195, 155, 92, 0.12) 0%,
        transparent 100%
    );
    z-index: 0;
}

.section-divider::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 500px);
    width: 1000px;
    height: 80px;
    border-top: 1px solid;
    border-image-source: linear-gradient(
        90deg,
        transparent 0%,
        rgba(195, 155, 92, 0.55) 50%,
        transparent 100%
    );
    border-image-slice: 1;
    background: radial-gradient(
        43.9% 100% at 50% 0%,
        rgba(195, 155, 92, 0.18) 0%,
        transparent 100%
    );
    z-index: 0;
}

/* ==================== HEADLINE LINE-HEIGHT GLOBAL ==================== */
h1, h2, h3, h4, h5, h6,
[class*="__title"],
[class*="__heading"],
[class*="__question"] {
    line-height: var(--line-height-title);
}

/* ==================== URGENCY BAR ==================== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #E86A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px var(--container-padding);
}

.urgency-bar__text {
    font-family: var(--font-primary);
    font-weight: var(--fw-semibold);
    font-size: var(--text-p1);
    color: var(--white);
    line-height: var(--line-height);
    text-align: center;
    text-wrap:balance;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    background-color: var(--dark-bg-2);
    background-image: url("assets/hero-bg.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1;
}

/* Fake Nav */
.hero__nav-bar {
    width: 100%;
    padding: 32px 0 24px;
    margin-bottom: 40px;
}

.hero__nav {
    max-width: 1550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__nav-logo {
    height: 56px;
    width: auto;
    filter: saturate(0) brightness(2.5);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: 28px;
    margin-bottom: 48px;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.hero__title-main {
    display: block;
    font-size: var(--text-h1);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
    text-wrap:balance;

}

.hero__title-question {
    display: block;
    font-size: var(--text-h3);
    font-weight: var(--fw-regular);
    color: var(--dark-title);
    line-height: var(--line-height-title);
    text-wrap: balance;
}

.hero__subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    max-width: 820px;
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero__subtitle-base {
    display: block;
}

.hero__subtitle-highlight {
    display: inline-block;
    max-width: 760px;
    padding: 14px 20px;
    border: 1px solid rgba(195, 155, 92, 0.22);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(195, 155, 92, 0.1) 0%, rgba(180, 116, 36, 0.05) 100%);
    color: var(--dark-title);
    font-weight: var(--fw-semibold);
    box-shadow: 0 0 28px rgba(195, 155, 92, 0.08);
}

/* VSL container */
.hero__vsl {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    margin-bottom: -80px;
}

/* VSL wrapper: box com borda + sombra animada */
@keyframes vsl-pulse {
    0%, 100% {
        box-shadow:
            0 0 40px 0 rgba(180, 116, 36, 0.18),
            0 0 80px 0 rgba(219, 181, 118, 0.07);
    }
    50% {
        box-shadow:
            0 0 60px 0 rgba(180, 116, 36, 0.32),
            0 0 120px 0 rgba(219, 181, 118, 0.13);
    }
}

.hero__vsl-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 16px;
    border: 1px solid rgba(195, 155, 92, 0.25);
    padding: 7px;
    background-color: #1A1D2420;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: vsl-pulse 5s ease-in-out infinite;
    overflow: hidden;
    z-index: 2;
}

/* Border-radius para o vídeo interno */
.hero__vsl-wrapper > div {
    border-radius: 14px;
    overflow: hidden;
}

.hero__vsl-wrapper iframe {
    border-radius: 14px;
}

/* Caso o player Panda use a classe .plyr__video internamente */
.plyr__video {
    border-radius: 14px;
    overflow: hidden;
}

/* ==================== HERO TRUST ==================== */
.hero-trust {
    position: relative;
    background-color: var(--dark-bg-3);
    background-image: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(195, 155, 92, 0.07) 0%, transparent 70%);
    padding-top: calc(30px + 72px); /* acomoda bleed do VSL + respiro */
    padding-bottom: 80px;
}

.hero-trust__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 var(--container-padding);
}

.hero-trust__mockup {
    z-index: 500;
    margin-top: -20px;
    margin-left: -40px;
    margin-bottom:-40px;
    width: 380px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(195, 155, 92, 0.12));
}

.hero-trust__price-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
   
}

.hero-trust__price-label {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.hero-trust__price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: linear-gradient(to right, #259D5F 0%, #3ED65F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-trust__price-sm {
    font-size: var(--text-h4);
    font-weight: var(--fw-semibold);
    line-height: 1;
}

.hero-trust__price-lg {
    font-size: var(--text-h1);
    font-weight: var(--fw-semibold);
    line-height: 1;
}


/* ==================== QUALIFICAÇÃO SECTION ==================== */
.qual {
    background-color: var(--dark-bg-2);
    padding: 120px 0 20px;
}

.qual__container {
    max-width: 810px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
}

.qual__eyebrow {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: 1.2;
    max-width: 640px;
}

.qual__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qual__item {
    display: block;
}

.qual__checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: default;
    text-align: left;
    transition: border-color 0.25s ease, background 0.25s ease;
    font-family: var(--font-primary, sans-serif);
    pointer-events: none;
}

.qual__checkbox:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.qual__checkbox[aria-pressed="true"] {
    border-color: var(--qual-border, rgba(195, 155, 92, 0.6));
    background: var(--qual-bg, rgba(195, 155, 92, 0.08));
    transition: border-color 0.4s ease, background 0.4s ease;
}

.qual__item:not(.qual__item--highlight) .qual__checkbox[aria-pressed="true"] {
    border-color: rgba(220, 50, 30, 0.8);
    background: linear-gradient(180deg, rgba(64, 22, 18, 0.62) 0%, rgba(34, 12, 10, 0.74) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 110, 87, 0.08);
}

.qual__item--highlight .qual__checkbox[aria-pressed="true"] {
    border-color: rgba(62, 181, 108, 0.85);
    background: linear-gradient(180deg, rgba(20, 63, 35, 0.55) 0%, rgba(9, 28, 17, 0.6) 100%);
    box-shadow: inset 0 0 0 1px rgba(91, 222, 142, 0.12);
}

/* level 1 — 1-2 marcados: gold */
#qualList[data-level="1"] {
    --qual-border: rgba(195, 155, 92, 0.6);
    --qual-bg: rgba(195, 155, 92, 0.08);
}

/* level 2 — 3-4 marcados: âmbar */
#qualList[data-level="2"] {
    --qual-border: rgba(220, 140, 40, 0.7);
    --qual-bg: rgba(220, 140, 40, 0.10);
}

/* level 3 — 5-6 marcados: laranja */
#qualList[data-level="3"] {
    --qual-border: rgba(232, 100, 28, 0.75);
    --qual-bg: rgba(232, 100, 28, 0.11);
}

/* level 4 — 7 marcados: vermelho-fogo */
#qualList[data-level="4"] {
    --qual-border: rgba(220, 50, 30, 0.8);
    --qual-bg: rgba(220, 50, 30, 0.12);
}

.qual__checkbox-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.qual__fire {
    width: 46px;
    height: 46px;
    margin: -12px 0 0 -7px;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    transition: opacity 0.2s ease;
}

.qual__fire--money {
    width: 28px;
    height: 28px;
    margin: 0;
}

.qual__checkbox[aria-pressed="true"] .qual__fire {
    opacity: 1;
}

.qual__checkbox-icon::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    transition: opacity 0.2s ease;
}

.qual__checkbox[aria-pressed="true"] .qual__checkbox-icon::before {
    opacity: 0;
}

.qual__checkbox-text {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    transition: color 0.25s ease;
}

.qual__checkbox[aria-pressed="true"] .qual__checkbox-text {
    color: var(--dark-title);
    font-weight: var(--fw-semibold);
}

.qual__item--highlight .qual__checkbox[aria-pressed="true"] .qual__checkbox-text {
    color: #F2FFF4;
}

.qual__message {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    pointer-events: none;
}

.qual__message > * {
    overflow: hidden;
}

.qual__message.is-visible {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 24px;
    pointer-events: auto;
    pointer-events: auto;
}

.qual__message-text {
    text-wrap: balance;
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height);
    border-left: 3px solid #3EB56C;
    padding: 16px 20px;
    background: rgba(62, 181, 108, 0.08);
    border-radius: 0 10px 10px 0;
}

.qual__footer {
    margin-top: 48px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qual__footer-title {
    font-size: var(--text-h3);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: 1.3;
    margin-bottom: 12px;
}

.qual__footer-subtitle {
    text-wrap: balance;
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-bottom: 20px;
}

.qual__footer-p1 {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.qual__scroll-indicator {
    margin-top: 20px;
    width: 3px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.qual__scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transform-origin: top center;
    animation: qual-scroll-line 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes qual-scroll-line {
    0%   { transform: scaleY(0); transform-origin: top center; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top center; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom center; }
    100% { transform: scaleY(0); transform-origin: bottom center; opacity: 0.3; }
}

@media (max-width: 767px) {
    .hero-trust__inner {
        flex-direction: column;
        gap: 0;
    }

    .hero-trust__price-block {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .hero-trust__mockup {
        order: 2;
        width: 100%;
        margin: 0 0 -40px 0;
    }

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

    .qual__eyebrow {
        font-size: var(--text-h3);
    }

    .qual {
        padding: 16% 0;
    }
}

/* ==================== THREE PILLARS SECTION ==================== */
.three-pillars {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: var(--section-padding-y) 0;
}

.three-pillars__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header */
.three-pillars__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.three-pillars__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
    max-width: 760px;
}

.three-pillars__subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-semibold);
    line-height: var(--line-height);
}

.three-pillars__footer {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    text-align: center;
    max-width: 680px;
    opacity: 0.7;
}

/* Cards grid — 3 columns (row 1) */
.three-pillars__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Cards grid — 2 columns centered (row 2) */
.three-pillars__cards--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc((100% - 20px) * 2 / 3 + 20px);
}

/* Pillar Card */
.pillar-card {
    background: linear-gradient(180deg, rgb(25 26 31) 0%, #0E1118 100%);
    box-shadow: 0 0 32px 0 #0A0C12 inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(195, 155, 92, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 0 32px 0 #0A0C12 inset, 0 8px 32px rgba(195, 155, 92, 0.08);
}

/* Icon wrapper — spacing above circle */
.pillar-card__icon-wrap {
    padding: 28px 28px 0;
    flex-shrink: 0;
}

/* Icon circle with gold border + shadow */
.pillar-card__icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(195, 155, 92, 0.45);
    box-shadow:
        0 0 0 4px rgba(195, 155, 92, 0.07),
        0 4px 16px rgba(195, 155, 92, 0.18),
        0 0 24px rgba(195, 155, 92, 0.10) inset;
    background: linear-gradient(145deg, rgba(195, 155, 92, 0.12) 0%, rgba(14, 17, 24, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-card__icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Body — conteúdo textual */
.pillar-card__body {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pillar-card__title {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.pillar-card__description {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-top: 4px;
}



/* ==================== ORAYON ACADEMY ==================== */
.academy {
        background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Header centralizado */
.academy__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    z-index: 2;
}

.academy__header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 720px;
}

.academy__header-left h2, .academy__header-left p {
    text-wrap: balance;
}

.academy__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
}

.academy__subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

/* ===== TIMELINE (TRILHAS) ===== */
.trails__timeline {
    position: relative;
    max-width: 810px;
    margin: 0 auto;
    padding: 120px 0 120px 0;
}

/* Linha central — track */
.trails__line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

/* Linha central — fill animada no scroll */
.trails__line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(195, 155, 92, 0.5) 60px,
        rgba(195, 155, 92, 0.5) calc(100% - 20px),
        rgba(195, 155, 92, 0.3) 100%
    );
    transition: height 0.05s linear;
}

/* Item (row) alternando esquerda/direita */
.trails__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
    z-index: 1;
}

.trails__item:last-child {
    margin-bottom: 0;
}

.trails__item--left .trails__card  { grid-column: 1; }
.trails__item--left .trails__dot   { grid-column: 2; }
.trails__item--right .trails__dot  { grid-column: 2; }
.trails__item--right .trails__card { grid-column: 3; }

/* Dot numerado */
.trails__dot {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(25 26 31) 0%, #0e1118 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    flex-shrink: 0;
}

.trails__dot span {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-text);
    line-height: 1;
    transition: color 0.4s ease;
}

.trails__dot.lit {
    border-color: rgba(195, 155, 92, 0.7);
    box-shadow: 0 0 0 4px rgba(195, 155, 92, 0.08), 0 0 16px 4px rgba(195, 155, 92, 0.25);
    background: linear-gradient(135deg, rgba(195, 155, 92, 0.15) 0%, #0e1118 100%);
}

.trails__dot.lit span {
    color: #DAB578;
}

/* Card */
.trails__card {
    background: linear-gradient(180deg, rgb(25 26 31) 0%, #0E1118 100%);
    box-shadow: 0 0 32px 0 #0A0C12 inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.trails__card:hover {
    border-color: rgba(195, 155, 92, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 0 32px 0 #0A0C12 inset, 0 8px 32px rgba(195, 155, 92, 0.08);
}

.trails__card-img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 70%);
    mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 70%);
}

.trails__card-body {
    z-index: 5;
    margin-top:-250px;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trails__card-title {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    line-height: var(--line-height-title);
}

.academy__card-sub {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: rgba(255, 255, 255, 0.55);
    line-height: var(--line-height);
}

.academy__card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.academy__card-riscado {
    font-size: var(--text-p2);
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    text-decoration-color: rgb(183, 9, 9);
}

.academy__card-incluso {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    color: #1a6b3a;
    background: linear-gradient(135deg, #c8fde4 0%, #a8f2cc 100%);
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(45, 130, 80, 0.2);
}

.academy__card-desc {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.academy__card-vende {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 12px;
    font-size: var(--text-p2);
    color: rgba(195, 155, 92, 0.65);
    line-height: var(--line-height);
    margin-top: auto;
}

.academy__card-vende p strong {
    color: rgba(195, 155, 92, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
    .academy__header-left {
        max-width: 420px;
    }

    .trails__item {
        gap: 24px;
    }
}

@media (max-width: 767px) {

    .three-pillars__container {

    gap: 20px;
}

    .academy__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 28px;
    }

    .academy__title {
        font-size: var(--text-h3);
    }

    .trails__timeline {
        padding: 48px 30px 48px 5px;
    }

    .trails__line {
        left: 20px;
        transform: none;
    }

    .trails__item {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
    }

    .trails__dot {
        flex-shrink: 0;
        order: -1;
        width: 36px;
        height: 36px;
    }

    .trails__card {
        flex: 1;
    }
}

/* ===== SHAPE DECORATIVO ===== */
.shape-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape-bg__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    filter: blur(170px);
    animation: shapeRotate 30s linear infinite, shapePulse 6s ease-in-out infinite;
}

@keyframes shapeRotate {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shapePulse {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 0.6; }
}

/* ==================== ORAYON TOOLS ==================== */
.tools {
    padding: var(--section-padding-y);
    overflow: hidden;
    background-image: linear-gradient(180deg, var(--dark-bg-3) 0%, var(--dark-bg-2) 100%);
}

/* Header — mesma lógica da Academy, sem setas */
.tools__header {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tools__header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 640px;
}

.tools__header-left h2,
.tools__header-left p {
    text-wrap: balance;
}

.tools__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
}

.tools__subtitle {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    line-height: var(--line-height);
}

/* Cards grid — 4 colunas desktop */
.tools__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card — texto em cima, imagem embaixo (inverso do pillar-card) */
.tools-card {
    background: linear-gradient(180deg, rgb(25 26 31) 0%, #0E1118 100%);
    box-shadow: 0 0 32px 0 #0A0C12 inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
    
}

.tools-card:hover {
    border-color: rgba(195, 155, 92, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 0 32px 0 #0A0C12 inset, 0 8px 32px rgba(195, 155, 92, 0.08);
}

/* Body — conteúdo textual (topo) */
.tools-card__body {
    padding: 1.5em 1.5em 0 1.5em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.tools-card__title {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.tools-card__description {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-bottom:-10px;
}

/* Visual — imagem de base do card */
.tools-card__img {
    
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    opacity: 1;
    margin-top: auto;
    border-radius: 0 0 20px 20px;
}

/* Box Créditos Bônus */
.tools__credits {
    max-width: 600px;
    position: relative;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

/* Borda gradiente via máscara */
.tools__credits::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, #C39B5C, rgba(195, 155, 92, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tools__credits-inner {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(180, 115, 36, 0.151) 0%, rgba(180, 116, 36, 0.02) 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.tools__credits-icon {
    width: 48px;
    height: auto;
}

.tools__credits-title {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.tools__credits-intro {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.tools__credits-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    width: 100%;
}

.tools__credits-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    text-wrap: balance;
}

.tools__credits-check {
    width: 24px;
    height: auto;
}

.tools__credits-item p {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.tools__credits-body {
    font-size: var(--text-p2);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--line-height);
    border-top: 1px solid rgba(195, 155, 92, 0.2);
    padding-top: 24px;
    width: 100%;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .tools__credits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools__credits-inner {
        padding: 28px;
    }

    .tools__credits-title {
        font-size: var(--text-h4);
    }
}

/* Citações */
.tools__quotes-section {
    border-top: 1px solid rgba(195, 155, 92, 0.18);
    border-bottom: 1px solid rgba(195, 155, 92, 0.18);
    padding: 48px 0;
}

.tools__quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tools__quote {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;

}



.tools__quote-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.tools__quote-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tools__quote-text {
    font-size: var(--text-p2);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--line-height);
}

.tools__quote-text strong {
    color: #ffffff;
    font-weight: var(--fw-semibold);
}

.tools__quote-source {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    color: rgba(195, 155, 92, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .tools__quotes {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .tools__quotes {
        grid-template-columns: 1fr;
    }
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .tools__header-left {
        max-width: 420px;
    }

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

/* Responsive — mobile */
@media (max-width: 767px) {
    .tools__header {
        margin-bottom: 28px;
    }

    .tools__header-left {
        max-width: 100%;
    }

    .tools__title {
        font-size: var(--text-h3);
    }

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

/* ==================== EVENTOS AO VIVO ==================== */
.events {
    padding: var(--section-padding-y);
    background: radial-gradient(ellipse at center top, transparent 10%, var(--dark-bg-2) 100%);
}

.events__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Coluna esquerda — imagem + box */
.events__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.events__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(195, 155, 92, 0.15);
    box-shadow: 0 0 48px rgba(195, 155, 92, 0.06), 0 24px 48px rgba(0,0,0,0.3);
}

.events__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(180, 116, 36, 0.5) 0%, rgba(180, 116, 36, 0) 70%);
    animation: eventsGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes eventsGlow {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}

.events__image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

/* Coluna direita — texto */
.events__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    text-wrap: balance;
}

.events__subtitle {
    text-wrap:balance;
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

/* Live dot pulsante (dentro da tag) */
.events__live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C0152A;
    box-shadow: 0 0 6px 2px rgba(192, 21, 42, 0.5);
    flex-shrink: 0;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        box-shadow: 0 0 8px 2px rgba(192, 21, 42, 0.5);
    }
    50% {
        box-shadow: 0 0 18px 6px rgba(192, 21, 42, 0.7);
    }
}

/* Lista de eventos */
.events__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.events__list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.events__list-item:hover {
    background: rgba(195, 155, 92, 0.04);
}

.events__list-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.events__list-icon {
    width: 20px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}

.events__list-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.events__list-title {
    font-size: var(--text-h6);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.events__list-body {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

/* Box de destaque */
.events__highlight {
    border-radius: 16px;
    background: linear-gradient(105deg, rgba(180, 116, 36, 0.12) 0%, rgba(195, 155, 92, 0.05) 100%);
    border: 1px solid rgba(195, 155, 92, 0.22);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.events__highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #C39B5C, #B47424);
    border-radius: 3px 0 0 3px;
}

.events__highlight-text {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height);
    padding-left: 8px;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .events__container {
        gap: 48px;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .events__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .events__left { order: 2; }
    .events__right { order: 1; }

    .events__right .tag,
    .events__title,
    .events__subtitle {
        text-align: center;
        align-self: center;
    }

    .events__title {
        font-size: var(--text-h3);
    }
}

/* ==================== PACOTES — HEADER ==================== */
.packages-header {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    background-image: url("assets/hero-bg.webp"), radial-gradient(ellipse at center top, rgba(45, 160, 80, 0.10) 0%, var(--dark-bg-2) 60%);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    padding: var(--section-padding-y) 0 0;
    border-radius: 40px;
    overflow: hidden;
}

.packages-header__divisor {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 767px) {
    .packages-header__divisor {
        width: 50%;
    }
}

.packages-header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.packages-header__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    max-width: 760px;
    text-wrap: balance;
    line-height: var(--line-height-title);
}



/* Mockup image */
.packages-header__mockup-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  
}

.packages-header__mockup {
    width: 100%;
    max-width: 1246px;
    height: auto;
    display: block;
}

/* ==================== PACOTES — OFERTA ÚNICA ==================== */
.packages {
    position: relative;
    z-index: 3;
    padding: 0 0 var(--section-padding-y);
}

.packages__container {
    display: flex;
    justify-content: center;
    padding: 0 var(--container-padding);
}

/* ── Offer Box ── */
.offer-box {
    margin-top: -80px;
    width: 100%;
    max-width: 650px;
    background: linear-gradient(180deg, rgb(25 26 31) 0%, #0e0e0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 0 0 1px rgba(45, 160, 80, 0.06), 0 32px 80px rgba(0,0,0,0.4);
}

/* Group — category block */
.offer-box__group {
    padding: 20px 0;
}

.offer-box__group-label {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(195, 155, 92, 0.8);
    margin-bottom: 14px;
}

/* List */
.offer-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-box__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-p2);
    color: var(--dark-title);
    line-height: var(--line-height);
}

.offer-box__item > span:first-of-type {
    flex: 1;
}

.offer-box__check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.offer-box__price-strike {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.387);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 80, 80, 0.6);
    white-space: nowrap;
    flex-shrink: 0;
}

.offer-box__price-tag {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: #3dd45f;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Dividers */
.offer-box__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.offer-box__divider--strong {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 160, 80, 0.35) 50%, transparent 100%);
    margin: 8px 0;
}

/* Total */
.offer-box__total {
    padding: 20px 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    text-align: center;
}

.offer-box__total-label {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-text);
    white-space: nowrap;
}

.offer-box__total-strike {
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: rgba(255, 80, 80, 0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 80, 80, 0.6);
    line-height: var(--line-height);
}

/* Price block */
.offer-box__price-block {
    padding: 28px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.offer-box__voce-paga {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.offer-box__price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.offer-box__prefix {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
}

.offer-box__price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: linear-gradient(to right, #3dd45f 0%, #24eb5e 50%, #2eb25e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-box__price-sm {
    font-size: var(--text-h3);
    font-weight: var(--fw-semibold);
    line-height: 1;
}

.offer-box__price-lg {
    font-size: 72px;
    font-weight: var(--fw-semibold);
    line-height: 1;
}

.offer-box__avista {
    font-size: var(--text-p1);
    font-weight: var(--fw-semibold);
    color: #3dd45f;
    margin: 0;
}

.offer-box__garantia {
    font-size: var(--text-p2);
    font-style: italic;
    color: var(--dark-text);
    margin: 0;
}

/* Discount badge */
.offer-box__discount-badge {
    text-align: center;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offer-box__discount-pct {
    font-size: var(--text-p1);
    font-weight: var(--fw-semibold);
    color: rgba(195, 155, 92, 0.9);
}

.offer-box__discount-sub {
    font-size: var(--text-p2);
    font-style: italic;
    color: var(--dark-text);
    margin: 0;
}

/* CTA block */
.offer-box__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
}

.offer-box__guarantee-text {
    font-size: var(--text-p2);
    color: var(--dark-text);
    text-align: center;
}

/* ── Green CTA Button ── */
.cta-button-wrapper--green {
    display: inline-block;
    border: 1px solid #24eb5e;
    border-radius: 79px;
    padding: 4px;
    width: 100%;
}

.cta-button--green {
    background: linear-gradient(105deg, #269647 4.96%, #3dd45f 117.5%);
    box-shadow: 0 0 25.1px 0 #2eb25e80, 0 0 11.6px 0 #24eb5e40 inset;
    color: #ffffff;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-button--green:hover {
    color: #ffffff;
    box-shadow: 0 0 40px 0 #2eb25e, 0 0 20px 0 #3dd45f inset;
    background: linear-gradient(105deg, #2eb25e 4.96%, #24eb5e 117.5%);
}

/* Responsive — mobile */
@media (max-width: 767px) {

    .packages-header__mockup-wrap {
    margin-top: 0;
    
}


    .packages-header {
   
        border-radius: 0 0 24px 24px;
    }

    .packages-header__title {
        font-size: var(--text-h3);
    }

    .offer-box {
        margin-top: -20px;
        padding: 15px;
    }

    .offer-box__price-lg {
        font-size: 56px;
    }

}

/* ==================== FAIXA MARQUEE ==================== */
.marquee-bonus {
    position: relative;
    overflow: hidden;
    background: linear-gradient(92deg, rgba(10, 11, 14, 0.30) 4.49%, rgba(195, 155, 92, 0.30) 23.78%, rgba(10, 11, 14, 0.30) 47.17%, rgba(10, 11, 14, 0.30) 63.25%, rgba(195, 155, 92, 0.30) 81.21%, rgba(10, 11, 14, 0.30) 95.35%), #0A0B0E;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-bonus__noise {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.marquee-bonus__track {
    position: relative;
    z-index: 2;
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-bonus__content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 12px;
}

.marquee-bonus__rosa {
    color: #C39B5C;
}

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

/* ==================== SEÇÃO 9 — GARANTIA ==================== */
.guarantee {
    position: relative;
    z-index: 10;
    background: linear-gradient(120deg, #8B5E1A, #C39B5C, #DAB578, #F0D08A, #DAB578, #B47424, #8B5E1A);
    background-size: 300% 100%;
    animation: gold-shimmer 5s ease-in-out infinite;
    padding:  0;
  
}

.guarantee__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.guarantee__container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.guarantee__box {
    z-index: 4;
    position: relative;
    width: 100%;
    max-width: 1280px;
background: linear-gradient(180deg, rgb(25 26 31) 0%, #0e1118 100%);    box-shadow: 0 0 32px 0 #0A0C1230;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 60px 60px;
    margin-top: -90px;
    margin-bottom: 80px;
}

.guarantee__img {
    width: 200px;
  
    object-fit: contain;
    margin-top: -60px;
    margin-bottom: -130px;
    flex-shrink: 0;

}

.guarantee__title {
    font-size: var(--text-h3);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
    margin-bottom: 20px;
    text-wrap: balance;
}

.guarantee__text {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    max-width: 620px;
}

.guarantee__text--bold {
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
}

/* Responsive — mobile */
@media (max-width: 767px) {
   

    .guarantee__box {
        padding: 0 24px 32px;
            margin-top: -90px;
    margin-bottom: 40px;
    }

    .guarantee__img {
        width: 60%;
        margin-top: -48px;
        margin-bottom: -40%;
    }

    .guarantee__title {
        font-size: var(--text-h4);
    }
}

/* ==================== SEÇÃO 10 — EQUIPE ==================== */
.team {
    position: relative;
    z-index: 2;
  
    background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 200px 0 120px;
}

.team__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* Header */
.team__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.team__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.team__subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    max-width: 560px;
}

/* Cards grid — 3 colunas */
.team__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    align-items: start;
}

/* Card */
.team__card {
    background: linear-gradient(180deg, rgb(25 26 31) 0%, #0E1118 100%);
    box-shadow: 0 0 32px 0 #0A0C12 inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.team__card:hover {
    border-color: rgba(255, 255, 255, 0.13);
}

/* Foto */
.team__card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--dark-bg-3);
    flex-shrink: 0;
    mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    margin-bottom: -70px;
}

.team__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.team__card-body {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.team__card-role {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    line-height: var(--line-height);
    background: linear-gradient(91deg, #C2DAF7 -9.12%, #FF57C0 42.96%, #2F46E4 107.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team__card-name {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
}

.team__card-bio {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-top: 4px;
}

/* Lista no card da equipe */
.team__card-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.team__card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.team__check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .team__cards {
        grid-template-columns: 1fr 1fr;
    }

    .team__cards .team__card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        margin: 0 auto;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {

    .team__container {
    padding: 0 40px;
    gap: 24px;
}

    .team__title {
        font-size: var(--text-h3);
    }

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

    .team__cards .team__card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

/* ==================== CTA FINAL (reusa .team) ==================== */

/* Override padding for CTA Final */
.cta-final.team {
    padding: var(--section-padding-y) 0 140px;
    background-image: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(160, 122, 45, 0.08) 0%, transparent 60%),
                      url("assets/bg-top-lines.webp");
}

/* 2 scenario cards — max 810px centrado */
.cta-final__scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 810px;
}

/* Scenario Card base */
.scenario-card {
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.scenario-card--bad {
    background: linear-gradient(180deg, rgba(60, 20, 20, 0.6) 0%, rgba(14, 17, 24, 0.9) 100%);
    border-color: rgba(200, 50, 50, 0.18);
    box-shadow: 0 0 32px rgba(200, 30, 30, 0.05) inset;
}

.scenario-card--good {
    background: linear-gradient(180deg, rgba(20, 55, 30, 0.6) 0%, rgba(14, 17, 24, 0.9) 100%);
    border-color: rgba(45, 160, 80, 0.25);
    box-shadow: 0 0 32px rgba(45, 160, 80, 0.06) inset;
}

/* Placeholder image above the label */
.scenario-card__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 4px;
}

.scenario-card__header {
    display: flex;
    align-items: center;
}

.scenario-card__label {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.scenario-card__label--bad {
    background: rgba(200, 50, 50, 0.15);
    color: rgba(255, 100, 100, 0.85);
    border: 1px solid rgba(200, 50, 50, 0.25);
}

.scenario-card__label--good {
    background: rgba(45, 160, 80, 0.15);
    color: #3dd45f;
    border: 1px solid rgba(45, 160, 80, 0.3);
}


.scenario-card__text {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: 1.65em;
    margin: 0;
}

/* Gancho final */
.cta-final__hook {
    max-width: 810px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-final__hook-diferenca {
    font-size: var(--text-h4);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    line-height: var(--line-height-title);
    text-wrap: balance;
    margin: 0;
}

.cta-final__hook-mercado {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.cta-final__hook-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-final__hook-quote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cta-final__hook-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-final__hook-quote-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-final__hook-quote-text {
    font-size: var(--text-p2);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--line-height);
    margin: 0;
}

.cta-final__hook-quote-text strong {
    color: var(--dark-title);
    font-weight: var(--fw-semibold);
}

.cta-final__hook-question {
    font-size: var(--text-p1);
    color: var(--dark-title);
    line-height: var(--line-height);
    text-wrap: balance;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* CTA block */
.cta-final__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 810px;
}

.cta-final__btn-wrapper {
    width: 100%;
    max-width: 640px;
}

/* Extra large CTA button */
.cta-button--xl {
    font-size: clamp(18px, 2.5vw, 26px);
    padding: 22px 40px;
    letter-spacing: 0.01em;
    width: 100%;
    justify-content: center;
}

/* Blinking pulse animation for CTA */
@keyframes cta-pulse-green {
    0%, 100% {
        box-shadow: 0 0 25px 0 rgba(45, 178, 94, 0.5), 0 0 12px 0 rgba(36, 235, 94, 0.25) inset;
    }
    50% {
        box-shadow: 0 0 55px 0 rgba(45, 178, 94, 0.85), 0 0 28px 0 rgba(36, 235, 94, 0.45) inset,
                    0 0 90px 0 rgba(61, 212, 95, 0.3);
    }
}

.cta-button--xl.cta-button--green {
    animation: cta-pulse-green 2s ease-in-out infinite;
}

.cta-final__cta-sub {
    font-size: var(--text-p2);
    color: var(--dark-text);
    text-align: center;
    margin: 0;
    text-wrap: balance ;
}

/* Trust bar */
.cta-final__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: -30px;
}

.cta-final__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-p2);
    color: var(--dark-text);
    white-space: nowrap;
}

.cta-final__trust-icon {
    font-size: 18px;
    line-height: 1;
}

.cta-final__trust-item--payments {
    flex: 1;
    justify-content: center;
}

.cta-final__payments-img {
    height: 28px;
    width: auto;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 767px) {
    .cta-final__scenarios {
        grid-template-columns: 1fr;
    }

    .cta-final__hook-quotes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-final__hook-quote {
        gap: 14px;
        text-align: left;
    }

    .cta-final__hook-question {
        padding-top: 20px;
    }

    .cta-final__trust {
        gap: 16px;
        justify-content: flex-start;
        margin-top:-10px;
    }

    .cta-button--xl {
        font-size: 18px;
        padding: 18px 24px;
        text-align: center;
    }

    .cta-button {
        text-align: center;
    }
}

/* ==================== SEÇÃO 11 — CTA FINAL ==================== */
/* ==================== OPORTUNIDADE ==================== */
.oportunidade {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.oportunidade__banner {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #8B5E1A, #C39B5C, #DAB578, #F0D08A, #DAB578, #B47424, #8B5E1A);
    background-size: 300% 100%;
    animation: gold-shimmer 5s ease-in-out infinite;
    padding: 120px 48px;
    margin: 0 24px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(180, 116, 36, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.oportunidade__banner-noise {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes gold-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.oportunidade__h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: var(--fw-semibold);
    color: #ffffff;
    line-height: var(--line-height-title);
    max-width: 1140px;
    margin: 0 auto;
}

.oportunidade__inner {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: var(--section-padding-y) 0;
}

.oportunidade__inner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* Citação */
.oportunidade__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 700px;
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(195, 155, 92, 0.06) 0%, rgba(195, 155, 92, 0.01) 100%);
    border: 1px solid rgba(195, 155, 92, 0.18);
    position: relative;
}

.oportunidade__quote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 80px;
    line-height: 1;
    color: rgba(195, 155, 92, 0.2);
    font-family: Georgia, serif;
    pointer-events: none;
}

.oportunidade__quote-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(195, 155, 92, 0.4);
    box-shadow: 0 0 0 4px rgba(195, 155, 92, 0.08), 0 8px 24px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.oportunidade__quote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oportunidade__quote-text {
    font-size: var(--text-h5);
    font-weight: var(--fw-regular);
    color: var(--dark-title);
    line-height: var(--line-height);
    font-style: italic;
}

.oportunidade__quote-author {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: rgba(195, 155, 92, 0.8);
    font-style: normal;
    letter-spacing: 0.03em;
}

/* Caixa carta de vendas */
.oportunidade__box {
    background: #FAF8F4;
    border-radius: 16px;
    max-width: 810px;
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Intro */
.oportunidade__intro {
    font-size: 22px;
    color: #1a1a1a;
    line-height: 1.5em;
    text-align: center;
}

.oportunidade__intro strong {
    font-weight: var(--fw-semibold);
    font-size: 36px;
    display: block;
    margin-top: 4px;
}

/* Lista de bullets */
.oportunidade__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}

.oportunidade__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 40px 0;
    border-top: 1px solid rgba(179, 116, 36, 0.2);
}

.oportunidade__item:nth-child(1),
.oportunidade__item:nth-child(2) {
    padding-top: 0;
    border-top: none;
}

/* Imagem de marcação acima de cada bullet */
.oportunidade__marker-img {
    width: 100%;
    height: auto;
}

.oportunidade__item-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.oportunidade__check {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}

.oportunidade__item-row p {
    font-size: 20px;
    color: #1a1a1a;
    line-height: 1.5em;
    margin: 0;
}

.oportunidade__item-row p strong {
    font-weight: var(--fw-semibold);
    color: #0d0d0d;
}

/* Parágrafos corpo */
.oportunidade__revolucao {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oportunidade__revolucao-title {
    font-size: var(--text-h3);
    font-weight: var(--fw-semibold);
    color: #0d0d0d;
    line-height: var(--line-height-title);
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(179, 116, 36, 0.3);
    border-bottom: 1px solid rgba(179, 116, 36, 0.3);
}

.oportunidade__revolucao-text {
    text-align: center;
    font-size: var(--text-p1);
    color: #333333;
    line-height: 1.65em;
    margin: 0;
}

.oportunidade__revolucao-img {
    width: 100%;
    height: auto;
}

.oportunidade__voce {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.oportunidade__voce-intro {
    font-size: var(--text-p1);
    color: #333333;
    line-height: 1.6em;
    text-wrap: balance;
    margin: 0;
}

.oportunidade__voce-transicao {
    font-size: 1.6em;
    color: #333333;
    line-height: 1.3em;
    text-wrap: balance;
    margin: 0;
}

.oportunidade__voce-impacto {
    font-size: 2em;
    line-height: 1.5em;
    text-wrap: balance;
    margin: 0;
}

.oportunidade__voce-final {
    font-size: var(--text-p1);
    color: #333333;
    line-height: 1.5em;
    text-wrap: balance;
    margin: 0;
}

/* Alert urgência */
.oportunidade__urgencia {
    background: #FFF0F0;
    border-radius: 12px;
    border: 1px solid rgba(180, 30, 30, 0.18);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 16px rgba(200, 30, 30, 0.06);
}

.oportunidade__urgencia-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
   
}

.oportunidade__urgencia-icon {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.oportunidade__urgencia-header strong {
    font-size: 1.4em;
    font-weight: var(--fw-semibold);
    color: #701a1a;
    line-height: 1.4em;
}

.oportunidade__urgencia-body {
    font-size: var(--text-p2);
    color: #333333;
    line-height: 1.65em;
    margin: 0;
    padding-left: 30px;
}

.oportunidade__urgencia-body strong {
    font-weight: var(--fw-semibold);
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 767px) {

    .oportunidade__urgencia-header strong {
    font-size: 1.2em;
 
}

    .oportunidade__voce-transicao {
    font-size: 1.2em;

}

    .oportunidade__voce-impacto {
    font-size: 1.6em;
   
}

    .oportunidade__banner {
        padding: 56px 20px;
    }

    .oportunidade__h1 {
        font-size: 32px;
    }

    .oportunidade__inner {
        padding: 46px 0;
        gap: 48px;
    }

    .oportunidade__quote-text {
        font-size: var(--text-h6);
    }

    .oportunidade__quote-photo {
        width: 56px;
        height: 56px;
    }

    .oportunidade__box {
        padding: 32px 24px;
        gap: 32px;
    }

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

    .oportunidade__item:nth-child(2) {
        padding-top: 40px;
        border-top: 1px solid rgba(179, 116, 36, 0.2);
    }

    .oportunidade__item p {
        font-size: 18px;
    }

    .oportunidade__urgencia {
        padding: 20px;
    }
}

/* ==================== SOLUÇÃO ==================== */
.solucao {
        background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    padding: var(--section-padding-y) 0 20px;
}

.solucao__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "header header"
        "body   right"
        "preco  preco";
    gap: 48px 64px;
    align-items: start;
}

/* Header */
.solucao__header {
    grid-area: header;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 760px;
}

.solucao__logo {
    width: 260px;
    height: auto;
}

.solucao__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    line-height: var(--line-height-title);
}

.solucao__subtitle {
    font-size: var(--text-p1);
    color: var(--dark-text);
    line-height: var(--line-height);
}

/* Corpo */
.solucao__body {
    grid-area: body;
}

.solucao__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solucao__desc {
    font-size: var(--text-h5);
    color: var(--dark-title);
    line-height: var(--line-height);
}

.solucao__desc strong {
    font-weight: var(--fw-semibold);
}

.solucao__desc-sub {
    font-size: var(--text-p1);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.solucao__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
}

.solucao__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.solucao__item:last-child {
    border-bottom: none;
}

.solucao__item:hover {
    background: rgba(195, 155, 92, 0.04);
}

.solucao__arrow {
    width: 25px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}

.solucao__item p {
    font-size: var(--text-p1);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin: 0;
}

.solucao__item p strong {
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
}

.solucao__right {
    grid-area: right;
    position: relative;
    overflow: visible;
    min-height: 500px;
}

.solucao__right::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(195, 155, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

.solucao__mockup {
    position: absolute;
    top: -80px;
    left: -20px;
    right: -200px;
    width: calc(100% + 220px);
    height: auto;
    border-radius: 0;
    z-index: 2;
    margin: -40px -100px -30px -10px;
}

/* Preço */
.solucao__preco-wrap {
    grid-area: preco;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(195, 155, 92, 0.25);
    background: linear-gradient(180deg, rgba(195, 155, 92, 0.05) 0%, transparent 100%);
    box-shadow: 0 0 0 4px rgba(195, 155, 92, 0.04);
}

.solucao__preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.solucao__preco-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.solucao__preco-label {
    font-size: var(--text-p1);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.solucao__preco-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: linear-gradient(to right, #259D5F 0%, #3ED65F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solucao__preco-sm {
    font-size: var(--text-h4);
    font-weight: var(--fw-semibold);
    line-height: 1;
}

.solucao__preco-lg {
    font-size: var(--text-h1);
    font-weight: var(--fw-semibold);
    line-height: 1;
}

.solucao__preco-avista {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin: 0;
}

/* Economize */
.solucao__economize {
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: var(--line-height);
    text-align: center;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(195, 155, 92, 0.15);
    width: 100%;
}

.solucao__riscado {
    color: #ffffff6f;
    text-decoration: line-through;
    text-decoration-color: #D32F2F;
    font-weight: var(--fw-semibold);
    font-size: var(--text-h5);
}

/* Responsive */
@media (max-width: 767px) {
    .solucao__container {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .solucao__header { order: 1; }
    .solucao__right  { order: 2; min-height: 0; }
    .solucao__body   { order: 3; }
    .solucao__preco-wrap { order: 4; }

    .solucao__mockup {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: -40px 0 0 !important;
    }

    .solucao__title {
        font-size: var(--text-h3);
    }
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px 40px;
}

.footer__container {
    width: 100%;
    max-width: 1880px;
    background: radial-gradient(150% 100% at 50% 0%, #1f1f21 0%, #222122 22.41%, #171617 49%, #1a1b1d 69.27%);
    border-radius: 44px;
    padding: 96px 300px 15.99px;
    position: relative;
    overflow: hidden;
    z-index: 9999;
}

.footer__logo-bg {
    position: absolute;
    left: 50%;
    bottom: 13px;
    width: 1280px;
    height: 228px;
    opacity: 0.03;
    mix-blend-mode: lighten;
    pointer-events: none;
    transform: translateX(-50%);
}

.footer__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 50px;
}

/* Left Column - Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8.5px;
    text-decoration: none;
    padding: 0 0 2.5px 0;
}

.footer__contact-item:last-child { padding: 0; }

.footer__contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer__contact-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__contact-text {
    font-size: 14.4px;
    font-weight: var(--fw-regular);
    line-height: 21.6px;
    color: var(--white);
}

/* Center Column - Logo & Info */
.footer__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 422.39px;
    margin: 0 auto;
}

.footer__logo {
    width: 130.94px;
    height: 35.77px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.footer__company-name {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    line-height: 19.2px;
    color: var(--white);
    text-align: center;
}

/* Right Column - CNPJs */
.footer__cnpj {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer__cnpj-text {
    font-size: 12.8px;
    font-weight: var(--fw-regular);
    line-height: 19.2px;
    color: #F2F2F2;
    text-align: right;
}

/* Bottom */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 10px;
}

.footer__bottom-link {
    font-size: 14px;
    font-weight: var(--fw-regular);
    line-height: 19.6px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 0.59px;
}

.footer__bottom-link:hover { text-decoration: underline; }

/* ==================== RESPONSIVE ==================== */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
    :root {
        --text-h1: 44px;
        --text-h2: 38px;
        --text-h3: 32px;
        --text-h4: 26px;
    }

    .three-pillars__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-pillars__cards--two {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .why-now__cards {
        grid-template-columns: 1fr;
    }

    .why-now-card--full .why-now-card__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .two-types__cards {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .footer__container {
        padding: 80px 100px 15px;
    }
}

/* Mobile: abaixo de 768px */
@media (max-width: 767px) {
    :root {
        --text-h1: 36px;
        --text-h2: 32px;
        --text-h3: 28px;
        --text-h4: 24px;
        --text-h5: 22px;
        --text-p1: 16px;
        --text-p2: 15px;
        --text-btn: 18px;
        --text-tag: 14px;
        --section-padding-y: var(--section-padding-y-mobile);
    }

    .hero__title-main {
   
    font-size: 8vw;
   
}

    .urgency-bar__text {
        font-size: var(--text-p2);
    }


    .tools{
        padding: 40px 10px;
    }

    .academy,
    .events {
        padding: 40px 0;
    }

    .hero__nav-bar {
        padding: 30px 0;
        margin-bottom: 0px;
    }

    .hero__nav-logo {
        height: 34px;
    }

    .hero__content {
        margin-bottom: 32px;
    }

    .hero__title {
        font-size: var(--text-h2);
    }

    .hero__subtitle {
        font-size: var(--text-p2);
    }

    .hero__subtitle-highlight {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .trails {
        border-radius: 0;
    }

    .shape-bg__img {
        width: 70%;
    }

    .hero {
        background-image: url("assets/bg-hero-mobile.webp");
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .three-pillars__cards {
        grid-template-columns: 1fr;
    }

    .three-pillars__cards--two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .why-now-card__cta-button-wrapper {
        align-items: stretch;
    }

    .why-now-card__cta-button,
    .two-types__cta-button {
        font-size: 16px;
        padding: 16px 24px;
        text-align: center;
    }

   
    .why-now-card__content,
    .two-types-card {
        padding: 1em;
    }

    .why-now-card--full .why-now-card__content {
        padding: 1.5em;
    }

    .footer__container {
        padding: 50px 30px 15px;
        border-radius: 34px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer__contact {
        order: 2;
        align-items: center;
    }

    .footer__center { order: 1; }

    .footer__cnpj {
        order: 3;
        align-items: center;
    }

    .footer__cnpj-text {
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer__bottom-link {
        white-space: normal;
        text-align: center;
    }

    .footer__logo-bg {
        width: 600px;
        height: auto;
    }

    .footer__contact-text { font-size: 13px; }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 40px 20px 15px;
        border-radius: 24px;
    }

    .footer__logo {
        width: 100px;
        height: auto;
    }

    .footer__bottom-link { font-size: 16px; }

    .footer__logo-bg {
        max-width: none;
        opacity: 0.02;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-padding-y) 0;
    position: relative;
}

.faq__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.faq__header {
    text-align: center;
    max-width: 680px;
}

.faq__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C39B5C;
    border: 1px solid rgba(195, 155, 92, 0.35);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 18px;
}

.faq__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 14px;
}

.faq__subtitle {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* Accordion list */
.faq__list {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq__item[open] {
    background: rgba(195, 155, 92, 0.05);
    border-color: rgba(195, 155, 92, 0.25);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__item[open] .faq__question {
    color: #DAB578;
}

/* Chevron icon */
.faq__question::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23C39B5C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: clamp(14px, 1.4vw, 15px);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0;
}

.faq__answer p {
    margin: 14px 0 0;
}

/* CTA block */
.faq__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.faq__btn-wrapper {
    width: fit-content;
}

.faq__cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    margin: 0;
    text-wrap: balance;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .faq__question {
        padding: 18px 18px;
    }

    .faq__answer {
        padding: 0 18px 18px;
    }
}
