/* =========================================
   GLOBAL VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    --color-bg: #050505;
    --color-surface: rgba(20, 20, 25, 0.6);
    --color-surface-hover: rgba(30, 30, 38, 0.8);
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;

    --color-magenta: #ff0050;
    --color-cyan: #00f2fe;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

.cyan {
    color: var(--color-cyan);
}

.magenta {
    color: var(--color-magenta);
}

/* Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-magenta), #990030);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--color-cyan), #00767c);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.cta-primary:hover::before {
    opacity: 1;
}

.glow-btn {
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.4);
}

.glow-btn:hover {
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.5);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 80, 0);
    }
}

/* Animations setup */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* =========================================
   HERO SECTION (REVEAL EFFECT)
========================================= */
.hero-reveal {
    position: relative;
    min-height: 100vh;
    height: 110vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Centralizado verticalmente */
    justify-content: center;
    padding-bottom: 0;
    /* Removido padding bottom para centralização real */
    background: #000;
}

.reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.reveal-bg .bg-bottom,
#reveal-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-bg .bg-bottom {
    z-index: 1;
}

#reveal-canvas {
    z-index: 2;
    cursor: none;
    /* We might want to hide the real cursor to use a custom one or just for the effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removido o gradiente de transição suave */
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
    /* Mantém o bloco à esquerda */
    width: 100%;
    pointer-events: none;
}

.hero-content .hero-text {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza logo e botão em relação ao texto */
    text-align: center;
    /* Centraliza as linhas de texto */
    max-width: 600px;
    /* Limita a largura do bloco na esquerda */
}

.hero-logo-top {
    width: clamp(260px, 80vw, 380px);
    height: auto;
    margin-bottom: 24px;
    display: block;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-inline: 0;
    /* Alinhado à esquerda */
}

.hero-text h3 {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-family: var(--font-body);
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 32px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin-inline: auto;
    /* Garante centralização interna */
}

/* =========================================
   SECTION: TARGET AUDIENCE
========================================= */
.target-audience {
    padding: 120px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

#audience-trail-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind cards container */
    pointer-events: none;
    mix-blend-mode: screen;
}

.target-audience .container {
    position: relative;
    z-index: 10;
    /* Above target-trail-canvas */
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* Lights out effect: dim other cards when one is hovered */
.cards-grid:hover .card-glass-wrapper:not(:hover) {
    opacity: 0.2;
    filter: blur(2px) saturate(0.5);
    transform: scale(0.95);
}

.card-glass-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass-wrapper:hover {
    transform: translateY(-10px);
}

/* Interactive isolated leaks */
.glass-card .leak-cyan,
.glass-card .leak-magenta {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    opacity: 0.15;
    /* Subtler default */
    transition: opacity 0.4s ease;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
    /* Content will have z-index 5 */
}

.card-glass-wrapper:hover .leak-cyan,
.card-glass-wrapper:hover .leak-magenta {
    opacity: 0.7;
    /* Brighter on hover but contained */
}

.glass-card .leak-cyan {
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.8) 0%, transparent 70%);
    filter: blur(30px);
    transition: opacity 0.6s ease;
    opacity: 0;
    position: absolute;
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    z-index: 1;
    pointer-events: none;
}

.glass-card .leak-magenta {
    background: radial-gradient(circle at center, rgba(255, 0, 80, 0.8) 0%, transparent 70%);
    filter: blur(30px);
    transition: opacity 0.6s ease;
    opacity: 0;
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    z-index: 1;
    pointer-events: none;
}

.glass-card:hover .leak-cyan {
    opacity: 0.9;
    animation: jellyLeak 10s infinite ease-in-out;
}

.glass-card:hover .leak-magenta {
    opacity: 0.9;
    animation: jellyLeak 10s infinite ease-in-out 5s;
}

/* Discreet External Bloom */
.card-glass-wrapper .bloom-spot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    margin: -50% 0 0 -50%;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.2s linear;
    transform: translate(calc(var(--tx, 0) * 1.2px), calc(var(--ty, 0) * 1.2px));
    z-index: 0;
}

