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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

/* Botões */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background-color: #28A745;
    color: white;
    border: 2px solid #28A745;
}

.cta-button.primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Animação de Pulse */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero-couple.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #F8F9FA;
}

.urgency-banner {
    background-color: #DC3545;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: inline-block;
    font-weight: 600;
}

.urgency-banner i {
    margin-right: 10px;
}

.countdown-container {
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px;
    min-width: 80px;
}

.countdown-item span {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.countdown-item label {
    font-size: 14px;
    opacity: 0.8;
}

/* Problems Section */
.problems {
    background-color: #F8F9FA;
    text-align: center;
}

.problems h2 {
    margin-bottom: 50px;
    color: #2C2C2C;
    font-size: 36px;
}

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

.problem-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-item i {
    font-size: 40px;
    color: #DC3545;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

/* Solution Section */
.solution {
    background-color: white;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.solution-text {
    flex: 1;
}

.solution-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution h2 {
    font-size: 36px;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.solution-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: #28A745;
    font-size: 20px;
    margin-right: 15px;
}

/* Benefits Section */
.benefits {
    background-color: #F8F9FA;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 50px;
    font-size: 36px;
}

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

.benefit-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 35px;
    color: #D4AF37;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    font-size: 36px;
}

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

.testimonial-card {
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content p {
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 50px;
    color: #E8B4B8;
    position: absolute;
    opacity: 0.3;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.author-info span {
    font-size: 14px;
    color: #6c757d;
}

/* Scarcity Section */
.scarcity {
    background-color: #FFF5F5;
    text-align: center;
}

.scarcity-content {
    max-width: 800px;
    margin: 0 auto;
}

.scarcity h2 {
    color: #DC3545;
    font-size: 36px;
    margin-bottom: 20px;
}

.scarcity-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

.progress-bar {
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #DC3545;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.scarcity-warning {
    font-weight: 600;
    font-size: 20px;
    color: #DC3545;
}

/* CTA Section */
.cta-section {
    background-color: #2C2C2C;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.price-container {
    margin: 40px 0;
}

.price-old {
    font-size: 24px;
    color: #adb5bd;
    text-decoration: line-through;
}

.price-current {
    font-size: 48px;
    font-weight: 700;
    color: #28A745;
    margin: 10px 0;
}

.price-discount {
    display: inline-block;
    background-color: #DC3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.bonus-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.bonus-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-list {
    list-style: none;
    margin-bottom: 20px;
}

.bonus-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.bonus-value {
    text-align: center;
    font-weight: 600;
    color: #D4AF37;
    font-size: 20px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

.guarantee i {
    font-size: 40px;
    color: #D4AF37;
    margin-right: 20px;
}

.guarantee-text h4 {
    margin-bottom: 5px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #adb5bd;
}

.security-badges i {
    margin-right: 5px;
}

.final-warning {
    font-size: 18px;
    color: #DC3545;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 40px;
    }
    
    .solution-content {
        flex-direction: column;
    }
    
    .solution-text, .solution-image {
        flex: none;
        width: 100%;
    }
    
    .testimonial-card {
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .problems-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 24px;
    }
    
    .scarcity-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
    }
    
    .price-current {
        font-size: 36px;
    }
    
    .bonus-section {
        padding: 20px 15px;
    }
    
    .bonus-list li {
        font-size: 16px;
    }
}

