/*
 * Splash splash - Pool Party
 * Estilos Base según diseño
 * ============================
 */

/* ===== VARIABLES ===== */
:root {
    --splash-blue: #169ed8;
    --splash-blue-dark: #1E8BBE;
    --splash-yellow: #fae704;
    --splash-yellow-dark: #FFB300;
    --splash-orange: #eb6913;
    --splash-orange-dark: #F57C00;
    --splash-white: #ffffff;
    --splash-red: #ff005d;
    --splash-dark: #333333;
    --splash-light: #f5f5f5;
    --splash-pattern-blue: #29ABE2;

    /* ===== GRADIENTES ===== */
    --gradient-primary: linear-gradient(90deg, #FF0053 20%, #2D2BB1 100%);
    --gradient-secondary: linear-gradient(135deg, #8B008B 0%, #FF1493 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    --gradient-bg: linear-gradient(90deg, #4a0b8f 0%, #f2295b 100%);

    /* ===== TIPOGRAFÍA ===== */
    --font-primary: 'Poppins', 'Arial', sans-serif;
    --font-secondary: 'Roboto', 'Helvetica', sans-serif;

    --fs-h1: 4rem;
    /* 64px */
    --fs-h2: 3rem;
    /* 48px */
    --fs-h3: 2.25rem;
    /* 36px */
    --fs-h4: 1.875rem;
    /* 30px */
    --fs-h5: 1.5rem;
    /* 24px */
    --fs-body-lg: 1.25rem;
    /* 20px */
    --fs-body: 1rem;
    /* 16px */
    --fs-body-sm: 0.875rem;
    /* 14px */

    /* ===== ESPACIADO ===== */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;

    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* ===== CONTENEDORES ===== */
    --container-max-width: 1320px;
    --container-md: 960px;
    --container-sm: 720px;

    /* ===== BORDES Y RADIOS ===== */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-round: 50%;

    /* ===== SOMBRAS ===== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

    /* ===== TRANSICIONES ===== */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* ===== Z-INDEX ===== */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;

    /* ===== TRANSFORM ===== */
    --t-jungle: skew(-15deg) rotate(-15deg);

    /* ===== OPACITY ===== */
    --o-opacity: 0.77;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0px auto;
    padding: var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

main {
    margin-top: -36px;
}

/* ===== RESET PARA SPLASH ===== */
.splash-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===================================
   HEADER - Fondo azul con estilo Pool Party
   =================================== */

.splash-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99 !important;
    box-shadow: none !important;
    /* padding: 0 !important; */
    margin: 0 !important;
    width: 100% !important;
}

/* .splash-main-header {
    background: linear-gradient(180deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    padding: 10px 0 0;
    position: relative;
} */

.splash-main-header {
    width: 100%;
    min-height: 150px;
    padding: 15px 0 3px;
    /* position: sticky; */
    position: relative;
    top: 0;
    z-index: 999;
    /* background: var(--gradient-primary); */
    background: var(--splash-orange);
    color: #fff;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); */
    transition: all 0.2s ease;
}

.splash-header-content {
    max-width: 1140px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    margin: 0 auto;
}

.splash-header-left,
.splash-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón Menú */
.splash-menu-btn {
    background: transparent;
    border: none;
    color: var(--splash-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.splash-menu-btn:hover {
    opacity: 0.8;
}

.splash-menu-btn i {
    font-size: 18px;
}

/* Logo */
/* .splash-logo {
    display: block;
}

.splash-logo img {
    max-height: 80px;
    transition: transform 0.3s ease;
}

.splash-logo:hover img {
    transform: scale(1.05);
} */

/* Botones Header */
.splash-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.splash-btn-orange {
    background: var(--splash-orange);
    color: var(--splash-white) !important;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.splash-btn-orange:hover {
    background: var(--splash-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

/* Olas del Header */
.splash-header-waves {
    position: relative;
    height: 60px;
    margin-top: -5px;
    transform: rotate(180deg);
}

.splash-header-waves svg {
    width: 100%;
    height: 100%;
    display: block;
}



/* Popup Parques */
.splash-popup {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: var(--splash-orange);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
}

.splash-popup.active {
    right: 0;
}

.splash-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--splash-white);
    font-size: 24px;
    cursor: pointer;
}

.splash-popup h3 {
    color: var(--splash-white);
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.splash-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.splash-popup li {
    margin-bottom: 15px;
}

.splash-popup a {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--splash-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.splash-popup a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Overlay */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.splash-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   HERO - Pool Party
   =================================== */
.splash-hero {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: var(--jungle-dark);
    top: -36px;
}

.splash-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.splash-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.splash-hero-title-img {
    max-width: 500px;
    width: 90%;
}

/* ===================================
   SECCIÓN PARQUES
   =================================== */

.splash-section {
    padding: 60px 0;
}

.splash-parques {
    background: var(--splash-white);
    text-align: center;
}

.splash-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--splash-orange);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 var(--splash-yellow);
}

.splash-parques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.splash-parque-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 400px;
}

.splash-parque-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.splash-parque-info,
.splash-evento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--splash-white);
    margin: 0;
    padding: 0 15px 15px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.splash-parque-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.splash-parque-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.splash-parque-card:hover .splash-parque-img {
    transform: scale(1.05);
}

/* Overlay degradado para legibilidad del texto */
.splash-parque-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}




/* Contenedor de info (nombre + botón) superpuesto */
/* .splash-parque-card h3 {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 3;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--splash-white);
    margin: 0;
    padding: 0 15px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
} */

/* Botón dentro del card de parque */
/* .splash-parque-card .splash-btn-orange {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--splash-orange);
    color: var(--splash-white) !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(235, 105, 19, 0.4);
    border: none;
    transition: all 0.3s ease;
} */

/* .splash-parque-card .splash-btn-orange:hover {
    background: var(--splash-orange-dark);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 105, 19, 0.5);
} */

/* ===================================
   SECCIÓN GRUPOS Y EVENTOS
   =================================== */
.splash-eventos {
    background: var(--splash-white);
    text-align: center;
}

.splash-eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.splash-evento-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 400px;
}

.splash-evento-card:hover {
    transform: translateY(-10px);
}

.splash-evento-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.splash-evento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   SECCIÓN FAQ - Preguntas Frecuentes
   =================================== */

.disclaimer .accordion-item {
    margin-bottom: 1rem;
    border: none;
    background: white;
    padding-bottom: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    background: orange;
    padding-bottom: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion-button {
    width: 100%;
    background: var(--splash-orange);
    border: none;
    padding: 18px 25px;
    text-align: left;
    color: var(--splash-white) !important;
    font-size: 16px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    cursor: pointer;
    font-weight: 800;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>") !important;
}

.accordion-button:not(.collapsed) {
    background-color: #eb6913 !important;
}

.accordion-body {
    color: #fff;
    text-align: left;
    padding-bottom: 0 !important;
}

/* ------ */

.splash-faq {
    /* background: var(--splash-yellow); */
    background-image: url('/splash_jungle/static/src/img/background/Preguntas-frecuentes_Fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 0 80px;
}

.splash-faq .splash-section-title {
    color: var(--splash-orange);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

.splash-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.splash-faq-item {
    margin-bottom: 15px;
}

.splash-faq-question {
    width: 100%;
    background: var(--splash-orange);
    border: none;
    padding: 18px 25px;
    text-align: left;
    color: var(--splash-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.splash-faq-question:hover {
    background: rgba(255, 255, 255, 0.3);
}

.splash-faq-question i {
    transition: transform 0.3s ease;
}

.splash-faq-item.active .splash-faq-question i {
    transform: rotate(180deg);
}

.splash-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 10px;
}

.splash-faq-item.active .splash-faq-answer {
    max-height: 200px;
}

.splash-faq-answer p {
    padding: 20px 25px;
    color: var(--splash-white);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   FOOTER - Fondo amarillo
   =================================== */
.splash-footer {
    /* background: var(--splash-blue); */
    background-image: url('/splash_jungle/static/src/img/background/Fondo-contactos.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.splash-footer-main {
    position: relative;
    padding: 40px 0;
}

.splash-footer-waves-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    margin-top: -49px;
}

.splash-footer-waves-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.splash-footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Sección del mapa en el footer */
.splash-footer-map-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.splash-footer-default-img {
    max-width: 250px;
}

/* Mapa en el footer */
.splash-footer-map {
    color: white;
    width: 100%;
    max-width: 280px;
    height: 350px;
}

.splash-footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.splash-footer-location-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.splash-footer-location-name i {
    color: var(--splash-orange);
    margin-right: 5px;
}

.splash-footer-center {
    text-align: center;
}

.splash-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.splash-social-icons a {
    width: 45px;
    height: 45px;
    background: var(--splash-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--splash-white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.splash-social-icons a:hover {
    background: var(--splash-orange);
    transform: translateY(-3px);
}

.splash-social-icons a.splash-tiktok-icon svg {
    width: 20px;
    height: 20px;
}

.splash-footer-contact {
    text-align: left;
    margin: auto;
}

.splash-footer-contact h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--splash-white);
    margin-bottom: 20px;
}

.splash-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.splash-contact-list>div {
    display: flex;
    flex-direction: column;
}

.splash-contact-list span {
    font-weight: 700;
    color: var(--splash-white);
    font-size: 14px;
}

.splash-contact-list a {
    color: var(--splash-yellow);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.splash-contact-list a:hover {
    color: var(--splash-orange);
}

/* Footer Bottom */
.splash-footer-bottom {
    background: var(--splash-yellow-dark);
    padding: 15px 0;
}

.splash-footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.splash-copyright {
    color: var(--splash-dark);
    font-size: 14px;
}

.splash-legal a {
    color: var(--splash-dark);
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}

.splash-legal a:hover {
    color: var(--splash-orange);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {

    .splash-parques-grid,
    .splash-eventos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .splash-footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* En tablet: Logo primero, mapa, contactos */
    .splash-footer-center {
        order: 1;
    }

    .splash-footer-map-section {
        order: 2;
    }

    .splash-footer-contact {
        order: 3;
        text-align: center;
    }

    .splash-footer-default-img {
        display: none;
    }

    .splash-footer-map {
        display: block;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* ===== HEADER RESPONSIVE MÓVIL ===== */
    .splash-top-bar {
        font-size: 12px;
    }

    .splash-top-bar-content {
        height: 30px;
        padding: 4px 10px;
    }

    .splash-main-header {
        min-height: auto;
        padding: 10px 0;
    }

    .splash-header-content {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 10px;
        padding: 0 15px;
    }

    /* Logo centrado en móvil */
    .splash-logo {
        position: static;
        margin: 0 auto;
    }

    .splash-logo img {
        max-height: 65px !important;
    }

    /* Botones del header en móvil - posición absoluta derecha */
    .splash-header-buttons {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 5px;
    }

    .splash-main-header .splash-btn {
        padding: 5px 8px;
        font-size: 8px;
        transform: skew(-8deg) rotate(-8deg);
        box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    }

    /* Olas del header más pequeñas */
    .splash-header-waves {
        height: 40px;
    }

    .splash-header-left span,
    .splash-header-right .splash-btn:nth-child(2) {
        display: none;
    }

    .splash-menu-btn {
        padding: 10px;
    }

    .splash-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .splash-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 0;
    }

    .splash-hero-title-img {
        max-width: 300px;
    }

    .splash-section-title {
        font-size: 1.8rem;
    }

    .splash-parques-grid,
    .splash-eventos-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    /* ===== FOOTER RESPONSIVE MÓVIL ===== */
    .splash-footer-main {
        padding: 30px 0 20px;
    }

    .splash-footer-content {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
        gap: 25px;
    }

    /* Logo del footer - reducir tamaño */
    .splash-footer-center {
        order: 1;
    }

    .splash-footer-center img,
    .splash-footer-logo-img {
        max-width: 120px !important;
        height: auto !important;
    }

    /* Mapa en móvil */
    .splash-footer-map-section {
        order: 2;
        width: 100%;
    }

    .splash-footer-map {
        max-width: 100%;
        width: 100%;
        height: 280px;
        margin: 0 auto;
    }

    .splash-footer-map iframe {
        width: 100%;
        height: 100%;
    }

    /* Contactos */
    .splash-footer-contact {
        order: 3;
    }

    /* Redes sociales */
    .splash-social-icons {
        margin-top: 15px;
        gap: 12px;
    }

    .splash-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .splash-footer-contact h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .splash-contact-list {
        gap: 10px;
    }

    .splash-contact-list span {
        font-size: 12px;
    }

    .splash-contact-list a {
        font-size: 12px;
        word-break: break-word;
    }

    /* Barra inferior del footer */
    .splash-footer-bottom {
        padding: 12px 0;
    }

    .splash-footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }

    .splash-copyright {
        font-size: 11px;
        order: 2;
    }

    .splash-legal {
        order: 1;
    }

    .splash-legal a {
        font-size: 11px;
        margin: 0 5px;
    }

    .splash-legal span {
        font-size: 11px;
    }
}

/* ===== RESPONSIVE EXTRA PEQUEÑO (< 480px) ===== */
@media (max-width: 480px) {

    /* Header extra pequeño */
    .splash-logo img {
        max-height: 50px !important;
    }

    .splash-header-buttons {
        right: 10px;
    }

    .splash-main-header .splash-btn {
        padding: 4px 6px;
        font-size: 7px;
        min-width: 90px !important;
    }

    .splash-header-waves {
        height: 30px;
    }

    /* Footer extra pequeño */
    .splash-footer-content {
        gap: 12px;
    }

    .splash-footer-center img,
    .splash-footer-logo-img {
        max-width: 100px !important;
    }

    .splash-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .splash-footer-contact h3 {
        font-size: 14px;
    }

    .splash-contact-list span,
    .splash-contact-list a {
        font-size: 11px;
    }

    .splash-copyright,
    .splash-legal a {
        font-size: 10px;
    }
}

/* ===================================
   ESTILOS ADICIONALES PARA SEDES
   =================================== */
.splash-breadcrumb {
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    padding: 60px 0 40px;
    color: var(--splash-white);
    text-align: center;
    margin-top: 110px;
}

.splash-breadcrumb h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.splash-sedes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.splash-sede-card {
    background: var(--splash-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.splash-sede-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-splash-primary {
    background: linear-gradient(135deg, var(--splash-orange) 0%, var(--splash-orange-dark) 100%);
    color: var(--splash-white) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-splash-primary:hover {
    background: linear-gradient(135deg, var(--splash-orange-dark) 0%, var(--splash-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}


/* Barra superior contacto */
.splash-top-bar {
    background: var(--splash-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    transition: transform 0.2s ease;
}

.splash-top-bar-content {
    max-width: 1400px;
    height: 35px;
    margin: 0 auto;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.splash-top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.splash-top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.splash-top-bar-right i {
    color: #fff !important;
}

.splash-main-header .splash-btn {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    line-height: 1.2;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
    transform: skew(-15deg) rotate(-15deg);
}

.splash-btn-pink {
    background: #FD2172;
}

.splash-btn-blue {
    background: #3F2EFA;
}

/* Botón hamburguesa */
.splash-menu-toggle {
    justify-self: start !important;
    background: transparent;
    border: 0;
    color: white;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 20px
}

.splash-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.splash-menu-toggle span {
    display: inline-block !important;
}

.splash-menu-toggle i {
    font-size: 16px !important;
    color: #fff !important;
}



/* Estilos base del dropdown */
.splash-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #4A0B8FBF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
}

/* ✅ Mostrar el menú solo cuando se pasa el mouse sobre el botón */
.splash-menu-toggle:hover+.splash-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Permitir mantenerlo visible si el usuario está sobre el menú mismo */
.splash-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.splash-dropdown-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.splash-dropdown-nav li a {
    display: block;
    font-size: 16px;
    color: white;
    text-decoration: none;
    padding: 13px 20px;
}

.splash-dropdown-menu .splash-dropdown-nav li:hover a {
    background-color: #FF0164;

}

/* Logo centro */
.splash-logo {
    justify-self: center !important;
}

/* Botones derecha */
.splash-header-buttons {
    justify-self: end;
    display: flex;
    gap: 12px;
}

/* ===================================
   PÁGINA DE SEDE - NUEVO DISEÑO POOL PARTY
   =================================== */

/* Reset para página de sede */
.splash-sede-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===== HERO SECTION DE SEDE ===== */
.splash-sede-hero-main {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-sede-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.splash-sede-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider del hero */
.splash-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.splash-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.splash-hero-slide.active {
    opacity: 1;
}

.splash-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas del slider */
.splash-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.splash-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.splash-slider-arrow.prev {
    left: 20px;
}

.splash-slider-arrow.next {
    right: 20px;
}

/* Contenido del hero */
.splash-sede-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

/* Barra inferior del hero */
.splash-hero-bottom-bar {
    height: 50px;
    background-color: var(--splash-blue-dark);
    width: 100%;
    text-align: center;
}

.splash-hero-wave-decoration {
    position: relative;
    height: 60px;
    margin-bottom: -1px;
}

.splash-hero-wave-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
}

.splash-hero-bottom-content {
    display: inline-block;
    background: var(--splash-yellow);
    padding: 12px 50px;
    position: relative;
    top: -25px;
    z-index: 9;
}

.splash-hero-bottom-content p {
    margin: 0;
    color: var(--splash-red);
    font-weight: bold;
    font-style: italic;
}

/* ===== SECCIÓN TU PLAN SPLASH ===== */
.splash-tu-plan {
    /* background: var(--splash-blue); */
    background-image: url('/splash_jungle/static/src/img/background/splash-tu-plan.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
}

/* Patrón de fondo */
/* .splash-tu-plan-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
} */

.splash-tu-plan .container {
    position: relative;
    z-index: 2;
}

/* Grid de Tu Plan Splash - Desktop: Video izquierda, contenido derecha */
.splash-tu-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* Layout vertical para Tu Plan Splash - contenido */
.splash-tu-plan-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: white;
}

.splash-tu-plan-title-img {
    max-width: 100%;
    margin-bottom: 20px;
}

/* Card de video/imagen */
.splash-tu-plan-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--splash-blue-dark);
    max-width: 100%;
    width: 350px;
    transition: transform 0.3s ease;
}

.splash-tu-plan-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.splash-video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--splash-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 5;
    text-transform: uppercase;
}

.splash-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    overflow: hidden;
}

.splash-video-container img,
.splash-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.splash-video-play-btn i {
    color: var(--splash-orange);
    font-size: 28px;
    margin-left: 5px;
}

.splash-video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.splash-video-location {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a4a5e 0%, #0d2d3a 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.splash-tu-plan-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.tu-plan-white {
    display: block;
    color: white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.tu-plan-splash {
    display: block;
    color: var(--splash-yellow);
    font-size: 4rem;
    text-shadow: 3px 3px 0 var(--splash-orange);
    font-style: italic;
}

.splash-tu-plan-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    text-align: justify;
    margin-top: 1rem;
    padding: 0;
}

.splash-tu-plan-description p {
    margin-bottom: 15px;
}

.splash-tu-plan-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.splash-btn-green {
    background: #25D366;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.splash-btn-green:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== SECCIÓN INFORMACIÓN DE SEDE ===== */
.sede-info {
    background-image: url('/splash_jungle/static/src/img/background/Fondo-recomendaciones.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
}


.sede-info h2 {
    font-size: 5rem;
}

.splash-sede-info {
    background: white;
    padding: 60px 0;
}

.splash-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.splash-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.splash-info-icon {
    width: 70px;
    height: 70px;
    background: var(--splash-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.splash-info-icon i {
    font-size: 28px;
    color: white;
}

.splash-info-card h4 {
    color: var(--splash-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.splash-info-card p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Sección de características */
.splash-features-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e9ecef;
}

.splash-features-title {
    text-align: center;
    color: var(--splash-orange);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 30px;
}

.splash-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.splash-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    border-radius: 10px;
    color: white;
    font-weight: 500;
}

.splash-feature-item i {
    color: var(--splash-yellow);
    font-size: 20px;
}

/* ===== RESPONSIVE PARA PÁGINA DE SEDE ===== */
@media (max-width: 992px) {

    /* Grid pasa a una columna en tablet */
    .splash-tu-plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .splash-tu-plan-content {
        align-items: center;
        text-align: center;
    }

    .splash-tu-plan-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .splash-tu-plan-title-img {
        max-width: 400px;
    }

    .splash-tu-plan-description {
        text-align: justify;
        padding: 0 20px;
    }

    .splash-tu-plan-title {
        font-size: 2.5rem;
    }

    .tu-plan-splash {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .splash-sede-hero-main {
        height: 50vh;
        min-height: 400px;
    }

    .splash-hero-title-img {
        max-width: 280px;
    }

    .splash-hero-bottom-content p {
        font-size: 14px;
        padding: 0 15px;
    }

    .splash-tu-plan {
        padding: 50px 0;
    }

    .splash-tu-plan-title {
        font-size: 2rem;
    }

    .tu-plan-splash {
        font-size: 2.5rem;
    }

    .splash-tu-plan-card {
        max-width: 90%;
        width: 100%;
    }

    /* ===== TU PLAN SPLASH - REORGANIZADO EN MÓVIL ===== */
    /* En móvil: Título → Imagen/Card → Descripción (vertical) */
    .splash-tu-plan-grid {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Contenido (título + descripción) se divide */
    .splash-tu-plan-content {
        display: contents;
        /* Permite que sus hijos participen en el flex del padre */
    }

    /* Título imagen - primero */
    .splash-tu-plan-title-img {
        order: 1;
        max-width: 90% !important;
        height: auto;
        margin-bottom: 0 !important;
    }

    /* Card de video/imagen - segundo */
    .splash-tu-plan-card {
        order: 2;
        max-width: 90%;
        width: 100%;
    }

    /* Descripción - tercero */
    .splash-tu-plan-description {
        order: 3;
        padding: 0 15px;
        font-size: 14px;
        text-align: left;
        margin-top: 15px !important;
    }

    .splash-video-container {
        padding-bottom: 75%;
    }

    .splash-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .splash-slider-arrow.prev {
        left: 10px;
    }

    .splash-slider-arrow.next {
        right: 10px;
    }

    .splash-info-card {
        padding: 20px;
    }

    .splash-info-icon {
        width: 60px;
        height: 60px;
    }

    .splash-info-icon i {
        font-size: 24px;
    }
}

/* ===================================
   POPUP MEJORADO PARA COMPRAR Y PARQUES
   =================================== */

.splash-popup-comprar {
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
}

.splash-popup-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 25px;
}

.splash-popup-sedes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.splash-popup-sedes-list li {
    margin-bottom: 12px;
}

.splash-popup-sedes-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.splash-popup-sedes-list li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
}

.splash-popup-sedes-list li a i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.splash-popup-sedes-list li.no-sedes {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 20px;
}

/* ===================================
   PÁGINA DE PRODUCTOS MEJORADA
   =================================== */

.splash-productos-page {
    padding-top: 0 !important;
}

.splash-productos-hero {
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.splash-productos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.splash-productos-hero .container {
    position: relative;
    z-index: 2;
}

.splash-productos-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.splash-productos-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.splash-productos-hero .breadcrumb-nav {
    margin-top: 20px;
}

.splash-productos-hero .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.splash-productos-hero .breadcrumb-nav a:hover {
    color: white;
}

.splash-productos-hero .breadcrumb-nav span {
    color: var(--splash-yellow);
    margin: 0 10px;
}

/* Grid de productos */
.splash-productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Card de producto mejorado */
.splash-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.splash-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.splash-product-card .splash-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: #f5f5f5;
}

.splash-product-card .splash-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .splash-product-card:hover .splash-product-image img {
    transform: scale(1.05);
} */

.splash-product-card .splash-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--splash-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.splash-product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.splash-product-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--splash-dark);
    margin-bottom: 10px;
}

.splash-product-body .splash-product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.splash-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--splash-orange);
    margin-bottom: 20px;
}

.splash-price .currency {
    font-size: 16px;
    font-weight: 600;
}

.splash-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

/* Botón agregar al carrito */
.splash-add-to-cart-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.splash-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--splash-orange) 0%, var(--splash-orange-dark) 100%);
    transform: translateY(-2px);
}

.splash-add-to-cart-btn i {
    font-size: 16px;
}

/* Estado vacío de productos */
.splash-no-products {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 20px;
}

.splash-no-products i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.splash-no-products h3 {
    color: var(--splash-dark);
    margin-bottom: 15px;
}

.splash-no-products p {
    color: #666;
    margin-bottom: 25px;
}

/* Responsive productos */
@media (max-width: 768px) {
    .splash-productos-hero {
        padding: 80px 0 40px;
    }

    .splash-productos-hero h1 {
        font-size: 1.8rem;
    }

    .splash-productos-grid {
        grid-template-columns: 1fr;
    }

    .splash-product-body {
        padding: 20px;
    }
}

/* ===================================
   PRODUCTOS - ESTILO IGUAL A FUN_JUNGLE_THEME
   =================================== */

/* Sección de productos */
.splash-products {
    padding: 3rem 0;
    background-image: url('/splash_jungle/static/src/img/background/Fondo-productos.png');
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    background-position: center center;
}

.splash-products h2 {
    color: #fff;
    font-weight: 700;
}

/* Product Card - Estilo exacto de fun_jungle_theme */
.splash-product-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.splash-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.splash-product-card .card-body {
    padding: 16px;
}

/* Contenedor de imagen del producto */


.splash-product-img {
    width: 100%;
    height: 280px;
    /* object-fit: cover; */
    border-top-right-radius: calc(var(--spacing-sm) - 8px);
    border-top-left-radius: calc(var(--spacing-sm) - 8px);
}

/* .splash-product-card:hover .splash-product-img {
    transform: scale(1.05);
} */

/* Título del producto */
.splash-product-card .card-title {
    text-align: center;
    margin-top: 15px;
    color: #002e85;
    font-weight: 800;
    font-size: 20px !important;
}

/* Contenedor precio y botón */
.splash-content-price-add-to-card {
    display: flex;
    align-items: anchor-center;
    justify-content: space-evenly;
    gap: 1rem;
}

/* Precio del producto */
.splash-product-price {
    margin-bottom: 0;
}

.splash-product-price .splash-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--splash-red);
}

/* Botón de agregar al carrito */
.splash-btn-test-modal {
    padding: 15px;
    background: var(--splash-yellow);
    color: var(--splash-red);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(22, 158, 216, 0.3);
    transition: all 0.3s ease;
}

.splash-btn-test-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 158, 216, 0.5);
    background-color: var(--splash-yellow);
    color: var(--splash-red);
}

.splash-btn-test-modal:active {
    transform: translateY(0);
}

/* Descripción ecommerce */
.splash-product-ecommerce-desc {
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   SHOPPING CART SIDEBAR - SPLASH
   =================================== */
.splash-shopping-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.splash-shopping-cart-sidebar.open {
    right: 0;
}

.splash-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 100%);
    color: white;
}

.splash-cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.splash-close-cart-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.splash-close-cart-btn:hover {
    transform: scale(1.2);
}

.splash-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.splash-cart-empty-message {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-style: italic;
}

.splash-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.splash-cart-item-info {
    flex: 1;
}

.splash-cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.splash-cart-item-sede {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.splash-cart-item-sede i {
    color: var(--splash-blue);
    margin-right: 5px;
}

.splash-cart-item-price {
    font-size: 0.9rem;
    color: #999;
}

.splash-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.splash-quantity-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--splash-blue);
    background: white;
    color: var(--splash-blue);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.splash-quantity-btn:hover {
    background: var(--splash-blue);
    color: white;
}

.splash-cart-item-quantity {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.splash-cart-item-total {
    font-weight: 700;
    color: var(--splash-blue);
    min-width: 80px;
    text-align: right;
}

.splash-cart-footer {
    padding: 20px 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.splash-cart-total {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.splash-checkout-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--splash-orange) 0%, var(--splash-orange-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.splash-checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(235, 105, 19, 0.4);
}

.splash-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Botón flotante del carrito */
.splash-cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--splash-blue) 0%, var(--splash-blue-dark) 5%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(22, 158, 216, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.splash-cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(22, 158, 216, 0.5);
}

.splash-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--splash-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   MODAL ANIMACIONES
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Hover del botón cerrar modal */
#splash-close-test-modal:hover {
    color: var(--splash-blue) !important;
}

/* ===================================
   RESPONSIVE SHOPPING CART
   =================================== */
@media (max-width: 768px) {
    .splash-shopping-cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .splash-cart-items {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 10px;
    }

    .splash-cart-footer {
        position: sticky;
        bottom: 0;
        padding: 15px 20px;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    }

    .splash-cart-total {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .splash-checkout-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .splash-cart-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    #splash-test-modal>div {
        padding: 30px 20px !important;
        max-width: 95% !important;
    }
}


.info-item {
    margin-bottom: 1.5rem;
}

.info-item:has(.info-icon) {
    display: flex;
}

.info-item:not(:has(.info-icon)) {
    margin-left: 50px;
}

.info-item:has(.info-icon)+.info-item:not(:has(.info-icon)) {
    margin: 3.5rem 0 3rem 50px;
}

.info-item p,
.info-item h5 {
    margin: 0;
}

.info-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--splash-yellow);
    transform: translateY(-10px);

    i {
        font-size: 3rem;
        margin: 0;
    }
}

