/* =========================================================
   HERO — Bogota Graffiti Tour
   ========================================================= */

.bgt-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bgt-negro);
}

/* Imagen de fondo */
.bgt-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bgt-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.15);
    transition: transform 8s ease;
}

/* PNG con recorte/transparencia — el sujeto flota sobre el fondo */
.bgt-hero__image--cutout {
    object-fit: contain;
    object-position: right center;
    width: 55%;
    left: auto;
    right: 0;
    filter: none;
}

.bgt-hero:hover .bgt-hero__image {
    transform: scale(1.04);
}

/* Overlay degradado */
.bgt-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(13, 13, 13, 0.2) 0%,
            rgba(13, 13, 13, 0.82) 45%,
            rgba(13, 13, 13, 0.82) 55%,
            rgba(13, 13, 13, 0.2) 100%
        ),
        linear-gradient(
            to top,
            rgba(232, 24, 90, 0.18) 0%,
            transparent 50%
        );
}


/* =========================================================
   CONTENIDO DEL HERO
   ========================================================= */

.bgt-hero__content {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
    max-width: 680px;
    background-color: rgba(0,0,0,0.35);
}

/* Eyebrow — "Bogotá · Colombia" */
.bgt-hero__eyebrow {
    display: inline-block;
    font-family: var(--bgt-font-accent);
    font-size: 1.4rem;
    color: var(--bgt-fucsia);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    position: relative;
    padding-left: 2.5rem;
}

.bgt-hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 3px;
    background: var(--bgt-fucsia);
    border-radius: 2px;
}

/* Título principal */
.bgt-hero__title {
    font-family: var(--bgt-font-heading);
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.0;
    color: var(--bgt-blanco-puro);
    text-shadow:
        0 0 8px rgba(41, 121, 255, 0.9),
        0 0 16px rgba(41, 121, 255, 0.6),
        0 0 30px rgba(41, 121, 255, 0.3);
    margin-bottom: 1.5rem;
    /* text-shadow: 0 4px 24px rgba(0,0,0,0.5); */
}

/* Acento de color en palabra clave */
.bgt-hero__title span {
    color: var(--bgt-fucsia);
    display: block;
}

/* Subtítulo */
.bgt-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 240, 235, 0.88);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Acciones CTA */
.bgt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}


/* =========================================================
   BADGE DE CONFIANZA (debajo del hero)
   ========================================================= */

.bgt-hero__trust {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    z-index: 1;
}

.bgt-hero__trust-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.bgt-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(245, 240, 235, 0.75);
    font-size: 0.9rem;
    font-family: var(--bgt-font-body);
}

.bgt-trust-badge__icon {
    font-size: 1.4rem;
    line-height: 1;
}

.bgt-trust-badge__number {
    font-family: var(--bgt-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bgt-amarillo);
}

/* =========================================================
   INDICADOR DE SCROLL
   ========================================================= */

.bgt-hero__scroll {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-family: var(--bgt-font-heading);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.bgt-hero__scroll:hover {
    color: var(--bgt-fucsia);
}

.bgt-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.bgt-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bgt-fucsia);
    animation: bgt-scroll-line 1.8s ease infinite;
}

@keyframes bgt-scroll-line {
    0%   { top: -100%; }
    100% { top: 100%; }
}


/* =========================================================
   RESPONSIVE — HERO MÓVIL
   ========================================================= */

@media ( max-width: 768px ) {

    .bgt-hero {
        min-height: 100svh;
        align-items: flex-end;
    }

    .bgt-hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(13, 13, 13, 0.92) 0%,
                rgba(13, 13, 13, 0.6) 50%,
                rgba(13, 13, 13, 0.25) 100%
            ),
            linear-gradient(
                to top,
                rgba(232, 24, 90, 0.2) 0%,
                transparent 40%
            );
    }

    .bgt-hero__content {
        padding-top: 2rem;
        padding-bottom: 8rem;
        max-width: 100%;
    }

    .bgt-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bgt-hero__actions .bgt-btn {
        text-align: center;
    }

    .bgt-hero__trust {
        bottom: 1.5rem;
    }

    .bgt-hero__trust-inner {
        gap: 1.25rem;
    }

    .bgt-trust-badge {
        font-size: 0.8rem;
    }

    .bgt-hero__scroll {
        display: none;
    }
}

@media ( max-width: 480px ) {
    .bgt-hero__eyebrow {
        font-size: 1.1rem;
    }

    .bgt-hero__trust-inner {
        gap: 1rem;
    }

    .bgt-trust-badge__number {
        font-size: 1rem;
    }
}

