/**
 * Shazam Aviator - Landing Page Styles
 * Design moderno e responsivo
 */

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

:root {
    /* Cores principais */
    --primary-green: #00ff00;
    --primary-red: #ff0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --card-bg-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 255, 0, 0.3);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Flare Overlay - REATIVADO */
.flare-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.flare {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.08) 40%, rgba(255, 0, 0, 0.02) 70%, transparent 90%);
    filter: blur(25px);
    animation: flareMove 15s linear infinite;
    opacity: 0.8;
}

.flare:nth-child(1) {
    top: 10%;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.flare:nth-child(2) {
    top: 60%;
    left: -600px;
    animation-delay: -7s;
    animation-duration: 25s;
    width: 1200px;
    height: 1200px;
}

.flare:nth-child(3) {
    top: 30%;
    left: -400px;
    animation-delay: -14s;
    animation-duration: 18s;
    width: 600px;
    height: 600px;
}

.flare:nth-child(4) {
    top: 80%;
    left: -480px;
    animation-delay: -3s;
    animation-duration: 22s;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.25) 0%, rgba(255, 0, 0, 0.12) 40%, rgba(255, 0, 0, 0.04) 70%, transparent 90%);
    opacity: 0.9;
}

.flare:nth-child(5) {
    top: 5%;
    left: -320px;
    animation-delay: -10s;
    animation-duration: 16s;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.15) 40%, rgba(255, 0, 0, 0.05) 70%, transparent 90%);
    opacity: 0.85;
}

/* Background com imagem e efeito parallax */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 120%; /* Maior para permitir movimento parallax */
    height: 120%; /* Maior para permitir movimento parallax */
    background-image: url('../images/background/BANNER-AVIATOR-v4-1-ajustado-_1_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.7; /* Transparência na imagem */
    z-index: -2;
    transform: translate(-10%, -10%); /* Centraliza o background maior */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   Header
   ======================================== */
.header {
    padding: var(--spacing-md) 0 var(--spacing-md) 0;
    position: relative;
    z-index: 10;
}

.logo-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.logo {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Header Content */
.header-content {
    text-align: center;
}

.header-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--spacing-xs) / 2);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    padding: 3px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
        linear-gradient(45deg, #00ff00, #66ff66, #00ff00, #00cc00) border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: borderPulseGreen 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.header-badge:hover {
    animation-play-state: paused;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
        linear-gradient(45deg, #33ff33, #00ff00, #33ff33, #66ff66) border-box;
    box-shadow: 0 12px 40px rgba(0, 255, 0, 0.6), 0 0 25px rgba(0, 255, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.check-emoji {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-text-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--spacing-xs) / 2);
}

.header-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.highlight-green {
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm) 0 var(--spacing-xs) 0;
    text-align: center;
    position: relative; /* Adicionado para posicionar a seta */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--primary-green);
    color: var(--darker-bg);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 0, 0, 0.5),
            0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(255, 0, 0, 0.5),
            0 0 0 15px rgba(255, 0, 0, 0);
    }
}

@keyframes borderPulse {
    0%, 100% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
            linear-gradient(45deg, #ff0000, #ff6666, #ff0000, #cc0000) border-box;
        box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
    }
    50% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
            linear-gradient(45deg, #ff6666, #ff0000, #ff6666, #ff3333) border-box;
        box-shadow: 0 8px 32px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.4);
    }
}

@keyframes borderPulseGreen {
    0%, 100% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
            linear-gradient(45deg, #00ff00, #66ff66, #00ff00, #00cc00) border-box;
        box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3);
    }
    50% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
            linear-gradient(45deg, #66ff66, #00ff00, #66ff66, #33ff33) border-box;
        box-shadow: 0 8px 32px rgba(0, 255, 0, 0.5), 0 0 15px rgba(0, 255, 0, 0.4);
    }
}

@keyframes countUp {
    0% {
        color: #4a9eff;
        text-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
    }
    4% {
        color: #4a9eff;
        text-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
    }
    20% {
        color: #a855f7;
        text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    }
    80% {
        color: #a855f7;
        text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    }
    100% {
        color: #ec4899;
        text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    }
}

