/* ============================================================
   Hero Transport Slider — hero-slider.css
   ============================================================ */

/* ── Contenedor principal ──────────────────────────────────── */
.gfhero-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    background: #0f172a;
    font-family: inherit;
}

/* ── Slides ────────────────────────────────────────────────── */
.gfhero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--gfhero-transition, 1000ms) ease;
}
.gfhero-slide.active {
    opacity: 1;
}
.gfhero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 7s ease-out;
}
.gfhero-slide.active img {
    transform: scale(1.08);
}
.gfhero-container[data-ken-burns="false"] .gfhero-slide img,
.gfhero-container[data-ken-burns="false"] .gfhero-slide.active img {
    transform: scale(1);
    transition: none;
}

/* ── Overlay ───────────────────────────────────────────────── */
.gfhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--gfhero-ov-top, rgba(15,23,42,.82)) 0%,
        var(--gfhero-ov-mid, rgba(15,23,42,.50)) 50%,
        var(--gfhero-ov-bot, rgba(15,23,42,.90)) 100%
    );
}

/* ── Contenido ─────────────────────────────────────────────── */
.gfhero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 2;
    transition: justify-content 0.3s ease;
}
.gfhero-inner {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: align-items 0.3s ease;
}
.gfhero-inner-logo {
    object-fit: contain;
    margin-bottom: 20px;
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.gfhero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    align-self: flex-start;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.gfhero-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}
.gfhero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    animation: gfhero-pulse 1.8s ease infinite;
}
@keyframes gfhero-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

/* ── Título ────────────────────────────────────────────────── */
.gfhero-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    white-space: pre-line;
}
.gfhero-cursor {
    display: inline-block;
    animation: gfhero-blink 1s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}
@keyframes gfhero-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Subtítulo ─────────────────────────────────────────────── */
.gfhero-subtitle {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 500px;
}
.gfhero-subtitle.gfhero-anim {
    animation: gfhero-fadeInUp .85s .15s ease both;
}

/* ── Botones ───────────────────────────────────────────────── */
.gfhero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.gfhero-btn-primary,
.gfhero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.gfhero-btn-primary {
    background: #dc4535;
    color: #fff;
}
.gfhero-btn-primary:hover {
    background: #b93528;
    transform: translateY(-2px);
    color: #fff;
}
.gfhero-btn-secondary {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.gfhero-btn-secondary:hover {
    background: rgba(255, 255, 255, .20);
    color: #fff;
}

/* ── Estadísticas ──────────────────────────────────────────── */
.gfhero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    max-width: 460px;
}
.gfhero-stat-n {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.gfhero-stat-l {
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .40);
    font-weight: 500;
}

/* ── Flechas de navegación ─────────────────────────────────── */
.gfhero-arrows {
    position: absolute;
    bottom: 28px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}
.gfhero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease;
    padding: 0;
    line-height: 1;
}
.gfhero-arrow:hover {
    background: rgba(255, 255, 255, .22);
}

/* ── Dots ──────────────────────────────────────────────────── */
.gfhero-dots {
    position: absolute;
    bottom: 34px;
    left: 40px;
    z-index: 3;
    display: flex;
    gap: 6px;
    align-items: center;
}
.gfhero-dot {
    height: 3px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: width .35s ease, background .35s ease;
    padding: 0;
}
.gfhero-dot.active {
    width: 36px;
    background: #dc4535;
}
.gfhero-dot:not(.active) {
    width: 18px;
    background: rgba(255, 255, 255, .30);
}

/* ── Animaciones y Efectos Especiales ──────────────────────── */
@keyframes gfhero-fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gfhero-spotlight {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08), transparent 60%);
    mix-blend-mode: screen;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .gfhero-content {
        padding: 0 24px;
    }
    .gfhero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    .gfhero-arrows {
        right: 24px;
        bottom: 20px;
    }
    .gfhero-dots {
        left: 24px;
        bottom: 26px;
    }
    .gfhero-stats {
        gap: 16px 24px;
    }
    .gfhero-stat-n {
        font-size: 1.4rem;
    }
}
@media (max-width: 480px) {
    .gfhero-btns {
        flex-direction: column;
    }
    .gfhero-btn-primary,
    .gfhero-btn-secondary {
        justify-content: center;
    }
}
