/* ==========================================
   SALTIMBANQUI 2026
   ESTILO GENERAL - VERSION 5
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #100505;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ==========================================
   HEADER
========================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.56);
    border-bottom: 1px solid rgba(229, 189, 69, 0.75);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 220px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav > a,
.menu-principal {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.2s ease;
}

nav > a:hover,
.menu-principal:hover {
    color: #e5bd45;
}


/* ==========================================
   SUBMENU CUMPLEAÑOS
========================================== */

.menu-desplegable {
    position: relative;
}

.submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    width: 235px;
    padding: 9px 0;
    background: rgba(21, 4, 5, 0.98);
    border: 1px solid rgba(229, 189, 69, 0.58);
    border-radius: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.menu-desplegable:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.submenu a {
    display: block;
    padding: 13px 18px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.3;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.submenu a:hover {
    color: #f2c94c;
    background: rgba(142, 17, 28, 0.55);
}


/* ==========================================
   HERO GENERAL
========================================== */

.hero {
    position: relative;
    height: 850px;
    overflow: hidden;
}

.hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.55) 38%,
            rgba(0, 0, 0, 0.18) 72%,
            rgba(0, 0, 0, 0.22) 100%
        );
}


/* ==========================================
   HERO TEXTO
========================================== */

.hero-texto {
    position: absolute;
    top: 61%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 610px;
    z-index: 2;
}

.hero-texto span {
    display: block;
    margin-bottom: 20px;
    color: #e5bd45;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-texto h1 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 70px;
    line-height: 0.95;
    color: #e5bd45;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.72);
}

.hero-texto h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
}

.hero-texto p {
    max-width: 590px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.65;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.72);
}


/* ==========================================
   HERO PAGINAS INTERIORES
========================================== */

.hero-interior {
    height: 680px;
}

.hero-interior > img {
    object-position: center center;
}

.hero-texto-interior {
    top: 63%;
    max-width: 650px;
}

.hero-texto-interior h1 {
    font-size: 64px;
}


/* ==========================================
   HOME - CATEGORIAS
========================================== */

.categorias {
    padding: 80px 6%;
    text-align: center;
    background:
        radial-gradient(
            circle at center top,
            rgba(126, 15, 24, 0.38),
            transparent 50%
        ),
        linear-gradient(
            180deg,
            #350a0d 0%,
            #140505 100%
        );
}

.categorias h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    color: #e5bd45;
}

.categorias > p {
    margin: 16px auto 0;
    max-width: 720px;
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.6;
}

.tarjetas {
    width: min(1200px, 100%);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tarjeta {
    min-height: 240px;
    padding: 34px 26px;
    border: 1px solid rgba(229, 189, 69, 0.65);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(111, 16, 24, 0.94),
            rgba(25, 5, 6, 0.98)
        );
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.34),
        inset 0 0 25px rgba(229, 189, 69, 0.035);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    border-color: #e5bd45;
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.46),
        0 0 25px rgba(229, 189, 69, 0.12);
}

.icono {
    margin-bottom: 18px;
    font-size: 44px;
}

.tarjeta h3 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    color: #f1c85b;
    font-size: 27px;
}

.tarjeta p {
    color: #efefef;
    line-height: 1.55;
}


/* ==========================================
   INTRO PAGINA SERVICIOS
========================================== */

.introduccion-servicios {
    padding: 72px 20px 82px;
    text-align: center;
    background:
        radial-gradient(
            circle at center top,
            rgba(126, 15, 24, 0.30),
            transparent 48%
        ),
        #170707;
    border-top: 1px solid rgba(229, 189, 69, 0.25);
}

.mini-titulo {
    display: block;
    margin-bottom: 12px;
    color: #c99c39;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.introduccion-servicios h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #e5bd45;
    font-size: 40px;
    font-weight: normal;
}

.introduccion-servicios p {
    max-width: 700px;
    margin: 16px auto 0;
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.65;
}


/* ==========================================
   FICHAS DE SERVICIOS
========================================== */

.ficha-servicio {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 64px;
    align-items: start;
    border-bottom: 1px solid rgba(229, 189, 69, 0.16);
}

.ficha-invertida .ficha-imagen {
    order: 2;
}

.ficha-invertida .ficha-contenido {
    order: 1;
}


/* IMAGEN */

.ficha-imagen {
    position: sticky;
    top: 125px;
}

.ficha-imagen img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(229, 189, 69, 0.76);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.48),
        0 0 26px rgba(229, 189, 69, 0.09);
}


/* CONTENIDO */

.ficha-contenido {
    padding-top: 6px;
}

.tipo-servicio {
    display: block;
    margin-bottom: 12px;
    color: #c99c39;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.ficha-contenido h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    color: #e5bd45;
    font-size: 40px;
    line-height: 1.1;
}

.ficha-contenido > p {
    margin-bottom: 17px;
    color: #dedede;
    font-size: 16px;
    line-height: 1.72;
}

.frase-destacada {
    color: #f3c858 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px !important;
    font-style: italic;
}

