/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    
    /* Neutros */
    --dark: #111827;
    --dark-light: #1f2937;
    --gray: #9ca3af;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-dark: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    }
}

.trust-text {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

/* Video Container */
.hero-video {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark-light);
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.video-container iframe {
    min-height: 600px;
    border: none;
}

/* Botão de controle de som */
.sound-toggle {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.sound-toggle:hover {
    background: rgba(16, 185, 129, 1);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
}

.sound-toggle:active {
    transform: translateX(-50%) scale(0.98);
}

.sound-toggle svg {
    flex-shrink: 0;
}

#soundText {
    white-space: nowrap;
    font-family: var(--font-heading);
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-badge span {
    color: var(--primary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Problema Section */
.problema {
    padding: 100px 0;
    background: var(--gray-light);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.problema-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.problema-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problema-card .icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problema-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.problema-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.highlight-card {
    background: var(--gradient-primary);
    color: var(--white);
}

.highlight-card h3,
.highlight-card p {
    color: var(--white);
}

/* Solução Section */
.solucao {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.solucao-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.step-features span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Resultados Section */
.resultados {
    padding: 100px 0;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.resultado-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.resultado-card:hover {
    transform: translateY(-8px);
}

.resultado-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.resultado-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.resultado-valor {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.resultado-desc {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
}

.resultado-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.resultado-destaque {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.resultado-destaque p {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.6;
}

/* Benefícios Section */
.beneficios {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.beneficio-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.beneficio-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.beneficio-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Preço Section */
.preco {
    padding: 100px 0;
    background: var(--gray-light);
}

.preco-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.preco-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.preco-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
}

.preco-valor {
    margin-bottom: 40px;
}

.preco-de {
    display: block;
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.preco-por {
    display: block;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 8px;
}

.preco-principal {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.preco-info {
    display: block;
    font-size: 16px;
    color: var(--gray);
}

.preco-inclusos {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.preco-inclusos li {
    font-size: 18px;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}

.preco-inclusos li:last-child {
    border-bottom: none;
}

.cta-button-large {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.preco-garantia {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.faq-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-final p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .preco-box {
        padding: 40px 24px;
    }
    
    .preco-principal {
        font-size: 56px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-button,
    .cta-button-large {
        width: 100%;
        text-align: center;
    }
    
    .preco-principal {
        font-size: 48px;
    }
}
