html, body {
  overflow-x: hidden;
}

.oswald-regular {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

html, body {
    font-family: "Oswald", sans-serif;
}

/* =================================================================
   ENCABEZADO Y MENÚ (COMPLETO Y CORREGIDO)
================================================================= */
.encabezado {
    padding: 10px 0px;
    background-color: #fff; /* Fondo blanco */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra sutil */
}

/* * ESTA ES LA CORRECCIÓN CLAVE PARA EL CONTENEDOR
 * Asegúrate de usar <div class="container-fluid"> en tu HTML.
*/
.encabezado .container-fluid {
    padding-left: 30px;  /* Añade espacio a la izquierda */
    padding-right: 30px; /* Añade espacio a la derecha */
}

/* Logo */
.navbar-brand.tlogo {
    margin-left: 0 !important; /* CORREGIDO: Sin margen negativo */
    padding: 0;
    flex-shrink: 0; /* Evita que se encoja */
}

.tlogo img {
    width: 100px; /* Tamaño base del logo */
    transition: transform 0.3s ease;
}

/* Botón Hamburguesa (Estilos básicos) */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Contenedor del menú colapsable */
.navbar-collapse {
    /* Empuja los botones a la derecha en la vista de escritorio */
    justify-content: flex-end; 
}

/* --- Lista del Menú (UL) --- */
.menup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Ítem del Menú (LI) */
.menup-list .nav-item {
    margin-left: 8px; /* Espacio entre botones */
}

/* Enlaces del Menú (A) - Estilos de Escritorio Grande */
.menup-list .nav-link {
    background-color: #fdeeac; /* Amarillo */
    padding: 6px 40px !important; /* Padding amplio para escritorio */
    border-radius: 50px; /* Muy redondeado (píldora) */
    text-decoration: none;
    color: #fa307f; /* Texto rosa */
    font-weight: bold;
    display: block;
    font-size: 1.5em; /* Tamaño de fuente grande */
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease-out, box-shadow 0.3s ease;
    position: relative;
    top: 0;
    text-align: center;
    white-space: nowrap; /* Evita que el texto se parta en dos líneas */
}

/* Hover para enlaces amarillos (excepto reserva) */
.menup-list .nav-link:not(.reservabtn):hover {
    color: #fa307f;
    background-color: #fceb91; /* Amarillo más oscuro */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    top: -2px; /* Efecto elevación */
}

/* Botón Reserva */
.reservabtn {
    background-color: #fff !important;
    border: 2px solid #fa307f !important;
    color: #fa307f !important;
    padding: 6px 40px !important; /* Mismo padding que los otros */
    border-radius: 50px !important;
}

/* Hover para Botón Reserva */
.reservabtn:hover {
    background-color: #fa307f !important;
    color: #fff !important;
    box-shadow: 0 6px 12px rgba(250, 48, 127, 0.3) !important; /* Sombra rosa */
    top: -2px;
}

/* =================================================================
   VISTA MÓVIL (Tablets y Móviles) - Se activa la Hamburguesa
================================================================= */
@media (max-width: 991.98px) { 
    
    /* Ajusta el padding del container-fluid en móvil */
    .encabezado .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Asegura que el logo sea visible y esté en su lugar */
    .navbar-brand.tlogo {
        margin-left: 0 !important; /* Resetea el margen en móvil */
        margin-right: auto; /* Ayuda a posicionarlo a la izquierda */
    }

    /* Ajuste para el contenedor principal en móvil */
    .navbar > .container-fluid {
        width: 100%; /* Ocupa todo el ancho */
        display: flex;
        justify-content: space-between; /* Pone el logo a la izq y el botón a la der */
        align-items: center;
    }

    /* Estilos del menú desplegable (al hacer clic) */
    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .menup-list {
        flex-direction: column; /* Apila ítems */
        align-items: stretch; /* Ocupan ancho */
    }
    .menup-list .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
    /* Reduce el tamaño de fuente en el menú desplegable */
    .menup-list .nav-link {
        font-size: 1.1em;
        padding: 8px 20px !important; /* Padding más normal para móvil */
    }
    .reservabtn {
        padding: 8px 20px !important; /* Padding más normal para móvil */
    }
}

/* Ajustes para móviles muy pequeños */
@media (max-width: 767.98px) {
    .tlogo img {
        width: 80px; /* Logo más pequeño */
    }
}


/* =================================================================
  BANNER PRINCIPAL
================================================================= */
.uno.bgchispas { /* Más especificidad */
    background-image: url(../img/chispas.png);
    padding: 50px 0px;
    border-top: 4px solid #e6457f;
    overflow: hidden; /* Evita desbordamiento en móvil */
}

.infobanner {
    text-align:center;
}

.infobanner h2 {
    text-align: center;
    margin-bottom: 1.5rem; /* Añade espacio debajo */
}

.infobanner h2 span {
    background-color: #f477b1;
    padding: 10px 30px;
    border-radius: 40px;
    color: #fff;
    font-size: 1em; /* Ajusta si es necesario */
    display: inline-block; /* Para que el padding funcione bien */
}

.infobanner h1 {
    color: #fa307f;
    font-size: 5em;
    font-family: "Archivo Black", sans-serif; /* Aplica la fuente */
    margin-bottom: 1.5rem; /* Añade espacio debajo */
}

.infobanner p {
    color: #535353;
    font-size: 2em;
    margin-bottom: 2.5rem; /* Más espacio antes de los botones */
}

.infobanner a {
    color: #535353; /* Color inicial del texto */
    font-size: 2em;
    background-color: #fdeeac;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin: 0 10px; /* Espacio entre botones */
    display: inline-block; /* Permite margen */
    transition: background-color 0.3s ease, color 0.3s ease; /* Transición */
}

/* Hover para botones del banner */
.infobanner a:hover {
    color: #fa307f; /* Texto rosa al pasar el mouse */
    background-color: #fceb91; /* Amarillo un poco más oscuro */
}

/* --- IMAGEN Y BOTONES ROSAS --- */
.imgpser {
    position: relative;
    display: inline-block;
    max-width: 100%; /* Asegura que no se desborde */
}

.foto-base { /* Cambiado de foto-principal */
    display: block;
    width: 100%;
    height: auto; /* Mantiene proporción */
}

.boton {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease; /* Transición para hover */
    cursor: pointer;
}
.boton:hover {
    transform: scale(1.1); /* Efecto de zoom */
}

.boton-delicioso {
    top: 25px;
    right: 0px;
    width: 180px; /* Tamaño base */
}

.boton-divertido {
    bottom: 10px;
    left: 0px;
    width: 180px; /* Tamaño base */
}

/* =================================================================
  DISEÑO RESPONSIVO
================================================================= */

/* --- TABLETS (<= 991px) --- */
@media (max-width: 991px) {
    .menup {
        padding-top: 20px;
    }
    .menup ul li a {
        padding: 8px 15px;
        font-size: 1.3em;
    }
    .tlogo img {
        width: 80px;
    }

    .infobanner h1 {
        font-size: 4.5em;
    }
    .infobanner p {
        font-size: 1.6em;
    }
    .infobanner a {
        font-size: 1.6em;
        padding: 8px 18px;
    }
    .boton-delicioso, .boton-divertido {
        width: 150px; /* Botones rosas más pequeños */
    }
    .boton-delicioso { top: 15px; }
    .boton-divertido { bottom: 5px; }
}

/* --- MÓVILES (<= 767px) --- */
@media (max-width: 767px) {
    .encabezado .row > div {
         text-align: center;
         width: 100%; /* Asegura que ocupen todo el ancho */
    }
    .tlogo img {
         margin: 0 auto 15px auto;
    }
    .menup {
        padding-top: 0;
        text-align: center;
    }
    .menup ul li {
        display: block;
        margin-bottom: 10px;
    }
     .menup ul li a {
        display: inline-block;
        width: auto;
        padding: 10px 25px;
     }

     .uno .row {
         flex-direction: column; /* Apila las columnas */
     }
     .uno .row > div { /* Afecta a col-sm-7 y col-sm-5 */
         text-align: center;
         width: 100%; /* Asegura que ocupen todo el ancho */
         flex: none; /* Anula flex sizing */
         max-width: 100%; /* Anula max-width de bootstrap */
     }
     .infobanner {
         margin-bottom: 30px;
     }
     .infobanner h2 span {
        padding: 6px 15px;
        font-size: 1em;
     }
    .infobanner h1 {
        font-size: 3em;
        margin-bottom: 1.5rem;
    }
    .infobanner p {
        font-size: 1.2em;
         margin-bottom: 1.5rem;
    }
    .infobanner a {
        font-size: 1.2em;
        padding: 10px 20px;
        display: block;
        margin: 0 auto 10px auto;
        max-width: 250px;
    }
     .imgpser {
         margin-top: 20px;
     }
     .boton-delicioso, .boton-divertido {
         width: 120px;
         /* Ajusta posiciones si es necesario */
         top: 10px;
         bottom: 5px;
     }
     .boton-delicioso { right: 5px; }
     .boton-divertido { left: 5px; }
}



/* Imagen curvas compartida */
.curvas {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  z-index: 2;
}

.curvas-top {
  top: 0;
}


.seccion-servicios {
  position: relative;   /* importante para que .curvasab se posicione dentro */
  background: #fff0fa;  /* rosa */
  padding: 60px 20px 120px; /* espacio extra para CTA y onda */
  overflow: hidden;
}


/* Base */
.card-barra {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid transparent;
  cursor: pointer;
  transform-style: preserve-3d;
}



/* Animación hover */
.card-barra:hover {
  transform: translateY(-10px) scale(1.05) rotateX(4deg) rotateY(2deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Imagen animada al hover */
.card-barra img {
  transition: transform 0.4s ease;
}

.card-barra:hover img {
  transform: scale(1.15) rotate(-5deg);
}

/* Botón animado */
.card-barra button {
  transition: all 0.3s ease;
}

.card-barra:hover button {
  transform: scale(1.1);
  background-color: #ff4081;
  box-shadow: 0 5px 15px rgba(255, 64, 129, 0.5);
}


/* Colores de bordes */
.snacks {border: 6px solid #f39b11 ;}
.elotes {border: 6px solid #ffeb3b; }
.dorilocos {border: 6px solid#f44336; }
.paletas {border: 6px solid#e91e63; }
.frosty {border: 6px solid #43e7f1; }
.fit {border: 6px solid#4caf50; }
.maruchan {border: 6px solid #fdeeac;}
.aguas {border: 6px solid #58d654;}
.flautas {border: 6px solid #9c4e0de5;}
.nachos { border: 6px solid #ffee00; }       /* amarillo nacho */
.hotcakes { border: 6px solid #ffb74d; }    /* naranja suave */
.churros { border: 6px solid #8d6e63; }     /* café canela */
.chicharrones { border: 6px solid #ff7043;} 

/* Colores de títulos */
.snacks h3 { color: #ff9800; }
.elotes h3 { color: #fdd835; }
.dorilocos h3 { color: #f44336; }
.paletas h3 { color: #e91e63; }
.frosty h3 { color: #03a9f4; }
.fit h3 { color: #4caf50; }
.maruchan h3 { color: #4a8b40; }
.flautas h3 { color: #e57f20; }
.aguas h3 { color:#38b6ff; }
.nachos h3 { color: #ff9800; }
.hotcakes h3 { color: #ffb74d; }
.churros h3 { color: #6d4c41; }
.chicharrones h3 { color: #ff5722; }

.card-barra p {
    color: #535353; /* Color gris para el texto de descripción */
}

.subtitulobarra {
    font-size: 20px;
    font-weight: bold;
    color: #fa307f !important; /* Color rosa para "toppings a elegir", etc. */
     font-family: "Oswald", sans-serif; 
    margin-top: 10px;
}

/* Botón rosa */
.btn-pink {
  background-color: #ff6fa5;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-pink:hover {
  background-color: #ff4081;
}

/* Encabezados */
.etiqueta-servicios {
  display: inline-block;
  background-color: #ff6fa5;
  color: white;
  font-weight: bold;
  font-size: 2em;
  padding: 8px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.titulo-principal {
  font-size: 5em;
  color: #fa307f;
  font-weight: 900;
}

.subtitulo-servicios {
  font-size: 2em;
  color: #555;
}

/* Bloque CTA */
.cta-servicios {
  background: #fff;              /* fondo blanco */
  border-radius: 15px;           /* bordes redondeados */
  padding: 40px 20px;            /* espaciado interno */
  text-align: center;            /* centrar contenido */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* sombra suave */
  max-width: 800px;              /* ancho máximo */
  margin: 50px auto;             /* centrado y espacio arriba/abajo */
}

/* Título */
.cta-servicios h3 {
  font-size: 3em;
  font-weight: 900;
  color: #fa307f;  /* tu rosa personalizado */
  margin-bottom: 15px;
}

/* Texto */
.cta-servicios p {
  font-size: 1.5em;
  color: #555;
  margin-bottom: 25px;
}


.personalizada {
   display: inline-block;
  margin-top: 20px;
  padding: 12px 100px;
  border-radius: 30px;
  background: #fdeeac; /* amarillo editable */
  color: #535353;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.personalizada:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(116, 15, 163, 0.15);
  color: #fa307f;
}

.curvasab {
  position: absolute;
  bottom: -1px;   /* 👈 la pega al fondo de la sección */
  left: 0;
  width: 100%;    /* ocupa todo el ancho */
  height: auto;   /* mantiene proporción */
  z-index: 1;     /* por detrás del contenido */
}





/* =========================================
   3. Mesa de dulces (ACTUALIZADO)
   ========================================= */
.seccion-mesa-dulces {
    background-color: #fff0fa;
    position: relative;
    overflow: hidden;
    padding: 250px 0 450px 0; /* Ajusté un poco el padding inferior */
}

/* Las curvas (Ondas) */
.seccion-mesa-dulces .onda {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.seccion-mesa-dulces .onda-top { top: 0; }
.seccion-mesa-dulces .onda-bottom { bottom: 0; }

.seccion-mesa-dulces .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   2. TIPOGRAFÍA DE ENCABEZADOS
   ========================================= */
.etiqueta-dulce {
    display: inline-block;
    background: #ff6fa5;
    color: #fff;
    font-size: 1.5rem;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 111, 165, 0.3);
}

.titulo-seccion-dulce {
    font-size: 3.5rem;
    color: #fa307f;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitulo-seccion-dulce {
    font-size: 1.5rem;
    color: #555;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

@media (min-width: 992px) {
    .titulo-seccion-dulce { font-size: 5rem; }
    .etiqueta-dulce { font-size: 2rem; }
}

/* =========================================
   3. TARJETAS DE PRODUCTOS (Diseño BearySnack)
   ========================================= */
.tarjeta-dulce {
    border-radius: 20px;
    border-width: 4px;
    border-style: solid;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between;  <- Opcional: a veces es mejor quitarlo si el contenido varía mucho */
    height: 100%; /* Asegura que todas midan lo mismo en la fila */
}

.tarjeta-dulce:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.img-producto {
    max-height: 150px;
    object-fit: contain;
}

.nombre-producto {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* ESTILOS DE LISTA (NUEVO) */
.lista-detalles {
    list-style: none; /* Quitamos los puntos negros feos por defecto */
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left; /* Alineamos el texto a la izquierda para leer mejor */
}

.lista-detalles li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 5px;
    line-height: 1.4;
}

/* =========================================
   COLORES Y BORDES (ACTUALIZADO)
   ========================================= */

/* --- Color ROSA (Básica) --- */
.borde-rosa { border-color: #ff8fab; }
.texto-rosa { color: #ff8fab; }

/* --- Color LILA (Sencilla) - NUEVO --- */
.borde-lila { border-color: #ce93d8; }
.texto-lila { color: #ab47bc; }

/* --- Color AQUA / TURQUESA (Premium) - NUEVO --- */
.borde-aqua { border-color: #4db6ac; }
.texto-aqua { color: #009688; }


/* =========================================
   BOTONES (ACTUALIZADO)
   ========================================= */
.btn-ver-mas {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    color: white;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
    margin-top: auto; /* Empuja el botón al fondo de la tarjeta */
}

/* Botón Rosa */
.btn-rosa { background-color: #ff8fab; border: none; }
.btn-rosa:hover { background-color: #fa307f; color: white; }

/* Botón Lila (NUEVO) */
.btn-lila { background-color: #ce93d8; border: none; }
.btn-lila:hover { background-color: #ab47bc; color: white; }

/* Botón Aqua (NUEVO) */
.btn-aqua { background-color: #4db6ac; border: none; }
.btn-aqua:hover { background-color: #00897b; color: white; }


/* =========================================
   4. SISTEMA DE COLUMNAS "M"
   ========================================= */
@media (min-width: 992px) {
    .col-m-4 { flex: 0 0 auto; width: 33.3333%; }
}










/* Sección */
.reservar {
    background-image: url(../img/serpentinas.png);
    padding: 50px 0px;

}

/* Título */
.titulo-reservar {
  padding: 50px 0px;
  font-size: 5em;
  font-weight: 900;
  color: #fa307f; /* lo editas aquí */
}

/* Cards */
.card-paso {
  background: #fff;
  border: 5px solid transparent;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card-paso:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.arma {
  border-color: #43e7f1; /* borde azul */
}
.WhatsApp {
  border-color: #ff6fa5; /* borde verde */
}

.disfruta {
  border-color: #dabae0; /* borde morado */
}

.numero1 {
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 8px 14px;
  border-radius: 150px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #43e7f1; /* color editable */
}

.numero2 {
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #ff6fa5; /* color editable */
}


.numero3 {
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #dabae0; /* color editable */
}


/* Iconos (pondrás fondo con CSS o imágenes en background) */
.icono {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Título del paso */
.titulo-paso {
  font-size: 2em;
  font-weight: bold;
  color: #fa307f; /* color editable */
}

/* Descripción */
.descripcion {
  font-size: 0.95rem;
  color: #333;
}

/* Botón CTA */
.btn-cta {
  display: inline-block;
  margin-top: 40px ;
  margin-bottom: 50px;
  padding: 12px 100px;
  border-radius: 30px;
  background: #fdeeac; /* amarillo editable */
  color: #535353;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(116, 15, 163, 0.15);
  color: #fa307f;
}






.seccion-personalizacion {
  background: #ffeaf7;

    padding: 50px 0px;
  position: relative;
  overflow: hidden; /* Muy importante para que las curvas no creen una barra de scroll */
  padding: 120px 0; /* Aumentamos el espacio para que el contenido respire */
}

.seccion-personalizacion .container {
  position: relative;
  z-index: 2; /* Lo ponemos por encima de las ondas */
}

.onda {
  position: absolute;
  width: 100%;
  left: 0%;
  z-index: 1; /* Capa intermedia */
}

.onda-top {
  top: 0;
}
.onda-bottom {
  bottom: 0;
}

/* --- Tus otros estilos (estos no cambian) --- */

.titulo-seccion, .subtitulo {
  text-align: center;
}
.titulo-personalizacion {
  font-size: 5em;
  color: #fa307f;
  font-weight: 900;
  margin: 10px 0;
  text-transform: uppercase;
}
.subtitulo-personalizacion {
  font-size: 2em;
  color: #333;
  margin-bottom: 40px;
}
.etiqueta-personalizacion {
  display: inline-block;
  background: #ff6fa5;
  color: #fff;
  font-size: 2em;
  padding: 5px 25px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.item-extra {
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
}
.item-extra:hover {
  transform: translateY(-8px) scale(1.05);
}
.item-extra img {
  border-radius: 20px;
  display: block;
  width: 100%;
}
.item-extra .nombre {
  position: absolute;
  bottom: 25px;
  left: 50%;
  font-size: 1.5em;
  transform: translateX(-50%);
  background: #fdeeac;
  padding: 10px 35px;
  border-radius: 30px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mascota img {
    max-width: 500px; /* Cambia este valor al tamaño que quieras */
    width: 100%;      /* Asegura que sea responsiva */
    height: auto;
 margin-bottom: -200px;     /* Mantiene la proporción para que no se deforme */
}



/* =============================================== */
/* ESTILOS COMBINACIONES POPULARES                 */
/* =============================================== */

.popular-combinations {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.decorative-line {
    width: 100%;
    display: block;
}

/* --- Títulos y Etiquetas --- */
.tag {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}
.tag-pink {
    background-color: #f477b1;
    font-size: 2em;
    color: #fff;
}
.tag-light-pink {
    background-color: #ffcce7;
    color: #555;
    border: 1px solid #ffadd8;
    font-size: 1.5em;
}

.section-title {
    color: #fa307f;
    font-size: 5em; /* Tamaño del título principal */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* --- Estilos del Carrusel y Tarjetas --- */
.swiper {
    width: 100%;
    padding-top: 20px;
    overflow: visible;
    padding-bottom: 60px; /* Espacio para los puntitos */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch; 
}

.combo-card {
    /* 👇 Para cambiar el tamaño, ajusta el max-width */
    width: 100%;
    max-width: 350px; 

    /* 👇 Para cambiar el color del marco, usa la variable --card-border-color */
    border: 5px solid var(--card-border-color, #ccc); 
margin-top: 100px;
margin-bottom: 100px;
    background-color: white;
    border-radius: 30px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    height: 100%; 
}

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

.card-icon {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    /* 👇 Para cambiar el color del título, usa la variable --card-title-color */
    color: var(--card-title-color, #333);
}

.card-highlight {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1rem;
    min-height: 48px;
    line-height: 1.4;
    /* 👇 Para cambiar el color del texto resaltado, usa la variable --card-highlight-color */
    color: var(--card-highlight-color, #555);
}

.card-items {
    font-size: 0.85rem;
    color: #535353;
    margin-bottom: 20px;
    flex-grow: 1; /* Empuja el botón hacia abajo */
    line-height: 1.5;
}

.btn-info {
    display: inline-block;
    background-color: #fdf2a8;
    color: #535353;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
  background-color: #fa307f !important;
}
.btn-info:hover {
  color: #fa307f;             
}


/* === PERSONALIZACIÓN DE COLORES DE LAS TARJETAS === */
/* Aquí es donde defines los colores para cada tipo de tarjeta */

.combo-card.beary {
    --card-border-color: #43e7f1;
    --card-title-color: #f47820;
    --card-highlight-color: #fa307f;
}
.combo-card.tropical {
    --card-border-color: #f39b11;
    --card-title-color: #43e7f1;
    --card-highlight-color: #fa307f;
}
.combo-card.mega {
    --card-border-color: #fccc2d;
    --card-title-color: #8c52ff;
    --card-highlight-color: #fa307f;
}
.combo-card.sweet {
    --card-border-color: #f477b1;
    --card-title-color: #43e7;
    --card-highlight-color: #fa307f;
}
.combo-card.mexa {
    --card-border-color: #79b02e;
    --card-title-color: #c51607;
    --card-highlight-color: #fa307f;
}
.combo-card.XV {
    --card-border-color: #efbe51;
    --card-title-color: #000;
    --card-highlight-color: #fa307f;
}


/* =============================================== */
/* ESTILOS DE BOOTSTRAP          */
/* =============================================== */

/* --- Estilos de la Paginación (Puntos) --- */
.carousel-indicators {
    position: static;
    margin-top: 2rem;
}
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dcdcdc; /* Color de puntos inactivos */
    border: 0;
    margin: 0 5px;
}
.carousel-indicators .active {
    background-color: #ff3377; /* Color rosa para el punto activo */
}

/* --- Estilos de la Navegación (Flechas) --- */
.carousel-control-prev, 
.carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon, 
.carousel-control-next-icon {
    background-color: rgba(244, 119, 177, 0.8); /* Rosa semitransparente */
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 50% 50%;
}



/* =================================================================
  SECCIÓN EVENTOS (AHORA CON SWIPER.JS)
================================================================= */

.seccion-eventos {
    overflow: hidden; /* Evita desbordamiento */
    background-color: #ffffff;
}

/* Títulos y botones (Estos no cambian) */
.btn-nuestros-eventos {
    background-color: #f477b1;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 20px;
    cursor: pointer;
}
.titulo-principal {
    color: #ff3377;
    font-size: 5em;
    font-weight: 800;
    text-transform: uppercase;
}
.subtitulo {
    color: #555;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* --- ESTILOS DEL NUEVO SWIPER --- */

/* Contenedor principal del Swiper */
.swiper-eventos {
    width: 100%;
    padding: 30px 0 50px 0;
    overflow: hidden; 
}

/* Estilo de cada slide (imagen) */
.swiper-eventos .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-evento-contenedor {
    /* Puedes ajustar un tamaño máximo si tus imágenes son de diferente proporción */
    max-width: 100%; /* Asegura que no se desborde */
    height: 400px; /* <-- AUMENTA ESTE VALOR PARA HACER LA IMAGEN MÁS GRANDE */
    display: flex; /* Para centrar la imagen dentro de este contenedor */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Corta lo que se salga de los bordes ondulados */
    border-radius: 20px; /* Ajusta si tus bordes ondulados tienen una forma específica */
}

/* Estilo de los PUNTOS de paginación */
.swiper-eventos .swiper-pagination-bullet {
    background-color: #dcdcdc; /* Color inactivo */
    opacity: 1;
}
.swiper-eventos .swiper-pagination-bullet-active {
    background-color: #ff3377;
}

/* Estilo de las FLECHAS */
.swiper-eventos .swiper-button-prev,
.swiper-eventos .swiper-button-next {
    background-color: rgba(244, 119, 177, 0.8);
    border-radius: 50%;
    width: 40px;  /* Tamaño fijo */
    height: 40px; /* Tamaño fijo */
    /* Icono de flecha (blanco) */
    color: #fff !important; 
}
/* Ajuste de tamaño del icono de flecha */
.swiper-eventos .swiper-button-prev::after,
.swiper-eventos .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

/* --- AJUSTES PARA MÓVIL --- */
@media (max-width: 767px) {
    .titulo-principal {
        font-size: 3rem; 
    }
    .subtitulo {
        font-size: 1rem;
    }
}



.seccion-faq {
    background-color: #fff; 
    position: relative;
}

/* Estilo para tus imágenes de curvas */
.curva-decorativa {
    width: 100%;
    display: block; /* Elimina espacio extra debajo de la imagen */
}

/* Títulos (reutilizamos los de la sección anterior para consistencia) */
.titulo-principal {
    color: #ff3377;
    font-size: 5em;
    font-weight: 800;
}
.subtitulo {
    color: #555;
    font-size: 2em;
    max-width: 600px;
    margin: 0 auto;
}

/* === ESTILOS PERSONALIZADOS PARA EL ACORDEÓN === */

/* Contenedor de cada pregunta y respuesta */
.accordion-item {
    background-color: #ffffff;
    border: 3px solid #ffe4f3 !important; /* Borde rosa claro */
    border-radius: 20px !important;
    margin-bottom: 1rem;
    overflow: hidden; /* Asegura que los bordes redondeados se apliquen bien */
}

/* Botón que contiene la pregunta */
.accordion-button {
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    background-color: transparent !important;
    box-shadow: none !important; /* Elimina la sombra al hacer clic */
    padding-left: 3.5rem; /* Hacemos espacio para la mancha de color */
    position: relative;
}

/* La "mancha" de color detrás del texto */
.accordion-button::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    filter: blur(10px); /* El efecto difuminado */
    border-radius: 50%;
    opacity: 0.7;
}

/* Asignamos colores alternados a las manchas */
.accordion-item:nth-of-type(odd) .accordion-button::before {
    background-color: #80f2f2; /* Turquesa */
}
.accordion-item:nth-of-type(even) .accordion-button::before {
    background-color: #ffb2d8; /* Rosa */
}

/* Cambiamos el icono de flecha por el de la imagen (icono de descarga) */
.accordion-button::after {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3377'%3e%3cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: center;
    border: 2px solid #fa307f;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;;
}
.accordion-button:not(.collapsed)::after {
    transform: none;
    color: #fa307f;

}

.accordion-button:hover {
  color: #fa307f;
}

/* Contenedor de la respuesta */
.accordion-body {
    color: #535353;
    padding-left: 3.5rem;
}


/* Botón inferior de contacto */
.btn-contacto {
    display: inline-block;
    background-color: #fef4b9; /* Amarillo pálido */
    color: #535353;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid transparent
}
.btn-contacto:hover {
    color: #fa307f;
    background-color: #fceb91;
}

.accordion-button:not(.collapsed) {
    color: #fa307f;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Estilo de la flecha cuando está abierta (morada y hacia arriba) */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238A2BE2'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e") !important; /* Flecha morada hacia arriba (con !important) */
    transform: rotate(-180deg); /* Gira la flecha */
    border-color: #dabae0;
}






.seccion-cotizacion {
    background-color: #fff; 
    position: relative;
    overflow: hidden; /* Evita que las nubes generen scroll */
}

.nube {
    position: absolute;
    opacity: 0.8;
    z-index: 1; /* Detrás del texto si se superponen */
}
.nube-1 {
    /* Nube superior derecha, relativa al info-container */
    top: 15%;     /* Cerca de la parte superior del contenedor */
    right: 15%;    /* Cerca del borde derecho del contenedor */
    width: 100px; /* Tamaño ajustado */
    left: auto;
}
.nube-2 {
    /* Nube inferior derecha, relativa al info-container */
    bottom: 60%;  /* Cerca de la parte inferior del contenedor */
    right: 40%;   /* Un poco más adentro desde el borde */
    width: 80px;  /* Tamaño ajustado */
    top: auto;
    left: auto;
}

/* Contenedor principal del formulario */
.form-container {
    background-color: #fff;
    border: 4px solid #ffe4f3;
    border-radius: 30px;
    padding: 2.5rem;
    z-index: 2;
    position: relative;
}

/* Título y subtitulo del formulario */
.titulo-form {
    color: #ff3377;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.instrucciones-form {
    background-color: #ffeef4;
    color: #c95e7b;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Estilos para los campos del formulario */
.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.25rem;
}
.form-control, .form-select {
    border: 2px solid #ffe4f3;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: #ff3377;
    box-shadow: 0 0 0 0.25rem rgba(255, 51, 119, 0.25);
}

/* Botón de Enviar */
.btn-enviar {
    background-color: #ffe4f3;
    color: #fa307f;
    border: none;
    border-radius: 15px;
    padding: 12px 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.btn-enviar:hover {
    background-color: #fec2de;
}

/* === COLUMNA DERECHA === */

.info-container {
    z-index: 2;
    position: relative;
    padding-left: 4rem; /* Aumenta este valor para más espacio (antes era 1.5rem) */
    text-align: center; /* Mantenemos centrado para los elementos internos */
}

.info-texto {
    font-size: 1.6rem; /* Tamaño ajustado */
    color: #535353;
    line-height: 1.7; /* Interlineado ajustado */
    margin-bottom: 2.8em; /* Más espacio antes de los botones */
    font-weight: 500; /* Texto más grueso */
    text-align: center; /* Aseguramos el centrado */
}

/* Cajas de información de contacto */
.info-box {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 50px;
    border-width: 5px;
    border-style: solid;
    background-color: #fff;
}
.info-box img {
    width: 30px;
    margin-right: 1rem;
}
.info-box span {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

/* Colores de borde para cada caja */
.info-whatsapp { border: 6px solid #43e7f1;}
.info-email    { border: 6px solid #fec2de}
.info-location { border: 6px solid #fde467; }


/* Adaptación para pantallas pequeñas */
@media (max-width: 991px) {
    .info-container {
        padding-left: 0;
        text-align: center;
    }
    .info-box {
        justify-content: center;
    }
}



/* =================================================================
  FOOTER SECTION - STYLED TO MATCH IMAGE
================================================================= */

.footer-section {
    background-color:#dabae0;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.wavy-border-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}


.footer-logo {
    max-width: 250px; /* Incrementado para hacerlo más grande, ajusta a tu gusto */
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Pink box for text below logo */
.event-text-box {
    background-color: #FFEFF7; /* Light pink background */
    border-radius: 20px; /* Rounded corners */
    padding: 15px 20px;
    margin: 0 auto; /* Center the box */
    max-width: 300px; /* Limit width */
}

.footer-event-text {
    color: #555; /* Darker text */
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.2em;
    text-align: center;
}

/* Yellow boxes for titles */
.footer-title-box {
    background-color: #FFF3A3; /* Yellow background */
    border-radius: 20px; /* Rounded corners */
    padding: 8px 15px;
    display: inline-block; /* Fit content width */
    margin-bottom: 1rem;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 0; /* Remove bottom margin */
    color: #333; /* Dark text for title */
    font-size: 1.5em; /* Adjust size */
    text-transform: none; /* Remove uppercase */
}


.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Center list items */
}

.footer-list li {
    margin-bottom: 0.5rem;
    color: #333; /* Dark text for list items */
    font-size: 1.5em; /* Adjust size */
    transition: color 0.3s ease;
}

.footer-list li:hover {
    color: #fa307f; /* Pink hover */
    cursor: pointer;
}

/* Social Media Section */
.social-section {
    text-align: center; /* Center icons in mobile */
}

.social-icons {
    display: flex;
    justify-content: center; /* Center icons */
    gap: 20px; /* More space between icons */
    margin-top: 1rem;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.social-link {
    display: inline-block;
}

.social-icon {
    width: 45px; /* Larger icons */
    height: 45px;
    transition: transform 0.3s ease;
    /* Remove filters to keep original colors */
    /* filter: brightness(0) invert(1); */
}

.social-link:hover .social-icon {
    transform: scale(1.1); /* Simple scale hover */
    /* Remove filter change on hover */
    /* filter: brightness(0) invert(79%) sepia(98%) saturate(749%) hue-rotate(359deg) brightness(105%) contrast(105%); */
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 2px solid #aa25aa5b; /* Lighter border */
    align-items: center;
}

.footer-copyright,
.footer-designed-by {
    color: #ffffff; /* Darker text for better readability */
    margin-bottom: 0;
    font-size: 1rem; /* Adjust size */
}

/* Responsive adjustments */
@media (min-width: 992px) { /* Apply these styles only on large screens */
    .footer-logo {
        margin-left: 0; /* Align left */
        margin-right: 0;
    }
    .event-text-box {
        margin: 0; /* Align left */
        max-width: none; /* Allow full width */
    }
     .footer-event-text {
        text-align: left;
    }
    .social-section {
        text-align: right; /* Align right */
    }
    .social-icons {
        justify-content: flex-end; /* Align icons right */
    }
    .footer-title-box {
        margin-left: auto; /* Attempt to center titles within their half */
        margin-right: auto;
    }
    .footer-list {
         text-align: left; /* Align list items left */
         padding-left: 20px; /* Add some padding */
    }
     /* Specific alignment for Company list */
    .col-lg-4 .row .col-sm-6:last-child .footer-list {
         text-align: left;
         padding-left: 20px;
    }
     /* Center the title boxes themselves in the middle column */
     .col-lg-4.text-center .row {
          justify-content: space-around;
     }

}

@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 0 1rem; /* Adjust padding for mobile */
    }
    .footer-section .container {
        padding-top: 30px; /* Less padding */
    }
    .footer-title {
        font-size: 1rem;
    }
    .footer-list li {
        font-size: 0.9rem;
    }
    .footer-logo {
        max-width: 150px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }
    .footer-designed-by {
        margin-top: 0.5rem;
    }
}

.footer-numbers {
    margin-top: 1.5rem; /* Espacio entre los iconos y los números */
    text-align: center; /* Centra los números por defecto (móvil) */
}

.footer-numbers p {
    color: #dabae0;      /* Color blanco */
    font-size: .5em; 
    margin-bottom: 0.3rem;
    line-height: 1.2;    
}

/* Alinea los números a la derecha en escritorio, igual que los iconos */
@media (min-width: 992px) {
    .footer-numbers {
        text-align: right;
    }
}

.footer-list a {
    text-decoration: none;
    color: #44297c;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #ee198e;
}

/* =================================================================
   ESTILO MODAL DE SERVICIOS (cajafancystyle) - VERSIÓN BEARYSNACK
================================================================= */

/* --- Contenedor Principal (El Modal) --- */
.cajafancystyle {
    background: linear-gradient(135deg, #ffe0f0 0%, #fef3f7 100%);
    color: #333;
    border-radius: 25px;
    padding: 3rem 3.5rem;
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.3);
    border: 2px solid #ffabda;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1050;
    text-align: center; /* CAMBIO: Alineación central por defecto */
}


/* --- Título Principal (ej. "Barra de SNACKS") --- */
.cajafancystyle h2 {
    font-family: "Oswald", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fa307f;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 105, 180, 0.4);
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el título y el icono */
    gap: 15px;
}
/* Icono dentro del Título Principal */
.cajafancystyle h2 .icono-titulo {
    height: 40px; /* Ajusta el tamaño de tu PNG */
    width: auto;
}

/* --- Subtítulo/Descripción --- */
.cajafancystyle > p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* --- Subtítulos de sección (ej. "Detalles del Servicio") --- */
.cajafancystyle h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff69b4;
    margin-top: 2.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px dashed #fdeeac;
}

/* --- Listas (Detalles y Menú) --- */
.cajafancystyle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    text-align: left; /* CAMBIO: Listas alineadas a la izquierda */
}

.cajafancystyle ul li {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    padding-left: 35px; /* Espacio para el icono */
    position: relative;
}

/* --- Icono PNG para los <li> --- */
.cajafancystyle ul li::before {
    content: ''; /* Contenido vacío */
    background-image: url('assets/img/icono-lista-rosa.png'); /* RUTA A TU ICONO PNG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 7px; /* Ajusta la alineación vertical */
    width: 20px; /* Tamaño de tu icono */
    height: 20px; /* Tamaño de tu icono */
}

/* Estilo para los <strong> dentro de los <li> */
.cajafancystyle ul li strong {
    font-weight: 800;
    color: #ff69b4;
}

/* --- Adaptación para pantallas pequeñas --- */
@media (max-width: 768px) {
    .cajafancystyle {
        padding: 2.5rem 1.5rem; /* Ajusta padding en móvil */
        max-width: 95%;
    }
    .cajafancystyle h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    .cajafancystyle > p {
        font-size: 1rem;
    }
    .cajafancystyle h3 {
        font-size: 1.4rem;
    }
    .cajafancystyle ul li {
        font-size: 0.9rem;
        padding-left: 30px;
    }
    .cajafancystyle ul li::before {
        top: 4px;
        width: 18px;
        height: 18px;
    }
}

/* =================================================================
   ESTILO DEL FONDO DEL MODAL (BACKDROP)
================================================================= */
.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Negro semitransparente */
    z-index: 1040; /* Justo debajo de tu modal (que tiene z-index 1050) */
    display: none; /* OCULTO POR DEFECTO */
}