:root {
    /* Cores principais */
    --color-black: #0c0c0c;
    --color-dark: #121212;
    --color-dark-alt: #151515;
    --color-primary: #14C860; /* Verde primário */
    --color-primary-dark: #0fb754;
    --color-primary-light: rgba(20, 200, 96, 0.1);
    --color-complementary1: #1B85B9; /* Azul (tétrade) */
    --color-complementary2: #FF9419; /* Laranja (tétrade) */
    --color-complementary3: #FF4919; /* Vermelho (tétrade) */
    --color-white: #FFFFFF;
    --color-light-gray: #EEEEEE;
    --color-text-gray: #DDDDDD;
    --color-text-light: #F2F2F2;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    /* Bordas */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset e estilos base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
}

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

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

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

/* Backgrounds Animados e Efeitos */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shine-effect {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

/* Estilo unificado para botões */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(20, 200, 96, 0.4), 
                0 0 20px rgba(20, 200, 96, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    text-decoration: none;
    text-align: center;
}

.btn-primary .button-text {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.2s ease;
}

.btn-primary .button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine-effect 3s infinite;
    z-index: 0;
}

.btn-primary:hover {
    transform: translateY(-5px) perspective(1000px);
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 12px 30px rgba(20, 200, 96, 0.5),
                0 0 30px rgba(20, 200, 96, 0.4);
}

.btn-primary:hover .button-text {
    transform: scale(1.05);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 200, 96, 0.4);
}

/* Estilos compartilhados para as seções */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title span {
    color: var(--color-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Hero Section - Novo Design Impactante */
.hero-section {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A23, #131342);
}

/* Efeito de background animado para a Hero Section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(71, 23, 246, 0.2) 0%, rgba(177, 24, 207, 0.2) 50%, rgba(239, 183, 0, 0.2) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    background-size: 200% 200%, 100% 100%;
    animation: gradientFlow 15s ease infinite;
    z-index: 0;
}

/* Partículas de luxo */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 215, 0, 0.7); /* Cor dourada para remeter a luxo */
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.5);
    filter: blur(1px);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    width: 12px;
    height: 12px;
    animation: float 6s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 70%;
    left: 80%;
    width: 15px;
    height: 15px;
    animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    width: 10px;
    height: 10px;
    animation: float 10s ease-in-out infinite, pulse 5s ease-in-out infinite;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    width: 14px;
    height: 14px;
    animation: float 7s ease-in-out infinite, pulse 3.5s ease-in-out infinite;
}

/* Grade de fundo sofisticada */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 215, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    transform: perspective(1000px) rotateX(60deg) scale(1.5);
    transform-origin: center center;
    opacity: 0.3;
    pointer-events: none;
}

/* Elementos da Hero Section */
.hero-content {
    position: relative;
    z-index: 1;
}

/* Animação para objection cards */
.objection-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.objection-card {
    background: var(--color-black);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 1.8rem;
    width: 300px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.objection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.objection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.objection-card:hover::before {
    opacity: 1;
}

.objection-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--color-primary);
    background: rgba(20, 200, 96, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(20, 200, 96, 0.2);
    transition: var(--transition-normal);
}

.objection-card:hover .objection-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 25px rgba(20, 200, 96, 0.4);
}

.objection-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.objection-text {
    color: var(--color-text-light);
    font-size: 1rem;
    opacity: 0.9;
}

/* Destacando o headline */
.headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-alert {
    color: #FF9F5A;
    position: relative;
    display: inline-block;
}

.highlight-money {
    color: #14C860;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.highlight-money::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #14C860, transparent);
    border-radius: 4px;
}

/* Logo animado */
.logo-container {
    position: relative;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
}

.logo {
    max-width: 200px;
    filter: drop-shadow(0 10px 20px rgba(20, 200, 96, 0.5));
}

.video-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(20, 200, 96, 0.2);
    aspect-ratio: 16/9;
    transform: perspective(1000px) rotateX(2deg);
    margin-bottom: 3rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.watch-now {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.play-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-button-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 20px rgba(20, 200, 96, 0.5);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.play-button-circle svg {
    width: 24px;
    height: 24px;
    fill: var(--color-black);
    margin-left: 3px;
}

.video-overlay:hover .play-button-circle {
    transform: scale(1.1);
}

.click-to-play {
    font-size: 0.9rem;
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.video-overlay:hover .click-to-play {
    background: var(--color-primary);
    color: var(--color-black);
}

#video {
    width: 100%;
    height: 100%;
}

.cta-area {
    text-align: center;
    margin-top: 2rem;
    position: relative;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo para botões CTA */
.cta-button,
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(20, 200, 96, 0.4), 
                0 0 20px rgba(20, 200, 96, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    text-decoration: none;
    text-align: center;
}

.cta-button-text,
.button-text {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.2s ease;
}

.cta-button-shine,
.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine-effect 3s infinite;
    z-index: 0;
}

.cta-button:hover,
.btn-primary:hover {
    transform: translateY(-5px) perspective(1000px);
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 12px 30px rgba(20, 200, 96, 0.5),
                0 0 30px rgba(20, 200, 96, 0.4);
}

.cta-button:hover .cta-button-text,
.btn-primary:hover .button-text {
    transform: scale(1.05);
}

.cta-button:active,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 200, 96, 0.4);
}

/* Benefits Section */
.benefits-section {
    background: var(--color-black);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(20, 200, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 200, 96, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-title {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    position: relative;
}

.benefits-title span {
    color: var(--color-primary);
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: linear-gradient(145deg, #13131f, #0c0c14);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow-md);
    transform: translateY(0);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(20, 200, 96, 0.15);
    border-color: rgba(20, 200, 96, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 5px rgba(20, 200, 96, 0.3));
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.benefits-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    position: relative;
}

.benefits-cta-message {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.benefits-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 45px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(20, 200, 96, 0.4);
    transition: var(--transition-normal);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefits-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(20, 200, 96, 0.5);
}

.benefits-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.benefits-cta-button:hover::after {
    left: 100%;
}

/* Estilos para imagens de fundo em todas as seções */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Altura maior para permitir movimento */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(-1px) scale(1.5); /* Preparação para efeito 3D */
    transition: transform 0.1s;
    will-change: transform; /* Otimização de performance */
}

/* Garantir que todas as seções tenham position relative para o posicionamento correto das imagens de fundo */
section {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d; /* Habilitar efeito 3D */
    perspective: 1000px; /* Adicionar perspectiva */
}

/* Garantir que o conteúdo fique acima das imagens de fundo */
section > * {
    position: relative;
    z-index: 1;
}

/* Removendo referências às imagens não utilizadas */
/* As imagens de fundo agora são definidas diretamente no HTML com formato .webp */

/* Media queries para responsividade */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .headline {
        font-size: 2.2rem;
    }
    
    .objection-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .objection-cards {
        grid-template-columns: 1fr;
    }
    
    .watch-now {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
}
