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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #343A40;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: #FFB347;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.price-section {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFB347;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.guarantee {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #F8F9FA;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #343A40;
}

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

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 1.5rem;
    color: #4ECDC4;
    min-width: 24px;
}

.benefit-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #FF6B9D, #FFB347);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.urgency-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.timer-item {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #FFB347;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #343A40;
}

.testimonial-author span {
    color: #6C757D;
    font-size: 0.9rem;
}

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

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

.about-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 1.8rem;
    color: #FF6B9D;
    min-width: 30px;
}

.feature h3 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #343A40;
}

.feature p {
    color: #6C757D;
    font-size: 0.9rem;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

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

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

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

.faq-question:hover {
    color: #FF6B9D;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #6C757D;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #343A40, #495057);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.price-highlight {
    margin-bottom: 40px;
}

.final-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #4ECDC4;
    margin-bottom: 10px;
}

.payment-info {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.cta-button.final {
    background: linear-gradient(45deg, #FF6B9D, #FFB347);
    font-size: 1.4rem;
    padding: 20px 50px;
    margin-bottom: 40px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.badge i {
    font-size: 1.2rem;
    color: #4ECDC4;
}

/* Footer */
.footer {
    background: #343A40;
    padding: 40px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timer {
        gap: 15px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .final-price {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .timer {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer-item {
        padding: 15px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
}

