/* =========================================
   SALES PAGE — sales.css
   ========================================= */

/* =========================================
   SALES HERO
   ========================================= */
.s-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0F2A44 50%, #0d2235 100%);
    padding: 90px 24px 70px;
    overflow: hidden;
    text-align: center;
}

.s-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(45,190,96,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(255,165,0,.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.s-urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255,165,0,.12);
    border: 1px solid rgba(255,165,0,.3);
    color: #fbd38d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.s-blink { animation: blink 1.2s ease-in-out infinite; }
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.s-hero-title {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 22px;
}

.s-hero-accent {
    color: #4ade80;
    display: block;
}

.s-hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 36px;
}

.s-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* Pulse animation on primary CTA */
.s-pulse-btn {
    animation: pulse-cta 2.5s ease-in-out infinite;
}
@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 16px rgba(45,190,96,.3); }
    50% { box-shadow: 0 8px 32px rgba(45,190,96,.6); }
}

/* Stats row in hero */
.s-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 20px 32px;
    max-width: 560px;
    margin: 0 auto;
}

.s-stat { text-align: center; flex: 1; }
.s-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 4px;
}
.s-stat-label { font-size: 13px; color: rgba(255,255,255,.6); }
.s-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.15);
    margin: 0 8px;
    flex-shrink: 0;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.s-problem {
    background: #fff3cd;
    border-top: 3px solid #f6ad55;
    border-bottom: 3px solid #f6ad55;
    padding: 32px 24px;
}

.s-problem-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.s-problem-icon { font-size: 48px; flex-shrink: 0; margin-top: 4px; }
.s-problem-inner h2 {
    font-size: 22px;
    font-weight: 800;
    color: #7b341e;
    margin: 0 0 10px;
}
.s-problem-inner p {
    font-size: 15px;
    color: #744210;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   HOW IT WORKS — STEPS
   ========================================= */
.s-steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
}

.s-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.s-step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F2A44, #1F4E79);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(15,42,68,.25);
}

.s-step h3 { font-size: 16px; font-weight: 700; color: #0F2A44; margin: 0 0 8px; }
.s-step p { font-size: 14px; color: #4a5568; line-height: 1.6; margin: 0; }

.s-step-arrow {
    flex: 0 0 auto;
    font-size: 28px;
    color: #cbd5e0;
    margin-top: 24px;
    padding: 0 8px;
}

@media (max-width: 700px) {
    .s-steps-grid { flex-direction: column; align-items: center; gap: 20px; }
    .s-step-arrow { transform: rotate(90deg); margin: 0; }
}

/* =========================================
   PRODUCTS SIMPLE LIST
   ========================================= */
.s-products-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 600px) { .s-products-simple { grid-template-columns: 1fr; } }

.s-product-simple {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform .25s, box-shadow .25s;
}
.s-product-simple:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }

.s-product-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.s-product-simple h3 { font-size: 16px; font-weight: 700; color: #0F2A44; margin: 0 0 6px; }
.s-product-simple p { font-size: 13.5px; color: #4a5568; line-height: 1.55; margin: 0 0 10px; }

.s-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(45,190,96,.1);
    border: 1px solid rgba(45,190,96,.25);
    color: #276749;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================
   FAQ / OBJECIONES
   ========================================= */
.s-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 700px) { .s-faq-grid { grid-template-columns: 1fr; } }

.s-faq-item {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
    transition: transform .25s;
}
.s-faq-item:hover { transform: translateY(-3px); }

.s-faq-q {
    font-size: 16px;
    font-weight: 800;
    color: #0F2A44;
    margin-bottom: 10px;
}
.s-faq-a {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}
