/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5CF6;
    --primary-hover: #7C3AED;
    --secondary-color: #F3F4F6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --green: #10B981;
    --green-hover: #059669;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-green {
    background: var(--green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-green:hover {
    background: var(--green-hover);
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--primary-color);
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Seções gerais */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: background 0.3s;
}

.step:hover .step-icon {
    background: rgba(139, 92, 246, 0.2);
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
}

.vantagens {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.vantagens h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.vantagem h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vantagem p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pacotes */
.pacote-teste {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.pacote-teste-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pacote-teste h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pacote-teste-valores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.875rem;
    font-weight: bold;
}

.pacote-teste p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    background: #F9FAFB;
}

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

.pacote {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.pacote:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pacote.destaque {
    border: 2px solid var(--primary-color);
}

.pacote-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.pacote-valor {
    text-align: center;
    margin-bottom: 1rem;
}

.pacote-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.pacote-preco {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.pacote-retorno .pacote-preco {
    color: var(--primary-color);
}

.pacote-arrow {
    text-align: center;
    margin: 1rem 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.pacote-multiplicador {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pacote-multiplicador span {
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
}

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

.pacotes-info {
    margin-top: 3rem;
    text-align: center;
}

.pacotes-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.garantia-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    max-width: 24rem;
    margin: 0 auto;
}

.garantia-box h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.garantia-box p {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.depoimento {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.depoimento:hover {
    box-shadow: var(--shadow);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.depoimento-foto {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.depoimento-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.depoimento-valor {
    color: var(--primary-color);
    font-weight: bold;
}

.estrelas {
    display: flex;
    margin-bottom: 0.75rem;
    color: #F59E0B;
}

.depoimento-texto {
    color: var(--text-light);
    font-style: italic;
}

.videos-section {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.videos-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

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

.video-placeholder {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.video-thumb {
    width: 100%;
    height: 192px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.video-thumb:hover {
    background: #E5E7EB;
}

.play-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.videos-nota {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
}

.estatisticas {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.estatistica-numero {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.estatistica-label {
    color: var(--text-light);
}

/* Segurança */
.garantias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.garantia {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}

.garantia:hover {
    box-shadow: var(--shadow-lg);
}

.garantia-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.garantia h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.garantia p {
    color: var(--text-light);
}

.garantias-detalhes {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.garantias-detalhes h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

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

.garantia-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    color: var(--green);
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.garantia-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.garantia-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.seguranca-cta {
    margin-top: 4rem;
    text-align: center;
}

.seguranca-cta-box {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.seguranca-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.seguranca-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contato */
.contato {
    background: var(--primary-color);
    color: white;
}

.contato .section-title,
.contato .section-subtitle {
    color: white;
}

.contato .section-subtitle {
    opacity: 0.9;
}

.whatsapp-principal {
    margin-bottom: 4rem;
    text-align: center;
}

.btn-whatsapp-grande {
    background: var(--green);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-grande:hover {
    background: var(--green-hover);
    transform: scale(1.05);
}

.whatsapp-numero {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 1.125rem;
}

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

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

.contato-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.contato-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-item p {
    opacity: 0.9;
}

.faq {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.faq h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-item p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.contato-final {
    text-align: center;
}

.contato-final h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contato-final p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links button {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.footer-links button:hover {
    color: white;
}

.footer-stats {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.stat-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

/* WhatsApp Button Fixo */
.whatsapp-fixo {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-fixo:hover {
    background: var(--green-hover);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pacote-teste-valores {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .whatsapp-fixo {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.smooth-scroll {
    scroll-behavior: smooth;
}



/* Estilos para vídeos de depoimento */
.videos-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.videos-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.video-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.videos-nota {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    color: var(--white);
}

.videos-nota p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsividade para vídeos */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h4 {
        font-size: 1.1rem;
    }
    
    .videos-section h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .videos-section {
        margin-top: 2rem;
    }
    
    .videos-nota {
        padding: 1rem;
    }
    
    .videos-nota p {
        font-size: 1rem;
    }
}

