
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='4' height='4' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%2391898a' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 9999;
}

/* ==================== 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: #1E293B;
    --dark-bg-2: #0A0B0E;
    --dark-bg-3: #131418;
    --dark-bg-4: #1A1D24;

    /* 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;
}

.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;
}

.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%); }
}

.gradient-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    z-index: 0;
}

.gradient-bg svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.gradients-container {
    filter: url(styles.css#goo) blur(40px);
    width: 100%;
    height: 100%;
}

.g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 0.15;
}

.g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 0.12;
}

.g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 0.1;
}

.g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.1;
}

.g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 0.12;
}

.interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.08;
}

/* ==================== 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(91deg, #C2DAF7 -9.12%, #FF57C0 42.96%, #2F46E4 107.35%);
    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 ==================== */
.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;
}

/* ==================== 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(218, 27, 146, 0.55) 50%,
        transparent 100%
    );
    border-image-slice: 1;
    background: radial-gradient(
        50% 100% at 50% 100%,
        rgba(218, 27, 146, 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(218, 27, 146, 0.55) 50%,
        transparent 100%
    );
    border-image-slice: 1;
    background: radial-gradient(
        43.9% 100% at 50% 0%,
        rgba(218, 27, 146, 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: 100;
    background-color: #C0152A;
    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: space-between;
   
}

.hero__nav-logo {
    height: 56px;
    width: auto;
}

.hero__nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__nav-countries-label {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    letter-spacing: -0.02em;
}

.hero__nav-countries-img {
    height: 38px;
    width: auto;
}

.hero__bg-left,
.hero__bg-right {
    position: absolute;
    top: 0;
    width: auto;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero__bg-left  { left: 0; }
.hero__bg-right { right: 0; }

.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__logo-badge {
    width: 120px;
}

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

.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);

}

.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: 620px;
    text-wrap: balance;
}

/* VSL container */
.hero__vsl {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 920px;
    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(218, 27, 146, 0.10),
            0 0 80px 0 rgba(244, 142, 255, 0.04);
    }
    50% {
        box-shadow:
            0 0 60px 0 rgba(218, 27, 146, 0.20),
            0 0 120px 0 rgba(244, 142, 255, 0.08);
    }
}

.hero__vsl-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    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);
    padding-top: calc(30px + 72px); /* acomoda bleed do VSL + respiro */
    padding-bottom: var(--section-padding-y);
}

.hero-trust__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.hero-trust__label {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    text-align: center;

}

.hero-trust__seals {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 800px;
}

/* Trust Seal */
.trust-seal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 24px;
}

.trust-seal__icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: var(--dark-bg-4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.trust-seal__icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.trust-seal__text {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    text-align: center;
    max-width: 160px;
    line-height: var(--line-height);
}

/* Separador vertical entre seals */
.trust-seal__sep {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Hero CTA — link de scroll, sem estilo de botão principal */
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.hero__cta:hover { opacity: 0.7; }

.hero__cta-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transform: rotate(180deg); /* apontando para baixo */
}

/* ==================== VSL SECTION ==================== */
.vsl {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px var(--container-padding) var(--section-padding-y);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.vsl__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 73px;
    border: 1px solid #28354B;
    background: linear-gradient(180deg, #0A0B0E 0%, #182231 100%);
    box-shadow: 0 0 22px 0 #212C3E inset;
    padding: 10px 20px;
    font-size: var(--text-tag);
    font-weight: var(--fw-regular);
    color: var(--dark-title);
}

.vsl__intro-logo {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.vsl__video {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--dark-bg-3);
}

.vsl__infobox {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #28354B;
    background: linear-gradient(180deg, #0A0B0E 0%, #182231 100%);
    padding: 2px;
}

.vsl__infobox-inner {
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.vsl__infobox-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

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

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

/* ==================== AI BRIDGE SECTION ==================== */
.ai-bridge {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-3);
    padding: var(--section-padding-y) 0;
}

.ai-bridge__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow: hidden;
}

.ai-bridge__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}

.ai-bridge__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ai-bridge__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

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

.ai-bridge__title-gradient {
    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;
}

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

.ai-bridge__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-bridge__mockup {
    width: 100%;
    border-radius: 12px;
}

.ai-bridge__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 560px;
}

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

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