.especies {
    margin: 26px 0;
    padding: 20px 22px;
    border-left: 3px solid #d5a735;
    border-radius: 0 10px 10px 0;
    background: rgba(122, 14, 22, 0.30);
    color: #eeeeee;
    font-size: 15px;
    line-height: 1.65;
}

.especies strong {
    color: #f0c654;
}


/* ==========================================
   PRECIO
========================================== */

.precio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 30px;
    padding: 12px 25px;
    border: 1px solid #e5bd45;
    border-radius: 6px;
    background:
        linear-gradient(
            180deg,
            #e0b540,
            #bd8d22
        );
    color: #210707;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}


/* ==========================================
   DATOS DEL SERVICIO
========================================== */

.datos-servicio {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.datos-servicio > div {
    padding: 22px;
    border: 1px solid rgba(229, 189, 69, 0.27);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(92, 13, 20, 0.60),
            rgba(20, 5, 6, 0.76)
        );
}

.datos-servicio h3 {
    margin-bottom: 13px;
    color: #f0c654;
    font-size: 16px;
}

.datos-servicio ul {
    padding-left: 19px;
}

.datos-servicio li {
    margin-bottom: 7px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.45;
}


/* ==========================================
   BOTON SERVICIO
========================================== */

.boton-servicio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid #e5bd45;
    border-radius: 6px;
    background: #8e111c;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.boton-servicio:hover {
    transform: translateY(-2px);
    background: #a51622;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(229, 189, 69, 0.15);
}


/* ==========================================
   FOOTER
========================================== */

footer {
    padding: 44px 20px;
    text-align: center;
    background: #060202;
    border-top: 1px solid rgba(229, 189, 69, 0.30);
    color: #e5bd45;
}

footer p + p {
    margin-top: 5px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

    .header {
        padding-left: 4%;
        padding-right: 4%;
    }

    .logo img {
        width: 190px;
    }

    nav {
        gap: 18px;
    }

    nav > a,
    .menu-principal {
        font-size: 13px;
    }

    .ficha-servicio {
        grid-template-columns: 420px 1fr;
        gap: 40px;
    }
}


/* ==========================================
   MOVIL
========================================== */

