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

:root {
    --primary-color: #bb1f1f;
    --secondary-color: #c89f28;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #d63031);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #f39c12);
    --gradient-hero: linear-gradient(135deg, rgba(187, 31, 31, 0.1), rgba(200, 159, 40, 0.1));
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 159, 40, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(187, 31, 31, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.cta-top {
    margin-top: 30px;
}

/* Main Content */
.main-content {
    background: var(--bg-white);
    padding: 80px 0;
}

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

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.sparkle {
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Pain Points Section */
.pain-points {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.questions {
    margin: 40px 0;
}

.question-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.question-mark {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.question-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.solution-intro {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.benefits {
    margin-bottom: 60px;
}

.benefits-list {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.check {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Call to Action Section */
.call-to-action-section {
    text-align: center;
    background: var(--gradient-hero);
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.call-to-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-text {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.urgency-text p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    margin: 20px 0 !important;
}

.personal-touch {
    font-style: italic;
    color: var(--secondary-color) !important;
}

.divider {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.final-cta {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.scarcity {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

.btn-large i {
    font-size: 1.5rem;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .main-content {
        padding: 50px 0;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .pain-points {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .question-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .question-item p {
        font-size: 1rem;
    }
    
    .benefits-list {
        padding: 25px 20px;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .call-to-action-section {
        padding: 40px 20px;
    }
    
    .urgency-text p {
        font-size: 1.1rem;
    }
    
    .highlight {
        font-size: 1.3rem !important;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .hero-image img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .pain-points {
        padding: 20px 15px;
    }
    
    .benefits-list {
        padding: 20px 15px;
    }
    
    .call-to-action-section {
        padding: 30px 15px;
    }
    
    .question-item {
        flex-direction: column;
        text-align: center;
    }
    
    .question-mark {
        margin: 0 auto 10px;
    }
    
    .btn-whatsapp {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pulse {
        animation: none;
    }
    
    .sparkle {
        animation: none;
    }
}