.card-glass-wrapper:hover .bloom-spot {
    opacity: 1;
    transform: translate(calc(var(--tx, 0) * 1.5px), calc(var(--ty, 0) * 1.5px)) scale(1.1);
}

.glass-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    /* Synced with CTA */
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 242, 254, 0.2),
        0 0 30px rgba(255, 0, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    /* Sharp top edge synced */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* Elements inside are clipped */
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 30px 20px;
    }
}

.card-icon,
.glass-card h4,
.glass-card p {
    position: relative;
    z-index: 5;
    /* Above lights */
}

.card-glass-wrapper:hover .glass-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 36px;
    color: var(--color-cyan);
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-glass-wrapper:hover .card-icon {
    color: var(--color-magenta);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.6));
}

.glass-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-heading);
}

.glass-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* =========================================
   SECTION: SOCIAL PROOF
========================================= */
.social-proof {
    padding: 180px 0 250px;
    background: linear-gradient(135deg, var(--color-cyan) 30%, var(--color-magenta) 70%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 1;
    /* Abaixo do conteúdo */
    pointer-events: none;
}

.social-proof .container {
    position: relative;
    z-index: 10;
}

.social-proof .section-header h2 {
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-proof .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
}

.ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
}

.ticker-track img {
    width: 200px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

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

    100% {
        transform: translateX(0);
    }
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: scroll 20s linear infinite;
    /* width is managed via js/css for infinite illusion */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-500px * 2 - 48px));
    }

    /* Just a rough estimate, JS handles better usually, or we use CSS nicely */
}

.carousel-item {
    width: clamp(280px, 85vw, 500px);
    height: clamp(200px, 40vh, 300px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: var(--glass-border);
    flex-shrink: 0;
}

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

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-text);
    border: 1px solid var(--color-cyan);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

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

/* =========================================
   SECTION: AUTHORITY
========================================= */
.authority {
    padding: 120px 0;
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

/* Authority Liquid Background */
.authority-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.authority-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg-autoridade2.jpg') center bottom no-repeat;
    background-size: cover;
    background-attachment: scroll;
    opacity: 1;
}

.authority-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Smooth transition with top fold and subtle vignette */
    background: linear-gradient(to bottom,
            #050505 0%,
            transparent 15%,
            transparent 80%,
            #050505 100%);
    z-index: 2;
}


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

.authority-image {
    position: relative;
    border-radius: 20px;
}

.authority-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    display: block;
}

.neon-frame {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid var(--color-magenta);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}

.authority-content h2 {
    margin-bottom: 24px;
}