@media (max-width: 850px) {

    .header {
        position: relative;
        flex-direction: column;
        justify-content: center;
        padding: 18px 20px;
        gap: 18px;
        background: #090303;
    }

    .logo img {
        width: 210px;
    }

    nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .submenu {
        left: 0;
        transform: none;
        top: calc(100% + 10px);
    }

    .menu-desplegable:hover .submenu {
        transform: none;
    }

    .hero,
    .hero-interior {
        height: 640px;
    }

    .overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.18) 0%,
                rgba(0, 0, 0, 0.38) 36%,
                rgba(0, 0, 0, 0.85) 100%
            );
    }

    .hero-texto,
    .hero-texto-interior {
        top: auto;
        left: 7%;
        right: 7%;
        bottom: 50px;
        transform: none;
        max-width: none;
    }

    .hero-texto h1,
    .hero-texto-interior h1 {
        font-size: 48px;
    }

    .hero-texto h2 {
        font-size: 26px;
    }

    .tarjetas {
        grid-template-columns: 1fr;
    }

    .ficha-servicio {
        width: min(100% - 32px, 680px);
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 58px 0;
    }

    .ficha-invertida .ficha-imagen,
    .ficha-invertida .ficha-contenido {
        order: initial;
    }

    .ficha-imagen {
        position: static;
    }

    .ficha-contenido h2 {
        font-size: 34px;
    }

    .datos-servicio {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   TELEFONOS PEQUEÑOS
========================================== */

@media (max-width: 520px) {

    .logo img {
        width: 185px;
    }

    nav > a,
    .menu-principal {
        font-size: 11px;
    }

    .hero,
    .hero-interior {
        height: 590px;
    }

    .hero-texto h1,
    .hero-texto-interior h1 {
        font-size: 39px;
    }

    .hero-texto span {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero-texto h2 {
        font-size: 22px;
    }

    .hero-texto p {
        font-size: 15px;
    }

    .introduccion-servicios {
        padding: 50px 20px 60px;
    }

    .introduccion-servicios h2 {
        font-size: 31px;
    }

    .ficha-contenido h2 {
        font-size: 30px;
    }

    .boton-servicio {
        width: 100%;
        text-align: center;
    }
}
/* =========================================================
   ESTRELLAS DECORATIVAS - IDENTIDAD SALTIMBANQUI
   ========================================================= */

body {
    background-color: #0d0000;
    background-image:
        radial-gradient(circle, rgba(218, 165, 32, 0.42) 1.3px, transparent 1.5px),
        radial-gradient(circle, rgba(218, 165, 32, 0.20) 1px, transparent 1.3px);

    background-size:
        95px 95px,
        145px 145px;

    background-position:
        15px 25px,
        65px 80px;

    background-attachment: fixed;
}


/* Las secciones permiten ver discretamente el fondo estrellado */

.introduccion-servicios,
.ficha-servicio {
    background-color: transparent;
}
/* =========================================================
   ARRIENDO DE JUEGOS
   ========================================================= */

.catalogo-juegos {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* CADA JUEGO */

.tarjeta-juego {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 70px;
    align-items: center;
    border-bottom: 1px solid rgba(229, 189, 69, 0.16);
}


/* ALTERNAR POSICION */

.tarjeta-juego:nth-child(even) .imagen-juego {
    order: 2;
}

.tarjeta-juego:nth-child(even) .contenido-juego {
    order: 1;
}


/* IMAGEN */

.imagen-juego {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-juego img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;

    border-radius: 4px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.48),
        0 0 25px rgba(229, 189, 69, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.imagen-juego img:hover {
    transform: translateY(-4px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(229, 189, 69, 0.14);
}


/* CONTENIDO */

.contenido-juego {
    max-width: 590px;
}


.contenido-juego h2 {
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.1;

    color: #e5bd45;
}


.contenido-juego > p {
    margin-bottom: 22px;

    color: #dedede;
    font-size: 16px;
    line-height: 1.72;
}


/* INFORMACION TEMPORAL */

.datos-pendientes {
    margin: 25px 0 28px;
    padding: 18px 20px;

    border-left: 3px solid #d5a735;
    border-radius: 0 10px 10px 0;

    background: rgba(122, 14, 22, 0.30);

    color: #eeeeee;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   ARRIENDO DE JUEGOS - TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .tarjeta-juego {
        grid-template-columns: 360px 1fr;
        gap: 45px;
    }

    .imagen-juego img {
        max-width: 350px;
    }

}


/* =========================================================
   ARRIENDO DE JUEGOS - MOVIL
   ========================================================= */

@media (max-width: 850px) {

    .catalogo-juegos {
        width: min(100% - 32px, 680px);
    }

    .tarjeta-juego {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 0;
    }

    .tarjeta-juego:nth-child(even) .imagen-juego,
    .tarjeta-juego:nth-child(even) .contenido-juego {
        order: initial;
    }

    .imagen-juego img {
        width: 100%;
        max-width: 400px;
    }

    .contenido-juego {
        max-width: none;
    }

    .contenido-juego h2 {
        font-size: 34px;
    }

}


/* =========================================================
   ARRIENDO DE JUEGOS - TELEFONOS PEQUEÑOS
   ========================================================= */

@media (max-width: 520px) {

    .tarjeta-juego {
        padding: 48px 0;
    }

    .imagen-juego img {
        max-width: 100%;
    }

    .contenido-juego h2 {
        font-size: 30px;
    }

    .contenido-juego > p {
        font-size: 15px;
    }

}

/* ===== SALTIMBANQUI 2026 - DISENO FINAL AMARILLO/ROJO ===== */

body {
    background-color: #F8C301;
    background-image: url("img/estrellasamarillas.jpg");
    background-repeat: repeat;
    background-attachment: fixed;
    color: #ffffff;
}

.header {
    background: rgba(126, 5, 8, 0.94);
    border-bottom: 1px solid rgba(255,255,255,0.72);
}

nav > a, .menu-principal { color: #ffffff; }
nav > a:hover, .menu-principal:hover { color: #F8C301; }

.submenu {
    background: #C60F11;
    border-color: rgba(255,255,255,0.72);
}
.submenu a { color: #ffffff; }
.submenu a:hover { background: #9f090b; color: #ffffff; }

.hero-texto span,
.hero-texto h1,
.hero-texto h2,
.hero-texto p { color: #ffffff; }

.hero-texto h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.78), 0 0 5px rgba(0,0,0,0.35);
}

.introduccion-servicios {
    width: min(1200px, calc(100% - 100px));
    margin: 45px auto 0;
    padding: 65px 40px 45px;
    background: #C60F11;
    border: 2px solid rgba(255,255,255,0.76);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 18px 40px rgba(90,0,0,0.28);
}

.mini-titulo { color: #F8C301; }
.introduccion-servicios h2,
.introduccion-servicios p { color: #ffffff; }

/* SHOWS: todos con foto a la izquierda */
.ficha-servicio {
    width: min(1200px, calc(100% - 100px));
    margin: 0 auto;
    padding: 70px 55px;
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 55px;
    align-items: center;
    background: #C60F11;
    border-left: 2px solid rgba(255,255,255,0.76);
    border-right: 2px solid rgba(255,255,255,0.76);
    border-bottom: 1px solid rgba(255,255,255,0.30);
}

.ficha-servicio:last-of-type {
    padding-bottom: 70px;
    border-bottom: 2px solid rgba(255,255,255,0.76);
    border-radius: 0 0 22px 22px;
    margin-bottom: 45px;
    box-shadow: 0 18px 40px rgba(90,0,0,0.28);
}

.ficha-invertida .ficha-imagen,
.ficha-invertida .ficha-contenido { order: initial; }

.ficha-imagen {
    position: static;
    width: 400px;
    height: 473px;
    overflow: hidden;
}

.ficha-imagen img {
    display: block;
    width: 400px;
    height: 473px;
    object-fit: fill;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: 0 16px 32px rgba(93,0,0,0.28);
}

.ficha-contenido { min-width: 0; padding-top: 0; }
.tipo-servicio { color: #F8C301; }

.ficha-contenido h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(86,0,0,0.28);
}

.ficha-contenido > p { color: #ffffff; }

.especies, .datos-pendientes {
    margin: 25px 0 28px;
    padding: 20px 22px;
    background: #A90C0E;
    border-left: 4px solid #F8C301;
    border-radius: 0 10px 10px 0;
    color: #ffffff;
}

.especies strong, .datos-pendientes strong { color: #F8C301; }

.precio {
    background: #F8C301;
    border: 2px solid #ffffff;
    color: #8e0709;
    box-shadow: 0 7px 18px rgba(98,0,0,0.25);
}

.boton-servicio {
    background: #94090b;
    border: 2px solid #F8C301;
    color: #ffffff;
}

.boton-servicio:hover {
    background: #7b0507;
    box-shadow: 0 9px 22px rgba(87,0,0,0.32), 0 0 15px rgba(248,195,1,0.38);
}

/* HOME */
.categorias {
    width: min(1300px, calc(100% - 100px));
    margin: 45px auto;
    padding: 80px 6%;
    border-radius: 22px;
    background: #C60F11;
    border: 2px solid rgba(255,255,255,0.72);
    box-shadow: 0 20px 50px rgba(82,0,0,0.30);
}
.categorias h2, .categorias > p { color: #ffffff; }

.tarjeta {
    border: 2px solid rgba(255,255,255,0.78);
    background: linear-gradient(145deg, #d91a1d, #a7090b);
    box-shadow: 0 15px 30px rgba(91,0,0,0.28);
}
.tarjeta h3, .tarjeta p { color: #ffffff; }

/* ARRIENDO DE JUEGOS */
.catalogo-juegos {
    width: min(1200px, calc(100% - 100px));
    margin: 0 auto 45px;
    padding: 0 55px 70px;
    background: #C60F11;
    border-left: 2px solid rgba(255,255,255,0.76);
    border-right: 2px solid rgba(255,255,255,0.76);
    border-bottom: 2px solid rgba(255,255,255,0.76);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 40px rgba(90,0,0,0.28);
}
.tarjeta-juego { background: transparent; }
.contenido-juego h2, .contenido-juego > p { color: #ffffff; }
.contenido-juego .tipo-servicio { color: #F8C301; }

footer {
    margin-top: 45px;
    background: #C60F11;
    border-top: 2px solid rgba(255,255,255,0.75);
    color: #ffffff;
}

@media (max-width: 950px) {
    .introduccion-servicios, .ficha-servicio, .catalogo-juegos {
        width: calc(100% - 40px);
    }
    .introduccion-servicios {
        margin-top: 25px;
        padding: 50px 25px 35px;
    }
    .ficha-servicio {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 25px;
    }
    .ficha-imagen {
        width: min(400px, 100%);
        height: auto;
        margin: 0 auto;
    }
    .ficha-imagen img {
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 473;
    }
    .catalogo-juegos { padding: 0 25px 50px; }
    .categorias {
        width: calc(100% - 40px);
        margin: 25px auto;
        padding: 60px 25px;
    }
}

@media (max-width: 520px) {
    .introduccion-servicios, .ficha-servicio, .catalogo-juegos {
        width: calc(100% - 24px);
    }
    .introduccion-servicios { padding: 42px 18px 30px; }
    .ficha-servicio { padding: 42px 18px; gap: 28px; }
    .catalogo-juegos { padding: 0 18px 35px; }
    .categorias {
        width: calc(100% - 24px);
        margin: 14px auto;
        padding: 50px 18px;
    }
}

/* =========================================================
   HOME - WIDGETS DEFINITIVOS
   3 ARRIBA + 3 ABAJO
   ========================================================= */

.widgets-home {
    width: 100%;
    max-width: 1050px;

    margin: 40px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* CADA WIDGET */

.widget-home {
    display: block;
    width: 100%;
}


/* IMAGEN */

.widget-home img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    border: 0;

    filter: drop-shadow(0 10px 14px rgba(90,0,0,0.25));

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


/* EFECTO MOUSE */

.widget-home:hover img {
    transform: translateY(-5px);

    filter:
        drop-shadow(0 15px 18px rgba(90,0,0,0.35));
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .widgets-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 520px) {

    .widgets-home {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

/* =========================================================
   FOOTER SALTIMBANQUI 2026
   PEGAR AL FINAL DE ESTILO.CSS
   ========================================================= */

.footer-saltimbanqui {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 42px 20px 28px;

    background: #c7962f !important;
    color: #fff8dc;
    text-align: center;

    border-top: 5px solid #74171d;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        inset 0 8px 20px rgba(90,30,10,0.10);
}


/* =========================================================
   CENEFA SUPERIOR
   ========================================================= */

.footer-saltimbanqui::before {
    content: "";
    position: absolute;

    top: -1px;
    left: 0;

    width: 100%;
    height: 14px;

    background:
        radial-gradient(
            circle at 7px 0,
            #74171d 7px,
            transparent 8px
        );

    background-size: 14px 14px;
    background-repeat: repeat-x;
}


/* =========================================================
   ESTRELLAS
   ========================================================= */

.footer-estrellas {
    margin: 0 auto 25px;

    color: #fff5c8;
    font-size: 15px;
    letter-spacing: 7px;
}


/* =========================================================
   BLOQUE CONTACTO
   ========================================================= */

.footer-contacto {
    display: flex !important;
    justify-content: center;
    align-items: stretch;

    width: 100%;
    max-width: 900px;

    margin: 0 auto 28px;
    padding: 12px 0 18px;

    border-top: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}


.footer-contacto-item {
    display: block;
    width: 33.333%;
    box-sizing: border-box;

    padding: 0 25px;

    color: #fff8dc;

    font-size: 14px;
    line-height: 1.5;
}


.footer-contacto-item + .footer-contacto-item {
    border-left: 1px solid rgba(255,255,255,0.35);
}


.footer-contacto-item strong {
    display: block;

    margin: 7px 0 3px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


.footer-contacto-item span,
.footer-contacto-item a {
    display: block;

    color: #fff8dc;

    font-size: 13px;
    text-decoration: none;
}


.footer-contacto-item a:hover {
    color: #ffffff;
}


/* =========================================================
   ICONOS CONTACTO
   ========================================================= */

.footer-icono-pequeno {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;

    box-sizing: border-box;

    margin: 0 auto 8px;

    color: #ffffff;

    background: #a75c25;

    border: 2px solid rgba(255,235,165,0.75);
    border-radius: 50%;

    font-size: 18px;

    box-shadow:
        0 2px 0 rgba(90,30,20,0.25),
        inset 0 0 0 2px rgba(255,255,255,0.08);
}


/* =========================================================
   FRASE CENTRAL
   ========================================================= */

.footer-frase {
    display: flex !important;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 820px;

    margin: 0 auto 30px;
}


.footer-frase p {
    max-width: 650px;

    margin: 0 20px;

    color: #fff8dc;

    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}


.footer-frase strong {
    color: #ffffff;
}


.footer-linea {
    display: block;
    flex: 1;

    height: 1px;

    background: rgba(255,245,200,0.55);
}


/* =========================================================
   BOTONES / MEDALLONES
   ========================================================= */

.footer-accesos {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;

    width: 100%;
    max-width: 720px;

    margin: 0 auto 20px;
}


.footer-acceso {
    display: block;

    width: 110px;

    margin: 0 8px 15px;

    color: #ffffff;

    text-align: center;
    text-decoration: none;
}


.footer-medallon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 62px;
    height: 62px;

    box-sizing: border-box;

    margin: 0 auto 10px;

    background: #861b24;

    color: #ffffff;

    border: 3px solid #f4d16b;
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: bold;

    box-shadow:
        0 0 0 2px #74171d,
        0 0 0 4px rgba(255,231,143,0.60),
        0 5px 0 #651219,
        0 8px 12px rgba(70,20,10,0.25);

    transition:
        transform 0.20s ease,
        background 0.20s ease;
}


.footer-acceso:hover .footer-medallon {
    transform: translateY(-4px);
    background: #a01f29;
}


.footer-acceso span {
    display: block;

    margin-top: 11px;

    color: #fff8dc;

    font-size: 10px;
    font-weight: bold;
    line-height: 1.25;

    text-transform: uppercase;
}


/* =========================================================
   PARTE FINAL
   ========================================================= */

.footer-cierre {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    padding-top: 10px;

    color: #fff2bd;

    text-align: center;
}


.footer-cierre span {
    display: block;

    width: 150px;
    height: 1px;

    margin: 0 auto 14px;

    background: rgba(255,245,200,0.55);
}


.footer-cierre p {
    margin: 0;

    color: #fff2bd;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .footer-contacto {
        max-width: 700px;
    }

    .footer-contacto-item {
        padding: 0 12px;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .footer-saltimbanqui {
        padding: 38px 15px 25px;
    }


    .footer-contacto {
        display: block !important;

        max-width: 420px;

        padding-bottom: 5px;
    }


    .footer-contacto-item {
        width: 100%;

        padding: 15px 10px;
    }


    .footer-contacto-item + .footer-contacto-item {
        border-left: none;

        border-top: 1px solid rgba(255,255,255,0.30);
    }


    .footer-frase {
        display: block !important;

        max-width: 430px;
    }


    .footer-frase p {
        margin: 0;

        font-size: 14px;
    }


    .footer-linea {
        display: none;
    }


    .footer-accesos {
        max-width: 360px;
    }


    .footer-acceso {
        width: 90px;

        margin: 0 5px 20px;
    }


    .footer-medallon {
        width: 56px;
        height: 56px;

        font-size: 22px;
    }


    .footer-acceso span {
        font-size: 9px;
    }


    .footer-cierre p {
        font-size: 11px;
    }

}

/* =========================================================
   PACKS SALTIMBANQUI 2026
   FONDO BLANCO / MARFIL
   ========================================================= */


/* CONTENEDOR PRINCIPAL */

.packs-contenedor {
    width: min(1200px, calc(100% - 100px));

    margin: 45px auto;

    padding: 65px 55px 75px;

    box-sizing: border-box;

    background: #fffdf7;

    border: 2px solid rgba(198,15,17,0.55);

    border-radius: 22px;

    box-shadow:
        0 20px 45px rgba(95,20,10,0.22);
}


/* =========================================================
   INTRODUCCION
   ========================================================= */

.packs-introduccion {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}


.packs-mini-titulo {
    display: block;

    margin-bottom: 12px;

    color: #C60F11;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.packs-introduccion h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    color: #9d0b0d;

    font-size: 42px;

    font-weight: normal;

    line-height: 1.15;
}


.packs-introduccion p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #5d3933;

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   GRILLA DE PACKS
   ========================================================= */

.packs-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 34px 28px;

    width: 100%;

    max-width: 1050px;

    margin: 0 auto;
}


/* =========================================================
   TARJETA
   ========================================================= */

.pack-card {
    width: 100%;

    text-align: center;
}


/* IMAGEN ORIGINAL 600 x 837 */

.pack-card img {
    display: block;

    width: 100%;

    max-width: 330px;

    height: auto;

    margin: 0 auto;

    border: 0;

    filter:
        drop-shadow(0 12px 16px rgba(95,20,10,0.20));

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


.pack-card:hover img {
    transform: translateY(-5px);

    filter:
        drop-shadow(0 17px 20px rgba(95,20,10,0.28));
}


/* =========================================================
   BOTON PACK
   ========================================================= */

.pack-boton {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 190px;

    min-height: 46px;

    margin-top: 20px;

    padding: 0 22px;

    box-sizing: border-box;

    background: #C60F11;

    color: #ffffff;

    border: 2px solid #F8C301;

    border-radius: 7px;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 0.6px;

    text-decoration: none;

    box-shadow:
        0 6px 14px rgba(110,10,10,0.20);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.pack-boton:hover {
    background: #9f090b;

    transform: translateY(-2px);

    box-shadow:
        0 9px 18px rgba(110,10,10,0.28);
}


/* =========================================================
   ARMA TU PLAN
   ========================================================= */

.packs-personalizado {
    max-width: 800px;

    margin: 65px auto 0;

    padding: 35px 30px;

    box-sizing: border-box;

    text-align: center;

    background: #f9efcf;

    border: 1px solid rgba(198,15,17,0.28);

    border-radius: 16px;
}


.packs-personalizado > span {
    display: block;

    margin-bottom: 8px;

    color: #C60F11;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.packs-personalizado h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    color: #971013;

    font-size: 30px;
}


.packs-personalizado p {
    max-width: 600px;

    margin: 14px auto 22px;

    color: #62453d;

    font-size: 15px;

    line-height: 1.6;
}


.packs-personalizado a {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 46px;

    padding: 0 28px;

    background: #C60F11;

    color: #ffffff;

    border: 2px solid #F8C301;

    border-radius: 7px;

    font-size: 12px;

    font-weight: bold;

    text-decoration: none;
}


/* =========================================================
   PACKS - TABLET
   ========================================================= */

@media (max-width: 950px) {

    .packs-contenedor {
        width: calc(100% - 40px);

        padding:
            55px 35px 60px;
    }


    .packs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 720px;
    }


    .pack-card img {
        max-width: 320px;
    }

}


/* =========================================================
   PACKS - MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .packs-contenedor {
        width: calc(100% - 24px);

        margin: 20px auto;

        padding:
            42px 18px 45px;
    }


    .packs-introduccion {
        margin-bottom: 35px;
    }


    .packs-introduccion h2 {
        font-size: 32px;
    }


    .packs-introduccion p {
        font-size: 15px;
    }


    .packs-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .pack-card img {
        width: 100%;

        max-width: 340px;
    }


    .packs-personalizado {
        margin-top: 45px;

        padding: 30px 20px;
    }


    .packs-personalizado h3 {
        font-size: 27px;
    }

}

/* =========================================================
   FORMULARIOS SALTIMBANQUI 2026
========================================================= */

.pagina-formulario {
    margin: 0;
}


/* =========================================================
   CONTENEDOR GENERAL
========================================================= */

.formulario-contenedor {
    width: calc(100% - 80px);
    max-width: 1120px;
    margin: 40px auto 60px auto;
    padding: 55px 65px;
    box-sizing: border-box;

    background: #fffaf2;
    border: 1px solid rgba(165, 20, 20, 0.45);
    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   INTRODUCCIÓN
========================================================= */

.formulario-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px auto;
}

.formulario-intro > span {
    display: block;
    margin-bottom: 12px;

    color: #b10d13;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.formulario-intro h2 {
    margin: 0 0 14px 0;

    color: #a80d12;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: normal;
    line-height: 1.15;
}

.formulario-intro p {
    margin: 0;

    color: #5b3028;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FORMULARIO
========================================================= */

.formulario-saltimbanqui {
    width: 100%;
}


/* =========================================================
   SECCIONES
========================================================= */

.form-seccion {
    margin-bottom: 28px;
    padding: 30px 32px;

    background: #ffffff;
    border: 1px solid #eee1d4;
    border-radius: 16px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   TÍTULO DE CADA SECCIÓN
========================================================= */

.form-seccion-titulo {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 26px;
    padding-bottom: 18px;

    border-bottom: 1px solid #ead9c8;
}

.form-seccion-titulo > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    background: #b20d13;
    color: #ffffff;

    border: 3px solid #f4bd22;
    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;
}

.form-seccion-titulo h3 {
    margin: 0 0 4px 0;

    color: #a80d12;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: normal;
}

.form-seccion-titulo p {
    margin: 0;

    color: #77554e;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   DISTRIBUCIÓN DE CAMPOS
========================================================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 25px;
}

.form-campo {
    min-width: 0;
}

.form-campo-completo {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
========================================================= */

.form-campo label {
    display: block;
    margin-bottom: 8px;

    color: #552a25;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
========================================================= */

.formulario-saltimbanqui input[type="text"],
.formulario-saltimbanqui input[type="email"],
.formulario-saltimbanqui input[type="tel"],
.formulario-saltimbanqui input[type="date"],
.formulario-saltimbanqui select,
.formulario-saltimbanqui textarea {

    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 13px 14px;

    background: #fffdf9;
    color: #3d2824;

    border: 1px solid #d8c7b8;
    border-radius: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.formulario-saltimbanqui select {
    min-height: 48px;
    cursor: pointer;
}

.formulario-saltimbanqui textarea {
    min-height: 135px;
    resize: vertical;
}


/* CAMPO ACTIVO */

.formulario-saltimbanqui input:focus,
.formulario-saltimbanqui select:focus,
.formulario-saltimbanqui textarea:focus {

    background: #ffffff;
    border-color: #c29428;

    box-shadow:
        0 0 0 3px rgba(194, 148, 40, 0.14);
}


/* PLACEHOLDER */

.formulario-saltimbanqui ::placeholder {
    color: #aa9992;
}


/* =========================================================
   NOTAS
========================================================= */

.form-nota {
    margin: 18px 0 0 0;
    padding: 12px 15px;

    background: #fff7dc;
    color: #6d5527;

    border-left: 4px solid #e3b323;
    border-radius: 4px;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   CHECKBOXES / OPCIONES
========================================================= */

.form-opciones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 50px;
    padding: 10px 14px;
    box-sizing: border-box;

    background: #fffaf2;

    border: 1px solid #eadbcf;
    border-radius: 9px;

    color: #55342e;
    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.form-check:hover {
    background: #fff4d5;
    border-color: #dfb637;
    transform: translateY(-1px);
}

.form-check input[type="checkbox"] {
    flex: 0 0 auto;

    width: 19px;
    height: 19px;
    margin: 0;

    accent-color: #b20d13;
}

.form-check span {
    line-height: 1.35;
}


/* =========================================================
   CAMPO TRAMPA ANTISPAM
========================================================= */

.campo-trampa {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   CIERRE DEL FORMULARIO
========================================================= */

.form-cierre {
    margin-top: 35px;
    text-align: center;
}

.form-cierre p {
    max-width: 680px;
    margin: 0 auto 22px auto;

    color: #73554e;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BOTÓN ENVIAR
========================================================= */

.form-boton-enviar {
    display: inline-block;

    min-width: 280px;
    padding: 16px 35px;

    background: #c90d12;
    color: #ffffff;

    border: 2px solid #efbd27;
    border-radius: 7px;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.16);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.form-boton-enviar:hover {
    background: #a8090e;

    transform: translateY(-2px);

    box-shadow:
        0 7px 16px rgba(0, 0, 0, 0.20);
}


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

@media (max-width: 768px) {

    .formulario-contenedor {
        width: calc(100% - 24px);
        margin: 20px auto 35px auto;
        padding: 30px 18px;

        border-radius: 16px;
    }

    .formulario-intro {
        margin-bottom: 30px;
    }

    .formulario-intro h2 {
        font-size: 31px;
    }

    .formulario-intro p {
        font-size: 15px;
    }

    .form-seccion {
        padding: 22px 17px;
        margin-bottom: 18px;
    }

    .form-seccion-titulo {
        align-items: flex-start;
        gap: 12px;
    }

    .form-seccion-titulo > span {
        flex-basis: 40px;
        width: 40px;
        height: 40px;

        font-size: 13px;
    }

    .form-seccion-titulo h3 {
        font-size: 21px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-campo-completo {
        grid-column: auto;
    }

    .form-opciones {
        grid-template-columns: 1fr;
    }

    .formulario-saltimbanqui input[type="text"],
    .formulario-saltimbanqui input[type="email"],
    .formulario-saltimbanqui input[type="tel"],
    .formulario-saltimbanqui input[type="date"],
    .formulario-saltimbanqui select,
    .formulario-saltimbanqui textarea {
        font-size: 16px;
    }

    .form-boton-enviar {
        width: 100%;
        min-width: 0;
    }

}
/* =========================================
   BOTÓN GALERÍA FORMULARIOS
========================================= */

.form-boton-galeria {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 28px;

    background: #d10d16;
    color: #ffffff !important;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;

    border-radius: 30px;
    transition: 0.25s ease;
}

.form-boton-galeria:hover {
    background: #a90810;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* =========================================================
   GALERÍA EMPRESAS
========================================================= */

.galeria-contenedor {
    width: min(1200px, calc(100% - 100px));
    margin: 45px auto;
    padding: 65px 55px 75px;

    background: #fffdf7;

    border: 2px solid rgba(198,15,17,0.55);
    border-radius: 22px;

    box-shadow:
        0 20px 45px rgba(95,20,10,0.22);
}


/* INTRO */

.galeria-intro {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.galeria-intro > span {
    display: block;
    margin-bottom: 12px;

    color: #C60F11;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.galeria-intro h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: normal;

    color: #9d0b0d;
}

.galeria-intro p {
    max-width: 700px;
    margin: 18px auto 0;

    color: #5d3933;

    font-size: 16px;
    line-height: 1.65;
}


/* GRILLA */

.galeria-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.galeria-grid img {
    display: block;

    width: 100%;
    aspect-ratio: 1000 / 667;

    object-fit: cover;

    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 8px 18px rgba(80,20,10,0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.galeria-grid img:hover {
    transform: translateY(-4px);

    box-shadow:
        0 13px 24px rgba(80,20,10,0.24);
}


/* ACCIÓN FINAL */

.galeria-accion {
    max-width: 780px;

    margin: 60px auto 0;
    padding: 35px 30px;

    text-align: center;

    background: #f9efcf;

    border: 1px solid rgba(198,15,17,0.28);
    border-radius: 16px;
}


.galeria-accion h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    color: #971013;
    font-size: 30px;
}


.galeria-accion p {
    max-width: 600px;

    margin: 14px auto 22px;

    color: #62453d;
    font-size: 15px;
    line-height: 1.6;
}


.galeria-accion a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 28px;

    background: #C60F11;
    color: #ffffff;

    border: 2px solid #F8C301;
    border-radius: 7px;

    font-size: 12px;
    font-weight: bold;

    text-decoration: none;
}


/* =========================================================
   VISOR
========================================================= */

.visor-galeria {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0,0,0,0.92);
}


.visor-galeria.abierto {
    display: flex;
}


.visor-galeria img {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.55);
}


/* CERRAR */

.visor-cerrar {
    position: absolute;

    top: 20px;
    right: 28px;

    background: transparent;
    border: 0;

    color: #ffffff;

    font-size: 48px;
    line-height: 1;

    cursor: pointer;
}


/* FLECHAS */

.visor-anterior,
.visor-siguiente {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 70px;

    background: rgba(198,15,17,0.82);

    color: #ffffff;

    border: 1px solid #F8C301;
    border-radius: 8px;

    font-size: 45px;

    cursor: pointer;
}


.visor-anterior {
    left: 25px;
}


.visor-siguiente {
    right: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .galeria-contenedor {
        width: calc(100% - 40px);

        padding: 50px 30px;
    }


    .galeria-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .galeria-contenedor {
        width: calc(100% - 24px);

        margin: 20px auto;

        padding: 38px 15px;
    }


    .galeria-intro h2 {
        font-size: 31px;
    }


    .galeria-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .visor-galeria {
        padding: 15px;
    }


    .visor-anterior,
    .visor-siguiente {
        width: 42px;
        height: 58px;

        font-size: 35px;
    }


    .visor-anterior {
        left: 8px;
    }


    .visor-siguiente {
        right: 8px;
    }


    .visor-cerrar {
        top: 10px;
        right: 15px;
    }

}
/* =========================================================
   WHATSAPP FLOTANTE SALTIMBANQUI
========================================================= */

.whatsapp-flotante {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 99999;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 8px 17px 8px 8px;

    box-sizing: border-box;

    background: #25D366;

    color: #ffffff !important;

    border: 2px solid #ffffff;

    border-radius: 40px;

    text-decoration: none !important;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.30);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.whatsapp-flotante:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.35);

}



/* CÍRCULO INTERIOR */

.whatsapp-icono {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    background: #ffffff;

    color: #25D366;

    border-radius: 50%;

    font-size: 20px;

    line-height: 1;

}



/* TEXTO */

.whatsapp-texto {

    display: block;

    color: #ffffff;

    white-space: nowrap;

}



/* =========================================================
   WHATSAPP MÓVIL
========================================================= */

@media (max-width: 600px) {

    .whatsapp-flotante {

        right: 14px;
        bottom: 14px;

        width: 56px;
        height: 56px;

        padding: 7px;

        justify-content: center;

        border-radius: 50%;

    }


    .whatsapp-icono {

        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 21px;

    }


    .whatsapp-texto {

        display: none;

    }

}
/* =========================================================
   EFECTO UNIFICADO TARJETAS SALTIMBANQUI
   TODAS SUBEN 5PX - SIN SOMBRA
   ========================================================= */


/* SHOWS Y SERVICIOS / EXPERIENCIAS */

.ficha-imagen img {
    box-shadow: none !important;
    transition: transform 0.25s ease !important;
}

.ficha-imagen img:hover {
    transform: translateY(-5px) !important;
    box-shadow: none !important;
}


/* ARRIENDO DE JUEGOS / EQUIPAMIENTO */

.imagen-juego img {
    box-shadow: none !important;
    transition: transform 0.25s ease !important;
}

.imagen-juego img:hover {
    transform: translateY(-5px) !important;
    box-shadow: none !important;
}