/**
 * Envíos — Fungiverse Crecienta
 * Diseño premium dark con tarjetas glassmorphism.
 *
 * @package Fungiverse
 */

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.fv-envios__hero {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
    background: #0a0a0a;
    text-align: center;
    overflow: hidden;
}

.fv-envios__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 77, 68, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 100%, rgba(232, 77, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.fv-envios__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fv-red, #e84d44);
    margin-bottom: 1rem;
}

.fv-envios__title {
    font-family: var(--fv-font-heading, 'Cubano', sans-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fafaf5;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.fv-envios__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(250, 250, 245, 0.6);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT AREA
   ═══════════════════════════════════════════════════════════ */
.fv-envios__content {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #111;
}

/* ═══════════════════════════════════════════════════════════
   GRID DE TARJETAS
   ═══════════════════════════════════════════════════════════ */
.fv-envios__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .fv-envios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════
   TARJETA
   ═══════════════════════════════════════════════════════════ */
.fv-envios__card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.fv-envios__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Highlight variant */
.fv-envios__card--highlight {
    border-color: rgba(232, 77, 68, 0.3);
    background: rgba(232, 77, 68, 0.06);
}

.fv-envios__card--highlight:hover {
    border-color: rgba(232, 77, 68, 0.5);
    background: rgba(232, 77, 68, 0.08);
}

.fv-envios__card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--fv-red, #e84d44);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

/* Icon */
.fv-envios__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(232, 77, 68, 0.1);
    color: var(--fv-red, #e84d44);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

/* Title */
.fv-envios__card-title {
    font-family: var(--fv-font-heading, 'Cubano', sans-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: #fafaf5;
    margin: 0 0 0.5rem;
}

/* Description */
.fv-envios__card-desc {
    font-size: 0.9rem;
    color: rgba(250, 250, 245, 0.55);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.fv-envios__card-desc strong {
    color: #fafaf5;
    font-weight: 700;
}

/* List */
.fv-envios__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.fv-envios__card-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: rgba(250, 250, 245, 0.7);
    line-height: 1.5;
}

.fv-envios__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--fv-red, #e84d44);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.fv-envios__cta {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.fv-envios__cta-text {
    font-size: 1.1rem;
    color: rgba(250, 250, 245, 0.7);
    margin: 0 0 1.25rem;
}

.fv-envios__cta .fv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
    .fv-envios__card {
        padding: 1.5rem;
    }

    .fv-envios__cta {
        padding: 1.5rem;
    }
}
