/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(249, 174, 0, 0.08);
    border: 1px solid rgba(249, 174, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-text p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent-orange);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══ CÓMO FUNCIONA ═══ */
.steps-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.steps-section .container { text-align: center; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.6% + 10px);
    right: calc(16.6% + 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, rgba(249,174,0,0.15) 100%);
    z-index: 0;
}

.step-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent 60%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.step-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.13); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.step-card:hover::before { opacity: 1; }

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(249,174,0,0.1);
    border: 2px solid rgba(249,174,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-orange);
    transition: background 0.2s ease;
}

.step-card:hover .step-number { background: rgba(249,174,0,0.18); }

.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.step-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ MONTOS DE RECARGA ═══ */
.amounts-section .container { text-align: center; }

.amounts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.amount-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.amount-card.featured {
    border-color: rgba(249,174,0,0.3);
    box-shadow: 0 0 50px rgba(249,174,0,0.06);
}

.amount-card.featured::after {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    background: var(--accent-orange);
    color: #0f0f14;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.amount-card:hover { transform: translateY(-5px); border-color: rgba(249,174,0,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

.amount-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.amount-currency {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.amount-divider {
    width: 32px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
    margin: 0 auto 16px;
    opacity: 0.4;
}

.amount-bonus-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.amount-bonus {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.amount-total {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.amount-total strong { color: var(--text-primary); }

/* ═══ NOTA DE RANGO ═══ */
.range-note {
    margin-top: 32px;
    padding: 20px 28px;
    background: rgba(249,174,0,0.04);
    border: 1px solid rgba(249,174,0,0.12);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
}

.range-note strong { color: var(--text-primary); }

/* ═══ BENEFICIOS ═══ */
.benefits-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.why-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.13); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.why-card:hover::before { opacity: 1; }

.why-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(249,174,0,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-orange);
    transition: background 0.2s ease;
}

.why-card-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.why-card:hover .why-card-icon { background: rgba(249,174,0,0.13); }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.why-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ FAQ ═══ */
.faq-list { margin-top: 48px; }

.faq-item {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: rgba(249,174,0,0.15); }
.faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.faq-item p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ═══ CTA ═══ */
.cta-section { position: relative; overflow: hidden; }

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(249, 174, 0, 0.06) 0%, transparent 60%);
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(249, 174, 0, 0.15);
    box-shadow: 0 0 80px rgba(249, 174, 0, 0.05);
}

.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-box p  { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }
.cta-box .btn-primary { padding: 18px 48px; font-size: 16px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .amounts-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .hero-content-wrapper { flex-direction: column-reverse; text-align: center; gap: 24px; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .hero-image { width: 100%; }
    .hero-image img { max-height: 240px; animation: none; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .amounts-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .cta-box { padding: 48px 20px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .amounts-grid { grid-template-columns: 1fr; }
}
