/* ===== LANDING GENERAL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 280px);
    color: #111827;
}

/* Layout base */

.l-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ===== HEADER ===== */

.l-header {
    padding: 0.9rem 0;
}

.l-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.l-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.l-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 800;
    font-size: 0.9rem;
}

.l-logo-text {
    font-weight: 700;
    font-size: 1.05rem;
}

.l-header-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.l-header-links a {
    text-decoration: none;
    color: #4b5563;
}

.l-header-links a:hover {
    color: #111827;
}

.l-header-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.40rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-sm-primary {
    border: none;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    font-weight: 600;
}

/* ===== HERO ===== */

.hero {
    padding: 2.3rem 0 2rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
}

.hero-badge {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #fed7aa;
    font-size: 0.78rem;
    color: #92400e;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.86rem;
    color: #6b7280;
}

/* Hero cards mini */

.hero-mini-cards{
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;

    /* Esto permite 3 en escritorio si hay espacio real */
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero-mini-card{
    padding: 1rem 1.1rem;
    border-radius: 14px;
    line-height: 1.25;
}

/* Hero panel de registro */

.hero-signup {
    background: #ffffff;
    border-radius: 0.9rem;
    border: 1px solid #fed7aa;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 18px 40px rgba(248, 171, 84, 0.25);
}

.hero-signup-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hero-signup-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.9rem;
}

.hero-signup form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.hero-signup input {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.hero-signup button {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.6rem;
    border: none;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.hero-signup button:hover {
    opacity: 0.97;
}

.hero-signup-footnote {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ===== STATS ===== */

.stats {
    padding: 1.5rem 0 1.2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fb923c;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* ===== STEPS ===== */

.section {
    padding: 1.8rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step-card {
    text-align: center;
    background: #fff;
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    padding: 1rem;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fef3c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.step-text {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== MANY WAYS ===== */

.two-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    align-items: center;
}

.panel-soft {
    background: #fff7ed;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid #fed7aa;
    font-size: 0.85rem;
}

/* ===== REDEEM ===== */

.redeem-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}

.redeem-pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
}

/* ===== TESTIMONIALS ===== */

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    padding: 0.9rem;
    font-size: 0.8rem;
}

.testimonial-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

/* ===== FAQ ===== */

.faq-row {
    max-width: 720px;
    margin: 0.5rem auto 0;
    font-size: 0.84rem;
}

.faq-item {
    margin-bottom: 0.7rem;
}

.faq-q {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.faq-a {
    color: #6b7280;
}

/* ===== FOOTER SIMPLE ===== */

.l-footer {
    padding: 1.4rem 0 1.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1rem;
    }
    .steps-row {
        grid-template-columns: 1fr;
    }
    .two-cols {
        grid-template-columns: 1fr;
    }
    .testimonials-row {
        grid-template-columns: 1fr;
    }
    .l-header-inner {
        flex-wrap: wrap;
    }
}
/* ===== Mini cards del hero (Faucet / Shortlinks / Retiros) ===== */

.hero-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.hero-mini-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.hero-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}

.hero-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.hero-mini-card:hover::before {
    opacity: 1;
}

/* Icono redondo */
.hero-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    margin-bottom: 0.2rem;
    color: #ffffff;
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.hero-mini-icon-faucet {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.hero-mini-icon-links {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}
.hero-mini-icon-withdraw {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hero-mini-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
}

.hero-mini-text {
    font-size: 0.86rem;
    color: #64748b;
}

/* Lista interna */
.hero-mini-list {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
    color: #6b7280;
}

.hero-mini-list li::before {
    content: "•";
    color: #fb923c;
    font-weight: 700;
    margin-right: 0.3rem;
}

/* ===== Responsive ===== */

/* Tablet: 2 por fila */
@media (max-width: 900px) {
    .hero-mini-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px){
    .hero-mini-cards{
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-mini-card{
        padding: 1rem;
    }
}