/* =====================================================
   HERO — Taxi Transfers Aeropuertos
   ===================================================== */

.tt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--tt-header) + 60px) 0 100px;
    overflow: hidden;
}

/* Media background */
.tt-hero__media,
.tt-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tt-hero__media img {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.tt-hero:hover .tt-hero__media img {
    transform: scale(1.0);
}

/* Sombras dramáticas en capas */
.tt-hero__shade {
    position: absolute;
    inset: 0;
    background:
        /* Oscuridad lateral izquierda */
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.2) 100%),
        /* Base inferior */
        linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 30%, transparent 60%),
        /* Grano superior */
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 25%);
}

/* Partícula decorativa — línea dorada lateral */
.tt-hero__shade::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 3px;
    height: 220px;
    background: linear-gradient(180deg, transparent, var(--tt-primary), transparent);
    border-radius: 0 2px 2px 0;
    opacity: 0.7;
}

/* Content */
.tt-hero__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

/* Eyebrow animado */
.tt-hero .tt-eyebrow {
    animation: fadeInLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.15s;
}

/* Slides container */
.tt-hero__slides {
    min-height: 240px;
}

.tt-hero__slide {
    display: none;
}

.tt-hero__slide.is-active {
    display: block;
}

/* H1 impactante */
.tt-hero h1 {
    margin: 16px 0 20px;
    font-family: var(--tt-font-heading);
    font-size: clamp(3.8rem, 9vw, 7.8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 800;
    animation: fadeInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.28s;
}

/* Span de acento dorado */
.tt-hero h1 em {
    font-style: normal;
    color: var(--tt-primary);
}

.tt-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.4s;
}

/* Actions */
.tt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    animation: fadeInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.52s;
}

/* Badges glassmorphism */
.tt-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
    animation: fadeInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.64s;
}

.tt-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background var(--tt-transition), border-color var(--tt-transition);
}

.tt-hero__badges span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--tt-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 192, 0, 0.8);
}

.tt-hero__badges span:hover {
    background: rgba(255, 192, 0, 0.1);
    border-color: rgba(255, 192, 0, 0.3);
}

/* Scroll indicator */
.tt-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--tt-subtle);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.9s;
    z-index: 2;
}

.tt-hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 192, 0, 0.7), transparent);
    border-radius: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .tt-hero {
        min-height: 100svh;
        padding-bottom: 70px;
    }

    .tt-hero h1 {
        font-size: clamp(3rem, 11vw, 4.8rem);
        line-height: 0.95;
    }

    .tt-hero__slides {
        min-height: auto;
    }

    .tt-hero__scroll {
        display: none;
    }
}
