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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2F2F2F;
    background-color: #FAF0E6;
}

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

/* Header */
.header {
    background: #8B0000;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo span {
    font-size: 14px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: #FAF0E6;
    color: #2F2F2F;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 80px; /* Espaçamento do cabeçalho fixo */
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #8B0000;
    text-shadow: none;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits {
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit i {
    color: #8B0000;
    margin-right: 15px;
    font-size: 18px;
}

.urgency {
    background: rgba(139, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
}

.urgency i {
    margin-right: 10px;
    color: #8B0000;
}

/* Form Container */
.hero-form {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-container {
    padding: 40px;
    color: #2F2F2F;
}

.form-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B0000;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 10px;
}

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.form-disclaimer i {
    color: #28a745;
    margin-right: 5px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #FAF0E6;
}

.social-proof h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2F2F2F;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.author {
    font-weight: 600;
    color: #8B0000;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2F2F2F;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.credentials {
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.credential i {
    color: #8B0000;
    margin-right: 15px;
    font-size: 20px;
    width: 25px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #8B0000;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* What You Get */
.what-you-get {
    padding: 80px 0;
    background: #FAF0E6;
}

.what-you-get h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2F2F2F;
}

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

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

.bonus:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.bonus-icon i {
    font-size: 35px;
    color: white;
}

.bonus h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2F2F2F;
}

.bonus p {
    color: #666;
    font-size: 16px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background: #FFD700;
    color: #2F2F2F;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button-large i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #8B0000;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        margin-top: 80px; /* Mantém o espaçamento do cabeçalho */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-form {
        order: -1; /* Move o formulário para cima */
    }
    
    .hero-text {
        order: 1; /* Move o texto para baixo */
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .benefits {
        margin-bottom: 20px;
    }
    
    .benefit {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .urgency {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .urgency p {
        font-size: 14px;
    }
    
    .form-container {
        padding: 25px 20px;
        margin-top: 0;
    }
    
    .form-container h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .form-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px;
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .bonuses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 30px;
        margin-top: 80px; /* Mantém o espaçamento do cabeçalho */
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .benefits {
        margin-bottom: 15px;
    }
    
    .benefit {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .urgency {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .urgency p {
        font-size: 13px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-container h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px;
        font-size: 15px;
    }
    
    .social-proof h2,
    .about h2,
    .what-you-get h2 {
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
}

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

.hero-text,
.hero-form,
.testimonial,
.bonus {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .cta-button {
    background: #ccc;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}
