@media (max-width: 800px) {

p {
    font-size: 16px;
    color: #296C44;
}

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

/* ─── FLYER HOVER ───────────────────────────────────────────── */
header img, #show img {
    max-width: 320px !important;
}

/* ─── CTA: COMPRAR TICKETS ──────────────────────────────────── */
#tickets a {
    font-size: 22px;
    max-width: 290px;
}

#instagram img {
    width: 40px;
    height: 40px;
}

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

/* ─── CTA: CONTACTO ─────────────────────────────────────────── */
#contacto a {
    font-size: 20px;
}

/* ─── 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);
}