/* ==================== 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: 64px;
}

/* Header */
.three-pillars__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    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-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

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

/* Pillar Card */
.pillar-card {
    background: linear-gradient(180deg, #1E2530 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;
}

.pillar-card:hover {
    border-color: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

/* Visual — imagem de topo do card */
.pillar-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 0 24px;
    flex-shrink: 0;
}

.pillar-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Body — conteúdo textual */
.pillar-card__body {
    padding: 1.5em;
    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__subtitle {
    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;
}

.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;
}

/* ==================== FOR WHOM SECTION ==================== */
.for-whom {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    padding: var(--section-padding-y) 0;
}

.for-whom__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Coluna esquerda */
.for-whom__visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

/* Wrapper das imagens (mantém aspect-ratio e border-radius) */
.for-whom__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--dark-bg-4);

}

.for-whom__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.for-whom__image.active {
    opacity: 1;
}

/* Conteúdo direito */
.for-whom__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

/* Lista de perfis */
.for-whom__profiles {
    display: flex;
    flex-direction: column;
}

/* Tab individual */
.profile-tab {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* Barra vertical */
.profile-tab__bar {
    position: relative;
    width: 2px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 2px;
    overflow: hidden;
    align-self: stretch;
    min-height: 28px;
}

.profile-tab__bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FFFFFF;
    border-radius: 2px;
}

@keyframes profile-progress {
    from { height: 0%; }
    to   { height: 100%; }
}

.profile-tab.active .profile-tab__bar-fill {
    animation: profile-progress 7s linear forwards;
}

/* Conteúdo interno do tab */
.profile-tab__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.profile-tab__level {
    font-size: 13px;
    font-weight: var(--fw-regular);
    letter-spacing: 0.01em;
    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;
}

.profile-tab__name {
    font-size: var(--text-h5);
    font-weight: var(--fw-semibold);
    color: var(--dark-text);
    line-height: var(--line-height-title);
    transition: color 0.3s ease;
}

.profile-tab.active .profile-tab__name {
    color: var(--dark-title);
}

.for-whom__text-panel {
    display: grid;
    grid-template-areas: "text";
}

.profile-text {
    grid-area: text;
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.profile-text.active {
    opacity: 1;
    pointer-events: auto;
}

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

.profile-text em {
    font-style: italic;
}

.profile-tab__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 0;
    counter-reset: profile-list;
}

.profile-tab__list li {
    position: relative;
    padding-left: 20px;
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    counter-increment: profile-list;
}

.profile-tab__list li::before {
    content: counter(profile-list) ".";
    position: absolute;
    left: 0;
    color: var(--dark-text);
    font-weight: var(--fw-semibold);
}

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

@media (max-width: 767px) {

    .for-whom {
  
    padding: 0;
}

    .for-whom__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 10% 5% 16% 5%;
        
    }

    .for-whom__image-wrapper {
        aspect-ratio: 16 / 9;
    }

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

/* ==================== ECOSYSTEM INTRO ==================== */
.ecosystem-intro {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    padding: 80px 0;
    overflow: hidden;
}

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

.ecosystem-intro__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

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

.ecosystem-intro__subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: #ffffff;
    line-height: var(--line-height);
    max-width: 480px;
    text-wrap:balance;
}

@media (max-width: 767px) {
    .ecosystem-intro {
        padding: 60px 0;
    }

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

/* ==================== ORAYON LOGO SECTION ==================== */
.orayon-logo-section {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg-2);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.orayon-logo-section__image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    opacity: 0.04;
    pointer-events: none;
}


/* ==================== ORAYON ACADEMY ==================== */
.academy {
    padding: 80px 0;
    overflow: hidden;
}

