/* ============================================================================
   Hero V2 - GSF Hotels
   Elite-level hero section with photo background + glass overlay
   ============================================================================ */
.tr-hero-v2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    background: url(../img/bkg_nosotros.jpg) center center / cover no-repeat;
}

.tr-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(35, 44, 55, 0.92) 0%,
        rgba(47, 58, 72, 0.78) 40%,
        rgba(62, 75, 93, 0.45) 100%
    );
    z-index: 1;
}

.tr-hero-v2::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 196, 218, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.tr-hero-v2__inner {
    position: relative;
    z-index: 2;
    padding: 56px 48px;
    max-width: 640px;
}

.tr-hero-v2__tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(160, 196, 218, 0.12);
    border: 1px solid rgba(160, 196, 218, 0.2);
    border-radius: 20px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A0C4DA;
    margin-bottom: 20px;
}

.tr-hero-v2__accent {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.15));
    border-radius: 2px;
    margin-bottom: 20px;
}

.tr-hero-v2 h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.tr-hero-v2 p {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.tr-hero-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #A0C4DA;
    text-decoration: none;
    padding: 10px 22px;
    background: rgba(160, 196, 218, 0.08);
    border: 1px solid rgba(160, 196, 218, 0.18);
    border-radius: 10px;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tr-hero-v2__link:hover {
    background: rgba(160, 196, 218, 0.15);
    border-color: rgba(160, 196, 218, 0.35);
    color: #A0C4DA;
    text-decoration: none;
}



/* Responsive */
@media (max-width: 768px) {
    .tr-hero-v2 {
        min-height: 360px;
        border-radius: 12px;
    }
    .tr-hero-v2__inner {
        padding: 36px 28px;
    }
    .tr-hero-v2 h3 {
        font-size: 26px;
    }
    .tr-hero-v2 p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tr-hero-v2 {
        min-height: 300px;
    }
    .tr-hero-v2__inner {
        padding: 28px 20px;
    }
    .tr-hero-v2 h3 {
        font-size: 22px;
    }
    .tr-hero-v2 p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* --- Hero boton tr-arrow --- */
.tr-hero-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tr-hero-v2__link .tr-arrow {
    display: block;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    flex-shrink: 0;
}

.tr-hero-v2__link:hover {
    background: rgba(160, 196, 218, 0.15);
    border-color: rgba(160, 196, 218, 0.4);
    color: #A0C4DA;
}

.tr-hero-v2__link:hover .tr-arrow {
    width: 32px;
}