.authority-content p {
    margin-bottom: 16px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-outline {
    display: inline-block;
    border-bottom: 2px solid var(--color-magenta);
    padding-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.cta-outline:hover {
    color: var(--color-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 80, 0.5);
}

/* =========================================
   SECTION: CONTENT MODULES
========================================= */
.modules {
    padding: 100px 0;
    position: relative;
}

.modules-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.modules-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.modules-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modules-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modules .container {
    position: relative;
    z-index: 2;
}

.modules-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.module-card {
    background: var(--color-surface);
    border: var(--glass-border);
    padding: 24px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.module-card:hover {
    background: var(--color-surface-hover);
    border-color: rgba(0, 242, 254, 0.3);
}

.mod-num {
    font-family: var(--font-heading);
    color: var(--color-magenta);
    font-size: 1.2rem;
    font-weight: 800;
}

.module-card h5 {
    font-size: 1.1rem;
    color: #fff;
}

.members-area-mockup {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    border: none;
}

.members-area-mockup img {
    width: 100%;
    display: block;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   SECTION: METHODOLOGY
========================================= */
.methodology {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, #000000 0%, transparent 45%), radial-gradient(circle at center, rgba(0, 242, 254, 0.05), transparent 60%);
}

.circular-infographic {
    position: relative;
    width: min(400px, 90vw);
    height: min(400px, 90vw);
    margin: 60px auto;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.center-logo img {
    width: 250px;
    height: auto;
    display: block;
}

.center-logo.anim-trigger img {
    opacity: 0;
}

.center-logo.anim-trigger.active img {
    animation: logoIntro 1.8s ease-in-out forwards;
}

@keyframes logoIntro {
    0% {
        opacity: 0;
        width: 80vw;
    }

    15% {
        opacity: 1;
        width: 80vw;
    }

    40% {
        opacity: 1;
        width: 80vw;
    }

    100% {
        opacity: 1;
        width: 250px;
    }
}

.pillar {
    position: absolute;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--color-surface);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-magenta);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.pillar-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.4);
    border-color: var(--color-magenta);
}

.pillar h5 {
    font-size: 0.9rem;
}

/* Positioning */
.pillar-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pillar-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.pillar-3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pillar-4 {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.connecting-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   SECTION: BONUSES
========================================= */
.bonuses {
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: var(--color-surface);
    border: var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    text-align: center;
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-cyan);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.bonus-icon {
    font-size: 40px;
    color: var(--color-magenta);
    margin-bottom: 20px;
    display: block;
}

.bonus-card h4 {
    margin-bottom: 8px;
}

.bonus-value {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* =========================================
   SECTION: NOTIFICATION VIDEO SCROLL
========================================= */
.notification-vid-section {
    position: relative;
    height: 150vh;
    /* Scroll depth for the video */
    background: #000;
}

.vid-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.vid-sticky-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   SECTION: OFFER & GUARANTEE
========================================= */
.offer {
    padding: 100px 0 140px;
}

.offer-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 20px;
    padding: 2px;
    /* For the gradient border effect */
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 242, 254, 0.1);
}

.offer-header,
.offer-content {
    background: #0d0d12;
    padding: 40px;
}

.offer-header {
    border-radius: 18px 18px 0 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-header p {
    margin-bottom: 0;
}

.offer-logo {
    width: 400px;
    max-width: 100%;
    height: auto;
    margin: 20px auto 10px;
    display: block;
    opacity: 0.9;
}

.offer-content {
    border-radius: 0 0 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-includes {
    list-style: none;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.offer-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.offer-pricing {
    text-align: center;
    margin-bottom: 40px;
}

.price-normal {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.price-installments {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 8px;
}

.price-big {
    font-size: clamp(3rem, 10vw, 4rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-cyan);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.price-cash {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.offer .cta-primary {
    width: 100%;
    max-width: 500px;
    font-size: 1.2rem;
    padding: 20px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.guarantee i {
    font-size: 50px;
    color: var(--color-magenta);
}

/* =========================================
   FOOTER
========================================= */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-muted);
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a:hover {
    color: #fff;
}

/* =========================================
   SECTION 7.5 - NOTIFICATION STACK (iOS STYLE)
========================================= */
.notif-stack-section {
    position: relative;
    height: 75vh;
    background: transparent;
}

.notif-sticky-container {
    /* position: fixed -- sempre no viewport, independente de overflow */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 90;
    /* Oculto por padrão; JS adiciona .is-active quando em view */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.notif-sticky-container.is-active {
    opacity: 1;
    pointer-events: auto;
}

.notif-stack {
    position: relative;
    width: min(460px, 90vw);
    /* Altura suficiente para a imagem da notificação */
    height: 160px;
}

.notif-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    /* Empilhamento: cada card tem z-index crescente */
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    transform-origin: top center;
    will-change: transform, opacity;
    /* Sombra para dar profundidade */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Z-index estático por ordem */
.notif-card[data-index="0"] {
    z-index: 1;
}

.notif-card[data-index="1"] {
    z-index: 2;
}

.notif-card[data-index="2"] {
    z-index: 3;
}

.notif-card[data-index="3"] {
    z-index: 4;
}

.notif-card[data-index="4"] {
    z-index: 5;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {

    .authority-grid,
    .modules-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .authority-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .authority-content .stats {
        justify-content: center;
    }

    .modules-grid {
        order: 2;
    }

    .members-area-mockup {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .offer-header,
    .offer-content {
        padding: 30px 20px;
    }

    .price-big {
        font-size: 3rem;
    }

    .circular-infographic {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }

    .center-logo {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }

    .center-logo img {
        width: 200px;
        margin: 0 auto;
    }

    .pillar,
    .pillar-1,
    .pillar-2,
    .pillar-3,
    .pillar-4 {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        transform: none !important;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .pillar>div,
    .pillar-1>div,
    .pillar-2>div,
    .pillar-3>div,
    .pillar-4>div {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left;
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px 20px;
        border-radius: 12px;
        border: var(--glass-border);
    }

    .pillar-icon {
        margin-bottom: 0 !important;
        margin-right: 15px;
        font-size: 22px !important;
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0;
    }

    .pillar h5 {
        font-size: 1rem !important;
        margin: 0 !important;
    }

    .connecting-circle {
        display: none;
    }

    .hero-text h1 {
        margin-top: 60px;
    }
}

/* =========================================
   HERO MOBILE - CONTENT POSITION
   Centraliza o bloco logo+texto+botão
   na metade superior da tela
========================================= */
@media (max-width: 600px) {
    .hero-reveal {
        /* Usar flex column para empilhar e alinhar ao topo */
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-content {
        /* Ocupa exatamente os 50% superiores */
        height: 50vh;
        width: 100%;
        /* Centraliza o bloco horizontalmente e verticalmente dentro desse espaço */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .hero-content .hero-text {
        /* Texto totalmente centralizado */
        align-items: center;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
}


/* =========================================
   FLOATING LIQUID GLASS CTA
========================================= */
/* =========================================
   APPLE-STYLE CLEAR LIQUID GLASS CTA
========================================= */
.cta-glass-wrapper {
    position: fixed;
    bottom: clamp(15px, 4vw, 30px);
    right: clamp(15px, 4vw, 30px);
    z-index: 1000;
    width: auto;
    min-width: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cta-glass-wrapper.show-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Atmospheric External Leaks */
.cta-glass-wrapper .leak-cyan {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.6) 0%, transparent 70%);
    filter: blur(25px);
    mix-blend-mode: screen;
    animation: jellyLeak 10s infinite ease-in-out;
    z-index: 1;
}

.cta-glass-wrapper .leak-magenta {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(255, 0, 80, 0.6) 0%, transparent 70%);
    filter: blur(25px);
    mix-blend-mode: screen;
    animation: jellyLeak 10s infinite ease-in-out 5s;
    z-index: 1;
}

@keyframes jellyLeak {
    0% {
        transform: translate(-20px, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translate(20px, 10px) scale(1.4);
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translate(-20px, -10px) scale(1);
        opacity: 0;
    }
}

@media (max-width: 480px) {

    .cta-glass-wrapper .leak-cyan,
    .cta-glass-wrapper .leak-magenta {
        display: none;
        /* Hide expensive/overflowing leaks on small mobile */
    }
}

.liquid-glass-cta {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);

    /* Crystal Border */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    /* Sharp top inner edge */

    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    /* For edge caustics */
    transition: transform 0.3s ease;
}

.liquid-glass-cta img {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    position: relative;
    z-index: 5;
}

.liquid-glass-cta span {
    position: relative;
    z-index: 5;
    white-space: nowrap;
}

/* External Bloom Pulse synced with leaks */
.cta-glass-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.15);
    /* Base bloom */
    border-radius: 50px;
    animation: bloomPulse 10s infinite;
    z-index: 0;
}

@keyframes bloomPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    }

    50% {
        box-shadow: 0 0 60px rgba(0, 242, 254, 0.3), 0 0 60px rgba(255, 0, 80, 0.3);
    }
}

.liquid-glass-cta:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-glass-wrapper {
        min-width: 180px;
    }

    .liquid-glass-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .liquid-glass-cta img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .offer-includes {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-glass-wrapper {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        min-width: 100% !important;
        transform: none !important;
        opacity: 0;
        /* Base state, script will toggle show-cta */
        display: none;
    }

    .cta-glass-wrapper.show-cta {
        display: flex !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .liquid-glass-cta {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 18px !important;
        font-size: 1rem !important;
        background: rgba(10, 10, 15, 0.95) !important;
        /* Slightly darker/more solid for base bar */
    }

    .liquid-glass-cta span {
        white-space: normal !important;
        text-align: center;
    }
}