/* Header: brand+título+subtítulo à esquerda, setas encostadas à direita */
.academy__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    z-index: 2;
}

.academy__header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
}

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

.academy__brand {
    height: 28px;
    width: auto;
    display: block;
}

.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);
}

/* Setas — alinhadas ao fundo do header, encostadas à direita */
.academy__arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-self: flex-end;
}

.academy__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.academy__arrow:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.academy__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Carrossel — começa no edge do container, vaza à direita */
.academy__carousel {
    z-index:2;
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /*
     * padding-left: margem automática do container + padding interno (24px)
     * Isso alinha o primeiro card com o conteúdo do .container
     */
    padding-left: max(calc((100vw - 1280px) / 2 + 24px), 24px);
    /*
     * padding-right igual ao padding-left: quando scrollado até o final,
     * o último card alinha com a borda direita do container
     */
    padding-right: max(calc((100vw - 1280px) / 2 + 24px), 24px);
    padding-bottom: 4px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.academy__carousel::-webkit-scrollbar {
    display: none;
}

.academy__carousel.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Card: background-image + texto na base
 * Largura: 5 cards + 4 gaps cabem no container de 1232px (1280-48px padding)
 * com ~40px do 6º card visível como overflow
 * (1232 - 4*20) / 5 = 230.4px → uso 222px para sobrar peek do 6º
 */
.academy__card {
    position: relative;
    flex: 0 0 222px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(41, 39, 45);
    background-color: var(--dark-bg-4);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    /* snap só via JS para não brigar com o drag */
}

/* Gradiente de leitura na base */
.academy__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
    pointer-events: none;
}

.academy__card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.academy__card-title {
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: #ffffff;
    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.65);
    line-height: var(--line-height);
}

/* Dots — alinha com o conteúdo do container (mesma fórmula do carousel) */
.academy__dots {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 28px;
    padding-left: max(calc((100vw - 1280px) / 2 + 24px), 24px);
}

.academy__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
    flex-shrink: 0;
}

.academy__dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 3px;
}

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

@media (max-width: 767px) {
    .academy__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 28px;
    }

    .academy__arrows {
        align-self: flex-start;
    }

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

    .academy__carousel {
        padding-left: 24px;
        padding-right: 24px;
    }

    .academy__dots {
        padding-left: 24px;
    }

    .academy__card {
        flex: 0 0 200px;
        height: 320px;
    }
}

/* ===== SHAPE DECORATIVO ===== */
.shape-bg {
    position: relative;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: -1;
}

.shape-bg__img {
    z-index: -1;
    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: 80px 0;
    overflow: hidden;
}

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

.tools__header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
}

.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-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    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, #1E2530 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(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

