:root {
     --color-bg: #0d0d0d;
     --color-green: #3a9e4f;
     --color-text: #d4d4d4;
}

/* ─── FONDO CON PARALLAX SUTIL ─────────────────────────────── */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: sans-serif;
    background-image: none;
}

/* Imagen de fondo fija que se mueve sutilmente con JS via --parallax-y */
body::before {
    content: '';
    position: fixed;
    inset: -10% 0;
    height: 120%;
    background-image: url(../assets/bg.webp);
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform 0.1s linear;
}

/* ─── TIPOGRAFÍA ────────────────────────────────────────────── */
@font-face {
    font-family: 'Legrand';
    src: url('../font/Legrand.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

p {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: thin;
    font-style: normal;
    font-size: 19px;
    color: #296C44;
}

a, .ig {
    font-family: 'Legrand';
    font-style: normal;
    font-size: 30px;
}

/* ─── FLYER HOVER ───────────────────────────────────────────── */
#show img {
    border-radius: 6px;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        filter 0.4s ease;
    will-change: transform;
}

#show img:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(58, 158, 79, 0.2);
    filter: brightness(1.05) contrast(1.02);
}

/* ─── CTA: COMPRAR TICKETS ──────────────────────────────────── */
#tickets a {
    font-family: 'Legrand';
    font-style: normal;
    font-size: 30px;
    background-color: #4f9e54;
    text-transform: uppercase;
    color: black;
    border-radius: 50px;
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        letter-spacing 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Brillo que recorre el botón al hover */
#tickets a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transition: left 0.45s ease;
}

#tickets a:hover {
    background-color: #5cb85c;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(58, 158, 79, 0.5),
        0 0 15px rgba(58, 158, 79, 0.3);
    letter-spacing: 1px;
    color: black;
}

#tickets a:hover::after {
    left: 150%;
}

#tickets a:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 4px 12px rgba(58, 158, 79, 0.4);
}

/* ─── CTA: INSTAGRAM ────────────────────────────────────────── */
#instagram a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#instagram img {
    width: 60px;
    height: 60px;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.35s ease;
}

#instagram a:hover img {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 10px rgba(58, 158, 79, 0.6));
}

#instagram p, #instagram a {
    font-size: 30px;
}

/* ─── CTA: CONTACTO ─────────────────────────────────────────── */
#contacto a {
    font-family: 'Legrand';
    font-style: normal;
    font-size: 22px;
    background-color: transparent;
    text-transform: uppercase;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 50px;
    max-width: 250px;
    width: 100%;
    height: auto;
    letter-spacing: 2px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease,
        letter-spacing 0.3s ease;
}

#contacto a:hover {
    background-color: var(--color-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 158, 79, 0.4);
    letter-spacing: 3px;
}

#contacto a:active {
    transform: translateY(0);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer img {
    max-width: 150px;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease, filter 0.3s ease;
    opacity: 0.75;
}

footer a:hover img {
    opacity: 1;
    filter: brightness(1.15);
}

footer p {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: thin;
    font-style: normal;
    font-size: 19px;
    color: #A8A6AB !important;
    margin: 4px 0 0 0;
}

/* ─── RESTO ──────────────────────────────────────────────────── */

.text-brand {
    color: var(--color-green);
}

.btn-brand {
    background-color: transparent;
    border: 2px solid var(--color-green);
    color: var(--color-green);
    border-radius: 4px;
    letter-spacing: 2px;
}

.btn-brand:hover {
    background-color: var(--color-green);
    color: #000;
}

.img-divider {
    width: 100%;
    max-width: 600px;
    opacity: 0.7;
}

.img-comprar {
    max-width: 400px;
    width: 30%;
    height: auto;
    display: block;
    margin: auto;
}

.separador {
    font-size: 30px;
    margin: 0px 2px 0px 10px;
}

.white {
    color: white !important;
}

.green {
    color: #296C44;
}

/* ─── SOYLUCHO  ───────────────────── */
.soylucho-link {
    display: inline-block;
    text-decoration: none;
}

.soylucho-wrap {
    position: relative;
    display: inline-block;
    width: 65px;
    margin: 40px auto 20px;
}

.soylucho-img {
    width: 65px;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.soylucho-link:hover .soylucho-img {
    transform: rotate(360deg);
}
.soylucho-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background-color: rgba(0, 0, 0, 0.92);
    color: white;
    font-family: 'Montserrat';
    font-size: 10px;
    white-space: nowrap;
    padding: 2px 12px;
    border-radius: 8px;
    border: white;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
/*
.soylucho-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background-color: rgba(0, 0, 0, 0.92);
    color: var(--color-green);
    font-family: 'Legrand', sans-serif;
    font-size: 10px;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(58, 158, 79, 0.35);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
*/
.soylucho-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(58, 158, 79, 0.35);
}

.soylucho-link:hover .soylucho-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}