@keyframes flarePulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes flareMove {
    0% {
        transform: translateX(-200px) translateY(0px) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translateX(25vw) translateY(-10px) scale(1.0);
        opacity: 1;
    }
    50% {
        transform: translateX(50vw) translateY(-20px) scale(1.2);
        opacity: 1.2;
    }
    75% {
        transform: translateX(75vw) translateY(-10px) scale(1.0);
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(0px) scale(0.8);
        opacity: 0;
    }
}

.hero-badge svg {
    width: 24px;
    height: 24px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .highlight {
    display: block;
    font-weight: 900;
    font-size: 1.4em;
    white-space: nowrap;
}

.hero-title .highlight .multiplier-part {
    display: inline-block;
    position: relative;
}

.hero-title .highlight .multiplier-part .flare-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0.1) 50%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    animation: flarePulse 1.5s ease-in-out infinite;
}

.hero-title .highlight .counter {
    animation: countUp 4s ease-out forwards;
    display: inline;
}

.hero-title .highlight .x-text {
    display: inline;
}

.hero-title .highlight .aviator-text {
    color: #ffffff;
    text-shadow: none;
    display: inline;
}

/* Video Player */
.video-wrapper {
    max-width: 600px;
    margin: 0 auto calc(var(--spacing-xs) / 2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--card-bg);
}

.video-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* CTA Button Animado */
.button-container {
    position: relative;
    margin: calc(var(--spacing-xs) / 2) 0;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: buttonEntrance 0.6s ease-out forwards;
}

.access-button {
    position: relative;
    width: 350px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000, #ff6666, #cc0000);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.5),
        0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
    transform: scale(1);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.access-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 0, 0, 0.7),
        0 0 0 0 rgba(255, 0, 0, 0.7);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.button-text {
    flex: 1;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
    will-change: transform;
}

.arrow-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-left: 2px;
}