/* 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;
}

/* 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: 80px 0 120px 0;
}

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

/* Coluna esquerda */
.events__left {
    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 {
    font-size: var(--text-p1);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-bottom: 12px;
}

/* 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);
    }
}

/* Sanfona */
.events__accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.accordion-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.accordion-item__title {
    font-size: var(--text-h6);
    font-weight: var(--fw-semibold);
    color: var(--dark-text);
    line-height: var(--line-height-title);
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-item__title {
    color: var(--dark-title);
}

.accordion-item__chevron {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-item__chevron {
    transform: rotate(180deg);
    color: var(--dark-title);
}

/* Body — colapsável via grid-template-rows */
.accordion-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.accordion-item.active .accordion-item__body {
    grid-template-rows: 1fr;
}

.accordion-item__inner {
    overflow: hidden;
}

.accordion-item.active .accordion-item__inner {
    padding-bottom: 4px;
}

.accordion-item__text {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-item__schedule {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.accordion-item__schedule li {
    position: relative;
    padding-left: 20px;
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.accordion-item__schedule li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(91deg, #C2DAF7 -9.12%, #FF57C0 42.96%, #2F46E4 107.35%);
}

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

.events__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.events__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(218, 27, 146, 0.5) 0%, rgba(218, 27, 146, 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: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Frase de destaque — estilo referência */
.events__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 16px;
    background: linear-gradient(105deg, rgba(218, 27, 146, 0.12) 0%, rgba(47, 70, 228, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
}

.events__highlight-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* 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__title {
        font-size: var(--text-h3);
      
    }

  
}

/* ==================== 5 TRILHAS DE MONETIZAÇÃO ==================== */
.trails {
    padding: var(--section-padding-y) 0;
    background-color: var(--dark-bg-3);
    background-image: url("assets/bg-top-lines.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 40px 40px 0 0;
}

.trails__container {
    max-width: 910px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header centralizado */
.trails__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 0; /* timeline começa logo abaixo */
}

.trails__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    max-width: 700px;
}

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

/* Timeline container */
.trails__timeline {
    position: relative;
    width: 100%;
    padding: 80px 0 120px 0;
}

/* Linha central — fundo (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 (acende no scroll) */
.trails__line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(218, 27, 146, 0.5) 60px,
        rgba(218, 27, 146, 0.5) calc(100% - 20px),
        rgba(218, 27, 146, 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;
}

/* Direita: vazio | dot | card */
.trails__item--right .trails__dot {
    grid-column: 2;
}

.trails__item--right .trails__card {
    grid-column: 3;
}

/* Dot numerado */
.trails__dot {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-bg-3);
    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;
}

.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;
}

/* Dot ativo (quando timeline chega nele) */
.trails__dot.lit {
    border-color: rgba(218, 27, 146, 0.6);
    box-shadow: 0 0 12px 2px rgba(218, 27, 146, 0.3);
}

.trails__dot.lit span {
    color: var(--dark-title);
}

/* Card */
.trails__card {
    background: linear-gradient(180deg, #1E2530 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;
}

.trails__card:hover {
    border-color: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

.trails__card-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background-color: var(--dark-bg-4);
    flex-shrink: 0;
    border-radius:20px;
}

.trails__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius:20px;
}

.trails__card-body {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

/* Responsive — mobile */
@media (max-width: 767px) {
    .trails__title {
        font-size: var(--text-h3);
    }

    /* Timeline linear: tudo empilhado */
    .trails__timeline {
        padding-top: 48px;
    }

    .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;
    }
}

/* ==================== FRANQUIA DIGITAL ==================== */
.franchise {
    display: flex;
    justify-content: center;
}

.franchise__wrapper {
    width: 96%;
   margin-top: -120px;
    background: radial-gradient(circle at center, #FFFFFF 0%, var(--light-bg-1) 86%);
    border-radius: 40px;
    padding: 100px 0;
    overflow: hidden;
}

.franchise__container {
    max-width: var(--container-max);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* Tag — override para seção clara */
.franchise__tag {
    background: linear-gradient(180deg, #FFFFFF 0%, #E8E8E8 100%);
    border-color: #D4D4D4;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.04) inset;
}

.franchise__tag .tag-gradient-text {
    background: linear-gradient(91deg, #1a1a2e -9.12%, #DA1B92 42.96%, #2F46E4 107.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.franchise__title {
    font-size: var(--text-h2);
    font-weight: var(--fw-semibold);
    color: var(--dark-bg-2);
}

.franchise__subtitle {
    font-size: var(--text-h5);
    font-weight: var(--fw-regular);
    color: var(--light-text);
    line-height: var(--line-height);
}

.franchise__star {
    width: 64px;
    height: auto;
    mix-blend-mode: multiply;
}

/* Mockup area com floating images */
.franchise__mockup-area {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.franchise__mockup {
    width: 100%;
    overflow: hidden;
}

.franchise__mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating images */
.franchise__float {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2;
    width: auto;
    height: auto;
    max-width: 140px;
}

.franchise__float--1 {
    top: -20px;
    left: -60px;
    animation: float1 4s ease-in-out infinite;
}

.franchise__float--2 {
    top: 30px;
    right: -50px;
    animation: float2 5s ease-in-out infinite;
}

.franchise__float--3 {
    bottom: 40px;
    left: -50px;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* Features — grid 2x2 */
.franchise__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    width: 100%;
}

.franchise__feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.franchise__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.franchise__feature-text {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--light-text);
    line-height: var(--line-height);
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .franchise__wrapper {
        width: 95%;
        padding: 80px 0;
    }

    .franchise__float {
        display: none;
    }

    .franchise__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .franchise__float {
        display: block;
    }

    .franchise__float {
        max-width: 90px;
    }

    .franchise__float--1 {
        top: -10px;
        left: -20px;
    }

    .franchise__float--2 {
        top: 20px;
        right: -15px;
    }

    .franchise__float--3 {
        bottom: 20px;
        left: -15px;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .franchise__wrapper {
        width: 100%;
        border-radius: 0;
        padding: var(--section-padding-y-mobile) 0;
    }

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

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

/* ==================== PACOTES — HEADER ==================== */
.packages-header {
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center top, rgba(218, 27, 146, 0.15) 0%, var(--dark-bg-2) 60%);
    background-image: url("assets/bg-oferta.webp"), radial-gradient(ellipse at center top, rgba(218, 27, 146, 0.15) 0%, var(--dark-bg-2) 60%);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--section-padding-y) 0 180px;
    border-radius: 0 0 40px 40px;
}

.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: 700px;
    text-wrap: balance;
}

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

/* ==================== PACOTES — CARDS ==================== */
.packages {
    position: relative;
    z-index: 3;
    margin-top: -120px;
    padding-bottom: var(--section-padding-y);
}

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

/* Card base — estilo limpo, sem gradiente/inner shadow */
.package-card {
    position: relative;
    background: rgba(26, 29, 36, 0.38);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card DESTAQUE (Legacy) */
.package-card--featured {
    border-radius: 26px;
    border: 1px solid #72104D;
    background: radial-gradient(265.53% 99.64% at 51.12% 0.36%, #120C11 0%, #3B1031 83.17%, #6C0E55 100%);
    box-shadow: 0 25px 81.6px -35px #F50F9F90;
}

/* Nome + badge na mesma linha */
.package-card__name-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Badge Recomendado — encostada à direita do card */
.package-card__recommended {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFFCDE;
    color: #9A7027;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    padding: 4px 12px;
    border-radius: 73px;
    white-space: nowrap;
    letter-spacing: 0;
}

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

/* Topo: imagem + nome + badge + preço */
.package-card__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card__intro {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 15px;
}

.package-card__plan-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.package-card__badge {
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
}

.package-card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.package-card__installment strong {
    font-size: var(--text-h3);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
}

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

/* Divider */
.package-card__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Seções internas (Academy, Tools, Franquia) */
.package-card__section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.package-card__section-sub {
    font-size: 13px;
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    margin-bottom: 4px;
}

/* Lista com checks */
.package-card__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

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

/* CTA */
.package-card__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.package-card__guarantee {
    font-size: 14px;
    color: var(--dark-text);
    text-align: center;
}

.package-card__cta .cta-button,
.package-card__cta .cta-button-wrapper {
    width: 100%;
    text-align: center;
}

/* Botão alternativo (Explorer / Builder) */
.package-card__btn-alt {
    background: #3f3d46;
    box-shadow: none;
    border: 1px solid #3F374F;
}

.package-card__btn-alt:hover {
    background: #4d4460;
    border-color: #4d4460;
    color: #FFFFFF;
    box-shadow: none;
}

/* Itens desabilitados (não inclusos no plano) */
.package-card__disabled {
    opacity: 0.35;
}

/* Legacy — textos brancos nos checks */
.package-card--featured .package-card__list li {
    color: var(--dark-title);
}

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

    .packages-header {
        padding-bottom: 140px;
    }

    .packages {
        margin-top: -80px;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .packages-header {
        padding-bottom: 120px;
        border-radius: 0 0 24px 24px;
    }

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

    .packages {
        margin-top: -60px;
    }

    .package-card {
        padding: 28px 20px;
    }
}

/* ==================== SEÇÃO 8 — BÔNUS EXCLUSIVOS ==================== */
.bonus {
    padding: 120px 0 200px 0;
    background-color: var(--dark-bg-3);
}

.bonus__container {
    max-width: 910px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

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

.bonus__plan-img {
    width: 48px;
    height: auto;
}

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

.bonus__subtitle {
    font-size: var(--text-p1);
    color: var(--dark-text);
    max-width: 600px;
}

/* Tag rosa — bg sólido rosa, texto branco */
.tag--rosa {
    border: none;
    background: #DA1B92;
    box-shadow: none;
}

.tag-gradient-text--rosa {
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
}

/* Wrapper: imagem acima + card */
.bonus__card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus__card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 1;
    margin-bottom: -32px;
}

/* Card de bônus */
.bonus__card {
    width: 100%;
    background: linear-gradient(180deg, #1E2530 0%, #0E1118 100%);
    box-shadow: 0 0 32px 0 #0A0C12 inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.bonus__card-body {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.bonus__card-subtitle {
    font-size: var(--text-p1);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    margin-top: 8px;
}

.bonus__card-desc {
    font-size: var(--text-p1);
    color: var(--dark-text);
    line-height: 1.6;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bonus__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bonus__card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-p2);
    color: var(--dark-text);
    line-height: 1.5;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bonus__card-list li:last-child {
    border-bottom: none;
}

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

.bonus__card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-top: 8px;
    width: fit-content;
}

.bonus__card-highlight span {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: #0A0B0E;
}

.bonus__calendar {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bonus__card-footnote {
    font-size: var(--text-p1);
    color: var(--dark-text);
    font-style: italic;
    opacity: 0.8;
}

.bonus__category {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(218, 27, 146, 0.2);
    background-color: #11151D;
    border-radius: 20px;
}

.bonus__category-title {
    font-size: var(--text-p2);
    font-weight: var(--fw-semibold);
    color: var(--dark-title);
    padding-bottom: 8px;
}

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

    .bonus {
    padding: 40px 0 40px 0;
  
}

    .bonus__card-img {
        height: 180px;
        margin-bottom: -24px;
    }

    .bonus__card-body {
        padding: 24px 20px;
    }
}

/* ==================== FAIXA MARQUEE BÔNUS ==================== */
.marquee-bonus {
    position: relative;
    overflow: hidden;
    background: linear-gradient(92deg, rgba(10, 11, 14, 0.30) 4.49%, rgba(218, 27, 146, 0.30) 23.78%, rgba(10, 11, 14, 0.30) 47.17%, rgba(10, 11, 14, 0.30) 63.25%, rgba(218, 27, 146, 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: #DA1B92;
}

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

/* ==================== SEÇÃO 9 — GARANTIA ==================== */
.guarantee {
    position: relative;
    z-index: 10;
    background-color: #fd57c1;
    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, #0a0b0e 0%, #101217 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: -90px;
}

.guarantee__img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    margin-top: -60px;
    margin-bottom: 32px;
    flex-shrink: 0;
    transform: rotate(-8deg);
}

.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;
}

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

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

    .guarantee__box {
        padding: 0 24px 32px;
        margin-top: 20px;
        margin-bottom: -124px;
    }

    .guarantee__img {
        width: 96px;
        height: 96px;
        margin-top: -48px;
        margin-bottom: 24px;
    }

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

/* ==================== SEÇÃO 10 — EQUIPE ==================== */
.team {
    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: 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, #1E2530 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__title {
        font-size: var(--text-h3);
    }

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

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

   
}

/* ==================== SEÇÃO 11 — CTA FINAL ==================== */
.cta-final {
    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;
}

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

/* Citação — estilo testimonial */
.cta-final__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 700px;
}

.cta-final__quote-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

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

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

.cta-final__quote-author {
    font-size: var(--text-p2);
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    font-style: normal;
}

/* Conteúdo central */
.cta-final__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    max-width: 700px;
}

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

.cta-final__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-final__body p {
    text-wrap:balance;
}

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

/* Disclaimer */
.cta-final__disclaimer {
    font-size: 12px;
    font-weight: var(--fw-regular);
    color: var(--dark-text);
    line-height: var(--line-height);
    text-align: center;
    max-width: 620px;
    opacity: 0.6;
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .cta-final__title {
        font-size: var(--text-h3);
    }

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

    .cta-final__quote-photo {
        width: 56px;
        height: 56px;
    }
}

/* ==================== 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%, #FF9BD9 0%, #ED5AB6 22.41%, #a158bb 49%, #2B54C1 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;
}

.footer__company-details {
    font-size: 12.8px;
    font-weight: var(--fw-regular);
    line-height: 19.2px;
    color: #F2F2F2;
    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;
}

/* Legacy social styles (kept for reference) */
.footer__social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 354px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.footer__social-link:hover { transform: translateY(-2px); }

.footer__social-link svg,
.footer__social-link img {
    width: 20px;
    height: 20px;
}

/* Divider */
.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 15px 0;
}

/* 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;
    }

    .trust-seal {
        padding: 0 28px;
    }

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

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

    .three-pillars__cards .pillar-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin: 0 auto;
    }

    .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: 32px;
        --text-h2: 28px;
        --text-h3: 24px;
        --text-h4: 22px;
        --text-h5: 20px;
        --section-padding-y: var(--section-padding-y-mobile);
    }

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

    .ecosystem-intro,
    .academy,
    .tools,
    .events {
        padding: 40px 0;
    }

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

    .hero__nav-logo {
        height: 34px;
    }

    .hero__nav-countries-label {
        font-size: 13px;
    }

    .hero__nav-countries-img {
        height: 14px;
    }

    .hero__content {
        margin-bottom: 32px;
    }

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

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

    .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;
    }

    .hero-trust__seals {
        flex-direction: row;
        gap: 0;
    }

    .trust-seal {
        padding: 0 10px;
        gap: 8px;
    }

    .trust-seal__icon {
        width: 48px;
        height: 48px;
    }

    .trust-seal__icon img {
        width: 38px;
        height: 38px;
    }

    .trust-seal__text {
        font-size: 12px;
        max-width: 120px;
    }

    .trust-seal__sep {
        width: 1px;
        height: 40px;
    }

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

    .three-pillars__cards .pillar-card:last-child {
        grid-column: auto;
        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;
    }

    .pillar-card,
    .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__company-details {
        font-size: 11px;
        line-height: 16px;
    }

    .footer__social-link {
        width: 32px;
        height: 32px;
    }

    .footer__social-link svg,
    .footer__social-link img {
        width: 18px;
        height: 18px;
    }

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

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

/* ===== BOTTOM BLUR ===== */
.bottom-blur {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    pointer-events: none;
}

.bottom-blur__selector {
    position: relative;
    width: 100%;
    height: 100%;
}

.blur {
    position: absolute;
    inset: 0;
}

.blur-1 {
    backdrop-filter: blur(0.5px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0) 37.5%
    );
}

.blur-2 {
    backdrop-filter: blur(1px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 12.5%,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 1) 37.5%,
        rgba(0, 0, 0, 0) 50%
    );
}

.blur-3 {
    backdrop-filter: blur(2px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 1) 37.5%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0) 62.5%
    );
}

.blur-4 {
    backdrop-filter: blur(4px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 37.5%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 1) 62.5%,
        rgba(0, 0, 0, 0) 75%
    );
}

.blur-5 {
    backdrop-filter: blur(8px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 1) 62.5%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 0) 87.5%
    );
}

.blur-6 {
    backdrop-filter: blur(16px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 62.5%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );
}

.blur-7 {
    backdrop-filter: blur(32px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 75%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 1) 100%
    );
}

.blur-8 {
    backdrop-filter: blur(64px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 87.5%,
        rgba(0, 0, 0, 1) 100%
    );
}