/* ===== POPUP PROMOCIONAL ===== */
.splash-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.splash-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.splash-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.splash-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--splash-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 1;
}

.splash-popup-close:hover {
    transform: scale(1.1);
    background-color: var(--splash-red);
    color: var(--splash-white);
}

.splash-popup-close i {
    font-size: 1.2rem;
    color: var(--splash-dark);
}

.splash-popup-close:hover i {
    color: var(--splash-white);
}

.splash-popup-link {
    display: block;
    cursor: pointer;
}

.splash-popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.splash-popup-link:hover .splash-popup-image {
    transform: scale(1.02);
}

/* Responsive popup - Laptops */
@media (max-width: 1440px) {
    .splash-popup-container {
        max-width: 80%;
    }

    .splash-popup-close {
        top: 10px;
        right: 10px;
    }

    .splash-popup-image {
        max-height: 75vh;
    }
}

@media (max-width: 1200px) {
    .splash-popup-container {
        max-width: 85%;
    }

    .splash-popup-image {
        max-height: 70vh;
    }
}

/* Responsive popup - Tablets */
@media (max-width: 768px) {
    .splash-popup-container {
        max-width: 95%;
    }

    .splash-popup-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
    }

    .splash-popup-close i {
        font-size: 1rem;
    }

    .splash-popup-image {
        border-radius: 10px;
        max-height: 65vh;
    }
}