/* Estado ativado (VERDE) */
.access-button.activated {
    background: linear-gradient(135deg, #00ff00, #66ff66, #00cc00);
    animation: glow 1.5s ease-in-out infinite alternate;
    box-shadow: 
        0 8px 25px rgba(0, 255, 0, 0.7),
        0 0 30px rgba(0, 255, 0, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
    color: #000000;
}

/* Estado com zoom */
.access-button.zoom-effect {
    animation: zoomPulse 2s ease-in-out forwards;
}

.access-button.activated .button-text {
    transform: translateX(35px);
}

.access-button.activated .arrow-container {
    transform: translateX(-250px);
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0);
}

.access-button.activated .arrow {
    border: none;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

/* Logo do WhatsApp */
.whatsapp-logo {
    width: 26px;
    height: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.access-button.activated .whatsapp-logo {
    opacity: 1;
}

.whatsapp-logo svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.access-button.activated .whatsapp-logo svg {
    fill: #000000;
}

/* Efeito de rastro da seta */
.arrow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.8s ease-out;
    z-index: 1;
    opacity: 0;
}

.access-button.activated .arrow-container::before {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

/* Efeito de trail da seta - DESABILITADO */
.arrow-container::after {
    display: none;
}

.access-button.activated .arrow-container::after {
    display: none;
}

/* Efeito de ondas */
.access-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.access-button:active::before {
    width: 300px;
    height: 300px;
}

/* Partículas de brilho */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1s ease-out forwards;
}

/* Animações do botão */
@keyframes glow {
    from {
        box-shadow: 
            0 8px 25px rgba(0, 255, 0, 0.6),
            0 0 30px rgba(0, 255, 0, 0.4),
            inset 0 1px 3px rgba(255, 255, 255, 0.2);
    }
    to {
        box-shadow: 
            0 8px 35px rgba(0, 255, 0, 0.8),
            0 0 50px rgba(0, 255, 0, 0.6),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }
}

@keyframes zoomPulse {
    0% {
        transform: scale(1.02);
        box-shadow: 
            0 8px 25px rgba(0, 255, 0, 0.6),
            0 0 30px rgba(0, 255, 0, 0.4),
            0 0 0 0 rgba(0, 255, 0, 0);
    }
    25% {
        transform: scale(1.15);
        box-shadow: 
            0 15px 50px rgba(0, 255, 0, 0.4),
            0 0 80px rgba(0, 255, 0, 0.3),
            0 0 0 20px rgba(0, 255, 0, 0.2);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 
            0 15px 50px rgba(0, 255, 0, 0.5),
            0 0 100px rgba(0, 255, 0, 0.4),
            0 0 0 40px rgba(0, 255, 0, 0.1);
    }
    75% {
        transform: scale(1.15);
        box-shadow: 
            0 15px 50px rgba(0, 255, 0, 0.4),
            0 0 80px rgba(0, 255, 0, 0.3),
            0 0 0 20px rgba(0, 255, 0, 0.2);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 
            0 8px 25px rgba(0, 255, 0, 0.6),
            0 0 30px rgba(0, 255, 0, 0.4),
            0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes sparkle {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1) translate(var(--dx), var(--dy));
    }
}

/* Animações de slide do texto */
.slide-in-from-left {
    animation: slideInFromLeft 0.5s ease forwards;
}

.slide-in-from-right {
    animation: slideInFromRight 0.5s ease forwards;
}

.slide-out-to-left {
    animation: slideOutToLeft 0.5s ease forwards;
}

.slide-out-to-right {
    animation: slideOutToRight 0.5s ease forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(35px);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(35px);
    }
    to {
        opacity: 0;
        transform: translateX(-40px);
    }
}

@keyframes slideOutToRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(90deg);
    }
    30% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.95) rotateX(45deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05) rotateX(0deg);
    }
    80% {
        transform: translateY(2px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* ========================================
   Aviator Style Section
   ======================================== */
.aviator-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.aviator-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.aviator-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    animation: aviatorPulse 2s ease-in-out infinite;
}

.aviator-badge.success {
    background: rgba(0, 255, 0, 0.1);
    border: 3px solid #00ff00;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3);
}

.aviator-badge.warning {
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid #ff0000;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

.aviator-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.aviator-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.aviator-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.aviator-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Histórico de Multiplicadores */
.aviator-history {
    margin: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.history-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.history-row.highlighted-green {
    border: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.history-row.highlighted-red {
    border: 2px solid #ff0000;
    background: rgba(255, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.multiplier {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.multiplier.blue {
    color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
}

.multiplier.purple {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.multiplier.pink {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

.multiplier:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

@keyframes aviatorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 255, 0, 0.5);
    }
}

/* ========================================
   Scroll Indicator (Seta Animada)
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: calc(var(--spacing-md) + 80px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7; /* Visível desde o início */
    transition: opacity 0.3s ease;
    z-index: 100;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) padding-box,
        linear-gradient(45deg, #ff3333, #ff0000, #ff3333, #ff6666) border-box;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.3),
        0 0 15px rgba(255, 0, 0, 0.2);
    animation: scrollBounce 2s ease-in-out infinite, glassGlow 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    animation-play-state: paused;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
        linear-gradient(45deg, #ff3333, #ff0000, #ff3333, #ff6666) border-box;
    box-shadow: 
        0 12px 40px rgba(255, 0, 0, 0.6), 
        0 0 25px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Animação de transparência pulsante */
@keyframes glassGlow {
    0%, 100% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) padding-box,
            linear-gradient(45deg, #ff3333, #ff0000, #ff3333, #ff6666) border-box;
        box-shadow: 
            0 8px 25px rgba(255, 0, 0, 0.2),
            0 0 15px rgba(255, 0, 0, 0.1);
    }
    50% {
        background: 
            linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
            linear-gradient(45deg, #ff3333, #ff0000, #ff3333, #ff6666) border-box;
        box-shadow: 
            0 8px 25px rgba(255, 0, 0, 0.5),
            0 0 15px rgba(255, 0, 0, 0.3);
    }
}

.scroll-arrow svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    margin: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: calc(100% - var(--spacing-lg));
    margin-left: auto;
    margin-right: auto;
}

.benefits-title-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin: 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 3px solid transparent;
    border-radius: var(--radius-xl);
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) padding-box,
        linear-gradient(45deg, #ff0000, #ff6666, #ff0000, #cc0000) border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    animation: borderPulse 3s ease-in-out infinite;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.benefits-title:hover {
    animation-play-state: paused;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
        linear-gradient(45deg, #ff3333, #ff0000, #ff3333, #ff6666) border-box;
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6), 0 0 25px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    width: 100%;
}

/* Benefit Card */
.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    margin: var(--spacing-sm);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: calc(100% - var(--spacing-md));
    width: calc(100% - var(--spacing-md));
    min-height: 500px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.6), transparent);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.benefit-card:hover::before {
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.2));
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.benefit-icon {
    width: 100%;
    height: auto;
    max-width: 600px;
    min-height: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 6px 12px rgba(255, 0, 0, 0.4)) contrast(1.3) saturate(1.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    min-width: 300px;
    min-height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: contrast(1.2) saturate(1.3) hue-rotate(-5deg);
}

.benefit-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(255, 0, 0, 0.7)) contrast(1.5) saturate(1.6) brightness(1.1);
}

