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

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cores da marca */
:root {
    --noite-estrelada: #011640;
    --nebulosa: #41165C;
    --portal-astral: #43428F;
    --cosmos: #C8A9C8;
    --ascendencia: #CDBB9F;
    --venus-capricornio: #2566B3;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #6c757d;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--noite-estrelada), var(--nebulosa));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    height: 50px;
    width: auto;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--venus-capricornio), var(--portal-astral));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 102, 179, 0.3);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary.mega {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    color: var(--venus-capricornio);
    border: 2px solid var(--venus-capricornio);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-secondary:hover {
    background: var(--venus-capricornio);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary.large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cosmos) 0%, var(--ascendencia) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.badge {
    background: linear-gradient(135deg, var(--venus-capricornio), var(--portal-astral));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--noite-estrelada);
}

.gradient-text {
    background: linear-gradient(135deg, var(--venus-capricornio), var(--portal-astral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--nebulosa);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.carol-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noite-estrelada);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--cinza-medio);
}

/* Benefícios */
.benefits {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--noite-estrelada);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--cinza-medio);
    line-height: 1.6;
}

/* Sobre */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noite-estrelada);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--venus-capricornio);
    margin-bottom: 20px;
}

.credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.credential {
    background: linear-gradient(135deg, var(--venus-capricornio), var(--portal-astral));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.about-text p {
    color: var(--cinza-medio);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Como funciona */
.how-it-works {
    padding: 80px 0;
    background: var(--cinza-claro);
}

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

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--venus-capricornio), var(--portal-astral));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--noite-estrelada);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--cinza-medio);
    line-height: 1.6;
}

/* Preço */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--noite-estrelada), var(--nebulosa));
    color: white;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--ascendencia);
    margin-bottom: 20px;
}

.guarantee-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.guarantee-seal {
    width: 120px;
    height: 120px;
    margin: 20px 0;
}

.benefits-list {
    text-align: left;
}

.benefits-list h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.cta-section {
    margin-top: 40px;
}

.security-text {
    margin-top: 20px;
    color: var(--cosmos);
    font-size: 14px;
}

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

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--venus-capricornio);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--venus-capricornio);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--cinza-medio);
    line-height: 1.6;
}

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

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--cosmos);
}

.footer-copyright {
    color: var(--cinza-medio);
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .guarantee-section {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .btn-primary.mega {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

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

.benefit-card,
.step-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

