/* ===================
   CSS PREMIUM POLISH
   =================== */

:root {
    --primary-color: #ff6b00;
    --primary-gradient: linear-gradient(90deg, #ff8800 0%, #ff6600 100%);
    --text-color: #333;
    --light-bg: #f9f9f9;
    --accent-bg: #fff2e6;
}

body {
    color: var(--text-color);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--light-bg);

}

section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 span,
h3 span {
    color: var(--primary-color);
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Botões premium */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.4rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.5);
}

/* Cards polidos */
.benefit-card,
.problem-card,
.testimonial-card,
.bonus-card,
.guarantee-card,
.urgency-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover,
.problem-card:hover,
.testimonial-card:hover,
.bonus-card:hover {
    transform: translateY(-5px);
}

.guarantee-card {
    border: 2px dashed var(--primary-color);
    background-color: var(--accent-bg);
}

.urgency-card {
    background: #fff2e6;
    border: 2px solid #ffc299;
}

/* Estilos para listas */
ul {
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .btn-primary {
        width: 100%;
    }
}

/* Imagens responsivas */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Extra Touch: Fade-In Animation para Section */
section {
    animation: fadeInUp 0.7s ease both;
}

/* Elemento inicialmente invisível */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando aparecer */
.animate-on-scroll.visible-now {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}