.benefit-icon:hover img {
    transform: scale(1.02);
    filter: contrast(1.4) saturate(1.8) hue-rotate(-8deg) brightness(1.05);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Second Hero Section (After Videos)
   ======================================== */
.second-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-top: var(--spacing-xl);
}

.second-hero .header-content {
    text-align: center;
}

.second-hero .header-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--spacing-xs) / 2);
}

.second-hero .header-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-xl);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #00ff00, #66ff66, #00cc00);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    animation: borderPulseGreen 2s infinite;
    transition: all 0.3s ease;
}

.second-hero .header-text-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--spacing-xs) / 2);
}

.second-hero .header-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.second-hero .highlight {
    display: block;
    font-weight: 900;
    font-size: 1.4em;
    white-space: nowrap;
}

.second-hero .highlight .multiplier-part {
    display: inline-block;
    position: relative;
}

.second-hero .highlight .counter,
.second-hero .highlight .x-text {
    color: #ec4899;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    display: inline;
}

.second-hero .highlight .aviator-text {
    color: #ffffff;
    text-shadow: none;
    display: inline;
}

.second-hero .highlight .flare-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: flarePulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Second CTA Button */
.second-cta-container {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.second-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #00ff00, #66ff66, #00cc00);
    color: #000000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.second-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 0, 0.6);
    background: linear-gradient(135deg, #00cc00, #00ff00, #66ff66);
}

.second-cta-button svg {
    fill: #000000;
    width: 24px;
    height: 24px;
}

/* Second Hero Responsive */
@media (max-width: 768px) {
    .second-hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    
    .second-hero .header-badge {
        font-size: 1.8rem;
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-xs);
    }
    
    .second-hero .header-text {
        font-size: 1.4rem;
    }
    
    .second-cta-button {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .second-hero {
        min-height: 50vh;
        padding: var(--spacing-md) 0;
    }
    
    .second-hero .header-badge {
        font-size: 1.4rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .second-hero .header-text {
        font-size: 1.2rem;
    }
    
    .second-cta-button {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
}

/* ========================================
   Second CTA Button Section
   ======================================== */
.second-cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

/* Second Button - Same styles as first button */
.button-container-2 {
    position: relative;
    margin: calc(var(--spacing-xs) / 2) 0;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-container-2.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: buttonEntrance 0.6s ease-out forwards;
}

.access-button-2 {
    position: relative;
    width: 350px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000, #ff6666, #cc0000);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.4),
        0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transform: scale(1);
}

.access-button-2:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 0, 0, 0.6),
        0 0 0 0 rgba(255, 0, 0, 0.7);
}

.access-button-2 .button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.button-text-2 {
    flex: 1;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.access-button-2 .arrow-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.access-button-2 .arrow {
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    margin-left: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.access-button-2.activated {
    background: linear-gradient(135deg, #00ff00, #66ff66, #00cc00);
    animation: glow 1.5s infinite alternate;
    box-shadow: 
        0 8px 25px rgba(0, 255, 0, 0.6),
        0 0 30px rgba(0, 255, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    color: #000000;
}

.access-button-2.activated .button-text-2 {
    transform: translateX(35px);
}

.access-button-2.activated .arrow-container {
    transform: translateX(-250px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.access-button-2.activated .arrow {
    border: none;
    width: 100%;
    height: 100%;
    margin-left: 0;
}

.access-button-2 .whatsapp-logo {
    width: 26px;
    height: 26px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.access-button-2.activated .whatsapp-logo {
    opacity: 1;
}

.access-button-2 .whatsapp-logo svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.access-button-2.activated .whatsapp-logo svg {
    fill: #000000;
}

.access-button-2.zoom-effect {
    animation: zoomPulse 2s ease-in-out forwards;
}

/* Responsive Second Button */
@media (max-width: 768px) {
    .access-button-2 {
        width: 100%;
        max-width: 350px;
        height: 60px;
        font-size: 16px;
    }
    
    .access-button-2 .arrow-container {
        width: 35px;
        height: 35px;
    }
    
    .access-button-2 .arrow {
        border-left: 8px solid white;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        margin-left: 1px;
    }
    
    .access-button-2 .whatsapp-logo {
        width: 22px;
        height: 22px;
    }
    
    .access-button-2.activated .button-text-2 {
        transform: translateX(25px);
    }
    
    .access-button-2.activated .arrow-container {
        transform: translateX(-210px);
    }
}

@media (max-width: 480px) {
    .access-button-2 {
        height: 55px;
        font-size: 14px;
        max-width: 300px;
    }
    
    .access-button-2 .arrow-container {
        width: 32px;
        height: 32px;
    }
    
    .access-button-2 .whatsapp-logo {
        width: 20px;
        height: 20px;
    }
    
    .access-button-2.activated .button-text-2 {
        transform: translateX(20px);
    }
    
    .access-button-2.activated .arrow-container {
        transform: translateX(-230px);
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    text-align: center;
    position: relative;
    margin-top: var(--spacing-xl);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    clip-path: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
    animation: footerLinePulse 4s ease-in-out infinite;
}

@keyframes footerLinePulse {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        transform: translateX(0%);
        opacity: 1;
    }
    60% {
        transform: translateX(0%);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet - 3 benefícios por linha */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo {
        height: 25px;
    }
    
    .header-badge {
        font-size: 1.2rem;
        padding: var(--spacing-sm) var(--spacing-lg);
        border-width: 3px;
    }
    
    .check-emoji {
        font-size: 1.4rem;
    }
    
    .header-text {
        font-size: 1.6rem;
    }
    
    .aviator-badge {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .aviator-icon {
        font-size: 2rem;
    }
    
    .aviator-title, .aviator-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .history-row {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
    
    .multiplier {
        font-size: 1rem;
        min-width: 50px;
        padding: 4px 8px;
    }
    
    .hero {
        min-height: 75vh; /* Diminuído de 100vh para 85vh no mobile */
        padding: var(--spacing-xs) 0 calc(var(--spacing-xs) / 2) 0;
        justify-content: center;
    }
    
    .scroll-indicator {
        bottom: calc(var(--spacing-sm) + 60px); /* Ajustado para mobile - mais próximo do botão */
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
        border-radius: var(--radius-lg); /* Menor radius no mobile */
    }
    
    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: calc(var(--spacing-xs) / 2);
    }
    
    .hero-title .highlight {
        white-space: nowrap;
    }
    
    .video-wrapper {
        max-width: 90%;
    }
    
    .access-button {
        width: 100%;
        max-width: 350px;
        font-size: 16px;
        height: 60px;
    }
    
    .button-content {
        padding: 0 15px;
    }
    
    .button-text {
        font-size: 14px;
    }
    
    .arrow-container {
        width: 35px;
        height: 35px;
    }
    
    .arrow {
        border-left: 8px solid white;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        margin-left: 1px;
    }
    
    .whatsapp-logo {
        width: 22px;
        height: 22px;
    }
    
    .access-button.activated .button-text {
        transform: translateX(25px);
    }
    
    .access-button.activated .arrow-container {
        transform: translateX(-210px);
    }
    
    .benefits {
        padding: var(--spacing-lg);
        margin: var(--spacing-xs) var(--spacing-lg);
        border-radius: var(--radius-lg);
    }
    
    .benefits-title-wrapper {
        margin-bottom: var(--spacing-md);
        width: 100%;
    }
    
    .benefits-title {
        font-size: 1.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
        border-width: 2px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
        align-items: stretch;
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
        margin: var(--spacing-xs);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
        text-align: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .benefit-card::before {
        display: none;
    }
    
    .benefit-card:hover {
        transform: none;
        border-color: transparent;
        box-shadow: none;
        background: transparent;
    }
    
    .benefit-icon {
        width: 100%;
        height: auto;
        max-width: 250px;
        min-height: 200px;
        margin: 0 auto;
    }
    
    .benefit-icon img {
        width: 100%;
        height: 100%;
        min-width: 180px;
        min-height: 180px;
        object-fit: contain;
    }
    
    .footer-disclaimer {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {

    .benefits { 
        width: 90%;
        padding:20px 0px;
        margin: auto;
        max-width: 100%;
    }
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-title .highlight {
        white-space: nowrap;
    }
    
    .video-wrapper {
        max-width: 95%;
    }
    
    .access-button {
        height: 55px;
        font-size: 15px;
    }
    
    .button-content {
        padding: 0 12px;
    }
    
    .button-text {
        font-size: 13px;
    }
    
    .arrow-container {
        width: 32px;
        height: 32px;
    }
    
    .arrow {
        border-left: 7px solid white;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        margin-left: 1px;
    }
    
    .whatsapp-logo {
        width: 18px;
        height: 18px;
    }
    
    .access-button.activated .button-text {
        transform: translateX(20px);
    }
    
    .access-button.activated .arrow-container {
        transform: translateX(-230px);
    }
    
    .header-badge {
        font-size: 1.0rem;
        padding: var(--spacing-xs) var(--spacing-md);
        border-width: 3px;
    }
    
    .check-emoji {
        font-size: 1.2rem;
    }
    
    .header-text {
        font-size: 1.4rem;
    }
    
    .benefits-title {
        font-size: 1.2rem;
        padding: calc(var(--spacing-xs) * 0.7) var(--spacing-sm);
        border-width: 2px;
    }
    
    .benefits-grid {
        gap: 2px;
        margin-top: var(--spacing-xs);
    }
    
    .benefit-icon {
        max-width: 200px;
        min-height: 160px;
    }
    
    .benefit-icon img {
        min-width: 150px;
        min-height: 150px;
        max-height: 200px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.video-wrapper,
.access-button,
.benefit-card {
    animation: fadeIn 0.6s ease-out backwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.video-wrapper {
    animation-delay: 0.2s;
}

.access-button {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ========================================
   Banner Section
   ======================================== */
.banner-section {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: 0 var(--spacing-lg);
}

.banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* Banner Desktop - Visível apenas no desktop com largura máxima igual aos benefícios */
.banner-desktop {
    display: block;
    max-width: none;
    width: 100%;
}

/* Banner Mobile - Oculto no desktop */
.banner-mobile {
    display: none;
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner-section {
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .banner-wrapper {
        max-width: 100%;
    }
    
    .banner-image {
        max-width: 95%;
        border-radius: var(--radius-md);
    }
    
    /* Ocultar banner desktop no mobile */
    .banner-desktop {
        display: none;
    }
    
    /* Mostrar banner mobile no mobile */
    .banner-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .banner-section {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        padding: 0 12px;
    }
    
    .banner-image {
        max-width: 100%;
        border-radius: var(--radius-sm);
    }
}

/* ========================================
   Video Carousel Section
   ======================================== */
.video-carousel-section {
    padding: var(--spacing-xl) 0;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 500px; /* Aumentado para garantir visibilidade */
    display: block; /* Garantir que está visível */
}

.carousel-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.carousel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff0000, #ff6666, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.video-carousel-container {
    position: relative;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    min-height: 400px; /* Aumentado */
    display: block; /* Garantir visibilidade */
}

.video-carousel {
    display: flex;
    gap: var(--spacing-xs); /* Ainda menor - vídeos bem próximos */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) 0;
    min-height: 400px; /* Aumentado para garantir altura dos vídeos */
    align-items: stretch; /* Garantir que os slides ocupem toda altura */
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-slide {
    flex: 0 0 350px; /* Aumentado ainda mais para aproveitar melhor o espaço */
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.video-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-slide.active {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transform: scale(1.02);
}

.video-slide:not(.active) {
    opacity: 0.6;
    filter: grayscale(50%);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Stories proportion */
    background: #000;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
}

.video-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
}

/* Video Lock Overlay */
.video-slide.locked .video-thumbnail {
    filter: blur(1px);
    opacity: 0.9;
}

.video-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-lock-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.lock-icon {
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.video-lock-overlay:hover .lock-icon {
    color: #ff0000;
    transform: scale(1.1);
}

.lock-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-lock-overlay:hover .lock-text {
    color: #ff0000;
    transform: translateY(-2px);
}

/* Locked video slide adjustments */
.video-slide.locked:not(.active) {
    opacity: 0.8;
    filter: grayscale(40%);
}

.video-slide.locked.active {
    opacity: 1;
    filter: grayscale(20%);
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff0000;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Desktop Responsive */
@media (min-width: 1025px) {
    .video-carousel {
        justify-content: space-around;
        overflow: visible;
    }
    
    .video-slide {
        flex: 0 0 280px; /* Aumentado de 250px para 280px */
    }
    
    .carousel-arrow {
        display: block;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .video-carousel-container {
        padding: 0 var(--spacing-sm);
    }
    
    .video-slide {
        flex: 0 0 260px; /* Aumentado de 240px para 260px */
    }
    
    .carousel-arrow {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-carousel-section {
        padding: var(--spacing-lg) 0;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .video-carousel-container {
        padding: 0 var(--spacing-xs);
    }
    
    .video-carousel {
        gap: var(--spacing-sm);
        padding: var(--spacing-xs) 10px;
        scroll-snap-type: x mandatory;
    }
    
    .video-slide {
        flex: 0 0 200px;
        scroll-snap-align: center;
    }
    
    .video-slide:not(.active) {
        opacity: 0.8;
        filter: grayscale(30%);
    }
    
    .carousel-dots {
        margin-top: var(--spacing-md);
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    

    .hero {
        min-height: 60vh;
        padding-bottom: 80px;
    }

    .scroll-indicator {
        bottom: calc(var(--spacing-sm) + -30px);
    }

    .video-slide {
        flex: 0 0 250px;
    }
    
    .video-info {
        padding: var(--spacing-xs);
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   Payouts Section (Últimas Velas)
   ======================================== */
.payouts-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 10;
}

.payouts-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.payouts-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff0000, #ff6666, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
}

.payouts-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0;
    scroll-behavior: smooth;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .payouts-grid {
        justify-content: flex-start;
        padding-left: 0 !important;
    }
}

.payouts-grid::-webkit-scrollbar {
    height: 6px;
}

.payouts-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.payouts-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.payouts-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animações */
@keyframes payoutSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .payouts-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--spacing-xs);
    }

    .historic-payout {
        min-height: 120px;
    }

    .historic-payout-value {
        font-size: 1.4rem;
    }

    .payout-value-small {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .payouts-section {
        padding: var(--spacing-lg) 0;
    }

    .payouts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 var(--spacing-sm);
    }

    .historic-payout {
        padding: 0.5rem;
        min-height: 100px;
    }

    .historic-payout-value {
        font-size: 1.5rem;
    }

    .payout-value-small {
        font-size: 1.3rem;
    }

    .historic-payout-time {
        font-size: 0.7rem;
    }

    .extra-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .payouts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 12px;
    }

    .historic-payout {
        padding: 0.5rem;
        min-height: 90px;
    }

    .historic-payout-value {
        font-size: 1.4rem;
    }

    .payout-value-small {
        font-size: 1.2rem;
    }

    .historic-payout-time {
        font-size: 0.65rem;
    }

    .extra-item {
        font-size: 0.7rem;
    }
}

