/* style.css */
:root {
    --primary-pink: #F25C78; /* Color principal */
    --soft-pink: #FFF0F3;     
    --dark-blue: #0D1B2A;     
    --text-color: #333;
    --warning-red: #D90429;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-bottom: 80px; /* Espacio para el botón flotante */
}

/* Barra de advertencia */
.warning-bar {
    background-color: var(--warning-red);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--soft-pink) 100%);
    padding: 40px 20px;
    text-align: center;
}

.highlight-time {
    color: var(--warning-red);
    font-weight: 800;
}

/* Tarjetas de dolor */
.pain-card {
    background: white;
    border-left: 5px solid var(--primary-pink);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: start;
    gap: 15px;
}

.pain-icon {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-top: 2px;
}

/* Sección Oscura (Solución) */
.dark-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 20px;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
}

.book-mockup {
    background: linear-gradient(135deg, #c0392b, #8e44ad);
    width: 200px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

/* Lista de beneficios (Fases) */
.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.check-icon {
    color: #00E676;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Testimonios */
.testimonial-card {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.stars { color: #FFC107; margin-bottom: 10px; }
.user-status { color: #27AE60; font-size: 0.85rem; font-weight: bold; }

/* Oferta y Precio */
.offer-card {
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    background: white;
    box-shadow: 0 10px 30px rgba(242, 92, 120, 0.15);
    margin: 40px auto;
    max-width: 500px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}
.timer-box {
    background: #FFF8E1;
    border: 1px solid #FFECB3;
    color: #FF6F00;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Accordion FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--soft-pink);
    color: var(--dark-blue);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-pink);
}

/* Botón Flotante (Sticky) */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-btn {
    background-color: var(--primary-pink);
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}
.main-btn:hover {
    transform: scale(1.02);
    color: white;
    background-color: #d94560;
}

.price-pill {
    background: rgba(0,0,0,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Footer legal */
.legal-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    padding: 40px 20px 20px;
    background: #f8f9fa;
}