/* Reset e Variáveis CSS */
:root {
    --primary-color: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary-color: #3b82f6;
    --accent-color: #8b5cf6;
    --bg-dark: #0f0f1e;
    --bg-darker: #07070f;
    --text-light: #ffffff;
    --text-gray: #9ca3af;
    --border-color: rgba(139, 92, 246, 0.2);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 15, 30, 0.95) 0%, rgba(7, 7, 15, 0.98) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.site-header {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.site-icon {
    font-size: 1.5rem;
}

.site-title {
    color: var(--text-light);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Video Container */
.video-container {
    margin: 3rem 0;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

.video-duration,
.video-description {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Problema Section */
.problema-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.problema-section .section-badge span {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problema-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.problema-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.4);
}

.problema-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problema-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problema-card p {
    color: var(--text-gray);
}

/* Custo Section */
.custo-section {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.custo-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.estatisticas-negativas {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Solução Section */
.solucao-section {
    background: var(--bg-dark);
}

.solucao-section .section-badge span {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--border-color);
}

.transformacao-card {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.transformacao-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.beneficios-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.beneficio-item {
    padding: 1rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 8px;
    font-size: 1rem;
}

.estatisticas-positivas {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.estatisticas-positivas .stat-number {
    color: #10b981;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--text-gray);
}

/* Timer Section */
.timer-section {
    background: rgba(124, 58, 237, 0.1);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.timer-content {
    text-align: center;
}

.timer-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.timer-unit {
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100px;
}

.timer-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.timer-separator {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Serviços Section */
.servicos-section {
    background: var(--bg-darker);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.servico-card {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.servico-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.servico-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.servico-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.servico-content {
    margin: 2rem 0;
    color: var(--text-gray);
}

.servico-content ul {
    list-style: none;
    padding: 0;
}

.servico-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.servico-content li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

.servico-preco {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.preco-original {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 1rem;
}

.preco-promocional {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.parcelas {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Combo Section */
.combo-section {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
}

.combo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.combo-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.combo-precos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.combo-preco-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.combo-preco-item .valor {
    font-size: 3rem;
    font-weight: 800;
}

.combo-preco-item .valor.old {
    text-decoration: line-through;
    opacity: 0.6;
}

.parcelas-combo {
    font-size: 1rem;
    opacity: 0.9;
}

.combo-garantias {
    margin-top: 2rem;
    opacity: 0.9;
}

/* Casos de Sucesso Section */
.casos-section {
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-card .stat-number {
    color: var(--primary-color);
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.depoimento-card {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.depoimento-content {
    flex-grow: 1;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
}

.resultado-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
}

.resultado-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.resultado-valor {
    font-weight: 700;
    color: #10b981;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}

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

.autor-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.autor-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* Garantias Section */
.garantias-section {
    margin-top: 4rem;
    text-align: center;
}

.garantias-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.garantia-card {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.garantia-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.garantia-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.garantia-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Final Section */
.cta-final-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
}

.cta-final-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-light);
}

.garantias {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    flex: 1;
    min-width: 100px;
}

.garantia-item span {
    font-size: 1.5rem;
}

.garantia-item p {
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .combo-precos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .combo-section {
        padding: 2rem 1rem;
    }
}
