@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: rgba(29, 179, 179, 0.04);
}

.web-lunaria {
  position: relative;
}

.box-title-mobil{
  display: none;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
}

.menu-mobil {
  display: none;
}

h1 {
  font-size: 75px;
  color: #0b486c;
  font-weight: 800;
}

h1 span {
  font-size: 75px;
  color: #f7bd02;
  font-weight: 800;
}

h2 {
  font-size: 36px;
  color: #0b486c;
  font-weight: 800;
  text-align: center;
}

h2 span {

  font-size: 36px;
  color: #1db3b3;
  font-weight: 800;
  text-align: center;

}

h3 {
  font-size: 30px;

  font-weight: 800;
  text-align: center;
}

.pagination-num {
  display: none;
}

h4 {
  font-size: 25px;
  color: #0b486c;
  font-weight: 800;
  text-align: center;
}

p,
span,
button {
  font-size: 18px;
  color: #0b486c;
  font-weight: 400;
  text-align: center;
}

.div-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;

}

.header-img {
  width: 189px;
}

.header-img img {
  width: 100%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-principal {
  background-color: #f2f2f2;
  border-radius: 50px;
  border: none;
  padding: 5px 15px;
  font-size: 16px;
}

.btn-principal.active {
  background-color: #f7bd02;
  font-weight: 700;
}

.body-prinicipal {
  background-image: url("../img/figura1.png");
  /* ⬅️ Reemplaza con tu ruta */

  background-position: bottom;
  /* ⬅️ Centra la imagen */
  background-repeat: no-repeat;
  min-height: 992px;
  background-size: auto;
}

.principal {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 0px;
}

.text-principal {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.text-principal p {
  text-align: start;
}

.galeria-principal {
  flex: 1;
  display: flex;

  gap: 20px;
  align-items: end;
}

.fila-galeria {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.container1 {
  width: 333px;
  height: 327px;
}

.container2 {
  width: 227px;
  height: 322px;
}

.container22 {
  width: 227px;
  height: 243px;
}

.container3 {
  width: 219px;
  height: 417px;
}

.container-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.arrow-carrusel {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 3px 0px 0px 0px rgba(29, 179, 179, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow-carrusel svg {
  width: 15px;
}

.carrusel-personajes {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px 0px;
}

.arrow-carrusel:first-child {
  /* Sombra proyectada a la izquierda */

  box-shadow: -4px 0px 0px 0px rgba(29, 179, 179, 0.5);
}

.arrow-carrusel:last-child {
  /* Sombra proyectada a la derecha */
  box-shadow: 3px 0px 5px 0px rgba(29, 179, 179, 0.5);
}

.galeria-carrusel {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;

  /* Calculo del ancho para 4 elementos (4*245px + 3*50px) = 1130px */

  flex-grow: 1;
  flex-shrink: 1;

  width: 80%;
  /* El ancho total es limitado por el max-width */
}

.box-personaje {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;

  /* Asegura que no se reduzca el tamaño del personaje */
  flex-shrink: 0;

  /* Define el ancho de la tarjeta para el cálculo de desplazamiento */

}

/* Nuevo: Aplicar la transición a la imagen absoluta */
.container-personaje .img-absolute {
  transition: transform 0.3s ease-in-out;
}

/* Nuevo: Hover en la imagen absoluta, aplicado a través del padre */
/* Cuando el mouse está sobre la caja, animamos la imagen absoluta */
.box-personaje:hover .img-absolute {
  /* Puedes ajustar el efecto. Aquí la levantamos ligeramente y la escalamos. */
  transform: translateY(-5px) scale(1.02);
}

.container-personaje {
  height: 406px;
  width: 245px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-personaje img {
  width: 100%;
}

.img-absolute {
  cursor: pointer;
}

.container-personaje.uno .img-absolute {
     width: 88%;
    position: absolute;
    left: 13px;
    right: -21px;
    top: -52px;
}

.container-personaje.dos .img-absolute {
    width: 136%;
    position: absolute;
    left: -30px;
    right: 0px;
    top: -30px;
}

.container-personaje.tres .img-absolute {
  width: 105%;
  position: absolute;
  left: -10px;
  right: 0px;
  top: -42px;
}

.container-personaje.cuatro .img-absolute {
      width: 83%;
    position: absolute;
    left: 35px;
    right: 0px;
    top: -25px;

}

.container-personaje.cinco .img-absolute {
     width: 150%;
    position: absolute;
    left: -64px;
    right: 0px;
    top: -82px;

}



.section-paquetes {
  padding: 0px 40px 90px;
}

.body-azul {
  margin: 0 0px 90px;
}

.section-galeria {
  padding: 0px 40px 90px;
}

.container-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.btn-menu {
  display: flex;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  gap: 10px;

}

.orden-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.orden-circle span {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.orden-circle.celeste {
  background-color: #1db3b3;
}

.orden-circle.azul {
  background-color: #0b486c;
}

.orden-circle.amarrillo {
  background-color: #f7bd02;
}

.menu-texto h4 {
  text-align: start;
}

.btn-menu {
  cursor: pointer;
}

.btn-menu.celeste .menu-texto h4 {
  color: #1db3b3;
}

.btn-menu.azul .menu-texto h4 {
  color: #0b486c;
}

.btn-menu.amarrillo .menu-texto h4 {
  color: #f7bd02;
}


.menu-texto p {

  font-size: 12px;
  margin: 0;
  color: #4a4a4a;
  font-weight: 500;
  text-align:start;
}

.btn-menu.celeste.active {
  background-color: #1db3b3;
}

.btn-menu.azul.active {
  background-color: #0b486c;
}

.btn-menu.amarrillo.active {
  background-color: #f7bd02;
}




.btn-menu.active p {
  color: #fff;
}

.btn-menu.active .orden-circle {
  background-color: #fff;
}

.btn-menu.active .orden-circle.celeste span {
  color: #1db3b3;
}

.btn-menu.active .orden-circle.azul span {
  color: #0b486c;
}

.btn-menu.active .orden-circle.amarrillo span {
  color: #f7bd02;
}


.menu-paquetes {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.box-informacion {
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 25px 35px;
  gap: 40px;
  min-height: 484px;
  position: relative;
  border-radius: 25px;
}


.container-paquetes {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}

.container-informacion {
  max-width: 940px;
}

.box-imagen {
  width: 320px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.box-imagen img {
  width: 100%;
}

.box-informacion.celeste h3 {
  color: #1db3b3;
}

.box-informacion.azul h3 {
  color: #0b486c;
}

.box-informacion.amarrillo h3 {
  color: #f7bd02;
}

.btn-menu.active h4 {
  color: #fff !important;
}

.box-parrafo-informacion p {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  margin: 0;
  width: 90%;
}

.box-parrafo-informacion p span {
  color: #4d4d4d;
  font-weight: 600;
  font-size: 14px;

}

.box-contenido {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  width: 60%;
}

.box-contenido h3 {
  text-align: start;
}

.box-parrafo-informacion svg {
  width: 15px;
}

.box-parrafo-informacion {
  display: flex;
  align-items: center;
  gap: 10px;
}

.precio-informacion {
  width: max-content;
  height: 52px;
  border-radius: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.precio-informacion span {
  font-weight: 800;
  font-size: 25px;
}

.box-informacion.celeste .precio-informacion {
  background-color: rgba(29, 179, 179, 0.10);
}

.box-informacion.azul .precio-informacion {
  background-color: rgba(11, 72, 108, 0.10);
}

.box-informacion.amarrillo .precio-informacion {
  background-color: rgba(247, 189, 2, 0.10);
}

.box-informacion.celeste .box-parrafo-informacion svg path {
  fill: #1db3b3;
}


.box-informacion.azul .box-parrafo-informacion svg path {
  fill: #0b486c;
}



.box-informacion.amarrillo .box-parrafo-informacion svg path {
  fill: #f7bd02;
}


.box-informacion.celeste .precio-informacion span {
  color: #1db3b3;
}

.box-informacion.azul .precio-informacion span {
  color: #0b486c;
}

.box-informacion.amarrillo .precio-informacion span {
  color: #f7bd02;
}

.circle-brochure {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f2f2f2;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.circle-brochure svg {
  width: 20px;
}

.box-contenido-inicial {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  gap: 10px;
}

.caja-end {
  display: flex;
  justify-content: flex-end;
}

.lista-informacion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrow-paquete {
  position: absolute;
  right: -25px;

  /* 1. Mueve el borde superior del elemento a la mitad del contenedor padre */
  top: 50%;

  /* 2. Mueve el elemento hacia arriba la mitad de su propia altura */
  transform: translateY(-50%);

}

.section-personajes {
  padding: 90px 40px;
}

.section-proceso {
  display: flex;
  padding: 50px 0px;
}

.descripcion-proceso {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.descripcion-proceso h2 {
  text-align: start;
}

.descripcion-proceso p {
  text-align: start;
  font-weight: 500;
  font-size: 16px;
}

.proceso-figura {
  width: 1056px;
}

.proceso-figura img {
  width: 100%;
}

.body-azul {
  background-image: url(../img/figuraazul.png);
  background-position: right;
  background-repeat: no-repeat;
  min-height: 544px;
  background-size: 1071px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceso-icon {
  width: 64px;
}

.proceso-icon svg {
  width: 100%;
}

.card-proceso {

  width: 290px;
  border-radius: 20px;
  display: flex;
  height: 335px;


}

.galeria-proceso {
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: center;
}

.parrafo-proceso p {
  font-size: 16px;
  font-weight: 500;
  text-align: start;
}

.parrafo-proceso span {
  font-size: 16px;
  font-weight: 700;
}

.card-proceso.blanco {
  background-color: #fff;
  box-shadow: 5px 5px 0px 3px rgba(11, 72, 108, 0.3);
}

.card-proceso.blanco p,
.card-proceso.blanco span {
  color: #666666;
}

.card-proceso.celeste {
  background-color: rgb(29, 179, 179);
  box-shadow: 5px 5px 0px 3px rgba(29, 179, 179, 0.3);
}

.card-proceso.celeste p,
.card-proceso.celeste span {
  color: #fff;
}

.card-proceso.amarrillo {
  background-color: #f7bd02;
  box-shadow: 5px 5px 0px 3px rgba(247, 189, 2, 0.3);
}

.card-proceso.amarillo p,
.card-proceso.amarillo span {
  color: #0b486c;
}


.card-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  gap: 10px;
}

.card-number {
  position: relative;
  padding: 0;
  display: flex;
  align-items: end;
  justify-content: end
}

.card-number p {
  font-size: 136px !important;
  font-weight: 800 !important;

  margin: 0 !important;
  padding: 0;

  line-height: 0.7;
  right: -14px;
  width: 43px;
}

.card-proceso.blanco .card-number p {
  color: rgba(11, 72, 108, 0.5) !important;
}

.card-proceso.celeste .card-number p {
  color: rgba(255, 255, 255, 0.5) !important;
}

.card-proceso.amarrillo .card-number p {
  color: rgba(11, 72, 108, 0.5) !important;
}

.container-proceso {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.circle-indicador {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #f2f2f2;
  cursor: pointer;
}

.circle-indicador.active {
  background-color: #1db3b3;
}

.circle-galeria-final {
    display: none;
    gap: 30px;
}

.circle-indicador-final {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
}

.circle-indicador-final.active {
  background-color: #4a4a4a;
}

.circle-procesos {
  display: flex;
  gap: 30px;
}

.collage-galeria {
 column-count: 4;
    column-gap: 15px;
    padding: 15px;
   
}
.img-collage{
  cursor: pointer;
      break-inside: avoid;
    margin-bottom: 15px;
}
.img-collage.uno {
  width: 270px;
     overflow: hidden;
  height: 338px;
}

.img-collage.dos {
  width: 270px;
  height: 201px;
}

.img-collage.uno video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* hace que el video llene el espacio */
    border-radius:15px;
}

.img-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.fila-collage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.body-footer {
  background-image: url(../img/figura3.png);
  background-position: center;
  background-repeat: no-repeat;
  min-height: 507px;
  background-size: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;


}

.body-footer-two {
  background-image: url(../img/figura4.png);
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
  background-size: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: -10rem;

}

.body-footer p,
.body-footer-two p {
  font-weight: 500;
}

.div-redes {
  gap: 10px;
  margin-top:20px;

}

.circle-red svg {
  width: 35px;
  cursor: pointer;
}

.circle-galeria-principal {
  display: none;
}

/* Overlay y modal */
.modal {
  display: none; /* oculto por defecto */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8); /* overlay negro */
  justify-content: center;
  align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
   
}
.photo-galeria{
      min-width: 844px;
    background-color: #fff;
    border-radius: 28px;
    /* padding: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 660px;
    position: relative;
    

}

.imagen-modal-container{
  width: 480px;
  height: 602px;
  
}

.imagen-modal-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  
}


/* Flechas */
.flecha {
      position: absolute;
    top: 50%;
    font-size: 2rem;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
        box-shadow: 3px 0px 0px 0px rgba(11, 72, 108, 1);
}

.flecha svg{
  width: 10px;
}


.flecha svg polyline {
  stroke: #0b486c;
}


.flecha.izquierda { left: 10px; }
.flecha.derecha { right: 10px; }

/* Cerrar */
.cerrar-modal {
position: absolute;
    top: -20px;
    right: -20px;
    background-color: #f2f2f2;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cerrar-modal  svg{
width: 20px;
}
.btn-ver-mas{
  display: none;
}

.contacto-div{
    display:flex;
    align-items:center;
    gap:10px;
}
.contacto-div svg{
    width:25px;
}
.contacto-div p{
margin:0;
font-size:16px;
}

.container-div-buttons{
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
        margin-top:10px;
}



.container-div-buttons .mas-info-btn , .container-div-buttons .catalogo-info-btn{
   padding: 10px;
    min-width: 150px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;

}


.container-div-buttons .mas-info-btn span, .container-div-buttons .catalogo-info-btn span{
   font-weight:600;
   font-size:16px;
}

.box-informacion.celeste .mas-info-btn {
  background-color: rgba(29, 179, 179, 0.10);
}

.box-informacion.azul .mas-info-btn {
  background-color: rgba(11, 72, 108, 0.10);
}

.box-informacion.amarrillo .mas-info-btn {
  background-color: rgba(247, 189, 2, 0.10);
}


.box-informacion.celeste .mas-info-btn span {
 color: rgba(29, 179, 179, 1);
}

.box-informacion.azul .mas-info-btn  span{
  color: rgba(11, 72, 108,1);
}

.box-informacion.amarrillo .mas-info-btn  span{
  color: rgba(247, 189, 2,1);
}

.box-informacion.celeste .catalogo-info-btn span {
  color: #fff;
}

.box-informacion.azul .catalogo-info-btn  span{
  color: #fff;
}

.box-informacion.amarrillo .catalogo-info-btn  span{
  color: #fff;
}


.box-informacion.celeste .catalogo-info-btn {
  background-color: rgba(29, 179, 179, 1);
}

.box-informacion.azul .catalogo-info-btn {
  background-color: rgba(11, 72, 108, 1);
}

.box-informacion.amarrillo .catalogo-info-btn {
  background-color: rgba(247, 189, 2, 1);
}

 
  .galeria-carrusel-final
 { 
        /* Usar el flujo normal de bloque para apilar */
        display: flex; 
        align-items:center;
      justify-content: space-between;
    }
@media (min-width: 1200px) {

  .container-lg,
  .container-xl {
    /* Puedes ajustarlo si quieres un incremento gradual,
       pero para ir al máximo deseado, podemos saltar a un valor alto. */
    max-width: 1400px;
  }
}

/*
  2. Ancho máximo para el breakpoint 'xxl' (>= 1400px)
     Aquí definimos tu ancho máximo deseado: 1614px.
*/

/* Laptop Grande 1400px – 1919px */
/* ==========================================================
   🔵 1) Laptop GRANDE PREMIUM (1800px – 1919px)
   Mejor container, menos márgenes, escalado profesional
   ========================================================== */
@media (max-width: 1919px) and (min-width: 1800px) {

  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1680px !important;
  }

  h1,
  h1 span {
    font-size: 65px;
  }

  .principal {
    gap: 35px;
  }

  .container1 {
    width: 300px;
  }

  .container2 {
    width: 210px;
  }

  .container3 {
    width: 200px;
  }

  .container-personaje {
    width: 240px;
    height: 380px;
  }
}


/* ==========================================================
   🔵 2) Laptop GRANDE (1600px – 1799px)
   ========================================================== */
@media (max-width: 1799px) and (min-width: 1600px) {

  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1500px !important;
  }

  h1,
  h1 span {
    font-size: 58px;
  }

  .principal {
    gap: 30px;
  }

  .container1 {
    width: 270px;
  }

  .container2 {
    width: 190px;
  }

  .container3 {
    width: 170px;
  }

  .container-personaje {
    width: 220px;
    height: 350px;
  }
  .box-informacion {

      min-height:540px;
  }
}


/* ==========================================================
   🔵 3) Laptop ESTÁNDAR (1400px – 1599px)
   ========================================================== */
@media (max-width: 1599px) and (min-width: 1400px) {
.img-collage.uno {
    width: 240px;
    height: 300px;
  }

  .img-collage.dos {
    width: 240px;
    height: 180px;
  }
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1350px !important;
  }

  h1,
  h1 span {
    font-size: 40px;
  }

  .body-prinicipal {
    min-height: 720px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  p,
  span,
  button {
    font-size: 16px;
  }

  .principal {
    gap: 30px;
  }

  .galeria-principal {
    gap: 10px;
  }

  .container1 {
    width: 276px;
    height: 271px;
  }

  .container2 {
    width: 189px;
    height: 267px;
  }

  .container22 {
    width: 189px;
    height: 202px;
  }

  .container3 {
    width: 182px;
    height: 346px;
  }

  .container-personaje {
    width: 203px;
    height: 337px
  }

  .descripcion-proceso {
    width: 25%;
  }

  .container-proceso {
    width: 75%;
  }

  .galeria-proceso {
    gap: 40px;
  }

  .body-azul {
    background-size: 1000px;
  }

  .container-informacion {
    max-width: 850px;

  }

  .box-contenido {

    width: 85%;
  }

  .galeria-carrusel {
    gap: 50px;
  }
  
   .box-informacion {

      min-height:525px;
  }
  
     .container-personaje.tres .img-absolute {
          width: 105%;
        position: absolute;
        left: -10px;
        right: 0px;
        top: -32px;
}

    .container-personaje.uno .img-absolute {
        width: 92%;
        position: absolute;
        left: 8px;
        right: 0;
        top: -58px;
    }
    .container-personaje.dos .img-absolute {
        width: 140%;
        position: absolute;
        left: -30px;
        right: 0px;
        top: -28px;
    }

}


/* ==========================================================
   🔵 4) Laptop ESTÁNDAR CHICA (1200px – 1399px)
   ========================================================== */
@media (max-width: 1399px) and (min-width: 1200px) {
 .img-collage.uno {
    width: 210px;
    height: 260px;
  }

  .img-collage.dos {
    width: 210px;
    height: 160px;
  }
  .container-lg,
  .container-xl {
    max-width: 1180px !important;
  }


  h1,
  h1 span {
    font-size: 40px;
  }

  p,
  span,
  button {
    font-size: 16px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  .body-prinicipal {
    min-height: 720px;
  }

  .principal {
    gap: 20px;
  }

  .galeria-principal {
    gap: 15px;
  }

  .container1 {
    width: 276px;
    height: 271px;
  }

  .container2 {
    width: 189px;
    height: 267px;
  }

  .container22 {
    width: 189px;
    height: 202px;
  }

  .container3 {
    width: 182px;
    height: 346px;
  }

  .section-paquetes {
    padding: 40px 20px;
  }

  .box-informacion {
    gap: 10px;
    padding: 15px;
  }


  .container-personaje {
    width: 203px;
    height: 337px
  }

  .descripcion-proceso {
    width: 20%;
  }

  .container-proceso {
    width: 80%;
  }

  .galeria-proceso {
    gap: 35px;
  }

  .body-azul {
    background-size: 900px;
  }

  .container-informacion {
    max-width: 850px;

  }

  .box-contenido {

    width: 85%;
  }

  .galeria-carrusel {
    gap: 25px;
  }

  .card-proceso {
    width: 270px;
  }

  .section-paquetes {
    padding: 0px;
  }

  .container-paquetes {
    justify-content: start;
  }

  .box-informacion {
    min-height: 645px;
  }

  .box-contenido {
    width: 90%;
  }

  .container-informacion {
    width: 776px;
  }

  .menu-texto p {

    text-align: start;
  }
  
     .box-informacion {

      min-height:480px;
  }
}



/* ==========================================================
   🔵 5) Laptop PEQUEÑA (992px – 1199px)
   ========================================================== */
@media (max-width: 1199px) and (min-width: 992px) {
 .img-collage.uno {
    width: 180px;
    height: 230px;
  }

  .img-collage.dos {
    width: 180px;
    height: 140px;
  }
  .container-lg,
  .container-xl {
    max-width: 1000px !important;
  }

  h1,
  h1 span {
    font-size: 50px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  .principal {
    gap: 20px;
  }

  .galeria-principal {
    gap: 15px;
  }


  .section-paquetes {
    padding: 40px 20px;
  }

  .box-informacion {
    gap: 10px;
    padding: 15px;
  }

  .container-personaje {
    width: 203px;
    height: 337px
  }



  .descripcion-proceso {
    width: 20%;
  }

  .container-proceso {
    width: 80%;
  }

  .galeria-proceso {
    gap: 35px;
  }

  .body-azul {
    background-size: 900px;
  }

  .container-informacion {
    max-width: 850px;

  }

  .box-contenido {

    width: 85%;
  }

  .galeria-carrusel {
    gap: 25px;
  }

  .card-proceso {
    width: 270px;
  }

  .section-paquetes {
    padding: 0px;
  }

  .container-paquetes {
    justify-content: start;
  }

  .box-informacion {
    min-height: 645px;
  }

  .box-contenido {
    width: 90%;
  }

  .container-informacion {
    width: 776px;
  }

  .menu-texto p {

    text-align: start;
  }
}



@media (max-width: 991px) {
    .container-personaje.cuatro .img-absolute{
            width: 83%;
    position: absolute;
    left: 24px;
    right: 0px;
    top: -13px;
    }
    
    .container-personaje.cinco .img-absolute {
    width: 150%;
    position: absolute;
    left: -43px;
    right: 0px;
    top: -53px;
}

    .container-div-buttons .mas-info-btn span, .container-div-buttons .catalogo-info-btn span{
   font-weight:600;
   font-size:14px;
}
.container-div-buttons .mas-info-btn, .container-div-buttons .catalogo-info-btn{
    min-width:125px;
}
    .box-title-mobil {
               display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        border-radius: 20px 20px 0px 0px;
        padding: 10px;
    }



    .box-informacion.celeste    .box-title-mobil{
background-color: #1db3b3;
    }
     .box-informacion.azul    .box-title-mobil{
background-color: #0b486c;
    }
     .box-informacion.amarrillo    .box-title-mobil{
background-color: #f7bd02;
    }
    .box-title-mobil h3{
      color:#fff !important;
      font-size: 14px !important;
      margin: 0 !important;
    }

  .header-buttons {
    display: none;
  }

  .header-img {
    width: 85px;
  }

  .principal {
    flex-direction: column;
    gap: 20px;
  }

  .text-principal {
    align-items: center;
  }

  .pagination-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .pagination-num span {
    color: #cccccc;
    font-size: 14px;
    font-weight: 800;
  }

  .pagination-num .active {
    color: #1db3b3;

  }

  .num-barra{
     color: #cccccc;
    font-size: 16px;
    font-weight: 800;
  }



  h1 {
    font-size: 25px;
    text-align: center;

  }

  h2 {
    font-size: 20px;
    text-align: center;

  }

  h4 {
    font-size: 16px;
  }

  h1 span {
    text-align: center;
    font-size: 25px;
  }

  .container-img {
    width: 238px;
    height: 238px;

  }

  .container-img img {
    border-radius: 15px !important;
    object-position: center;

  }

  .circle-galeria-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .circle-principal {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #cccccc;
  }

  .circle-principal.active {
    background-color: #f7bd02;
  }



  p,
  span,
  button {
    font-size: 14px;

  }

  .text-principal p {
    text-align: center;
  }

  .body-prinicipal {
    min-height: 600px;
  }

  .section-personajes {
    padding: 50px 0px 0px;
  }

  .container-personaje {
    height: 275px;
    width: 165px;
  }

  .galeria-carrusel {
    width: 60%;
  }

  .section-paquetes,
  .section-galeria {
    padding: 50px 0px;
  }

  .menu-paquetes {
    display: none;
  }

  .box-informacion {
    flex-direction: column;
    align-items: center;
    min-height: 490px;
    padding: 0px;
    gap: 20px;
  }

  .container-informacion {
    width: auto;
  }

  .box-imagen {
    width: 137px;
  }

  .arrow-paquete {
    display: none;
  }

  .caja-end {
    display: none;
  }

  .box-contenido {
    
            width: 100%;
        padding: 0px 20px 20px;
  }

  .box-contenido-inicial h3 {
    display: none;
  }

  .box-parrafo-informacion p {
    font-size: 12px;
  }

  .box-parrafo-informacion svg {
    width: 12px;
  }

  .box-parrafo-informacion p span {
    font-size: 12px;
  }

  .precio-informacion span {
    font-size: 14px;
  }

  .box-contenido-inicial {
    align-items: center;
  }

  .precio-informacion {
    height: 35px;
  }

  .body-azul {
    background-image: none;
    background-size: auto;
    margin-bottom: 0px;
  }

  .section-proceso {
    flex-direction: column;
  }

  .descripcion-proceso {
    width: 100%;
    align-items: center;
  }

  h2 span {
    font-size: 20px;
  }

  .descripcion-proceso h2 {
    text-align: center;
    margin: 10px 0px;
  }

  .new-parrafo {
    display: none;
  }

  .carrusel-personajes {
    padding: 40px 0px;
  }



  .container-proceso {
    width: 100%;
  }



  .proceso-icon {
    width: 39px;
  }

  .parrafo-proceso span {
    font-size: 14px;
  }

  .parrafo-proceso p {
    font-size: 14px;
  }

  .card-number p {
    font-size: 102px !important;
  }

  .card-part {
    padding: 15px;
  }

  .momentaneo {
    display: none;
  }


  .img-collage {
  width: 241px !important;
        height: 302px !important;
        object-fit: cover;
        object-position: center;
  }
  
  .galeria-carrusel-final{ 
        /* Usar el flujo normal de bloque para apilar */
        display: flex; 
    }
    
    .collage-galeria {
        column-count: 1;
    }
.arrow-carrusel {
    width: 30px;
    height: 30px;
}

.arrow-carrusel svg{
    width: 10px;
   
}

  .parrafo-llamada {
    font-size: 14px !important;
  }

  .body-footer {
    min-height: 315px;
  }

  .menu-mobil {
    display: block;
    position: fixed;
    z-index: 1;
    bottom: 0;
    width: 100%;
  }

  .nav-menu {
   background-color: #fff;
        border-radius: 15px 15px 0px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 25px;


  }

  .menu-mobil .container-lg {
    padding: 0;
  }

  .svg-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .svg-nav svg {
    width: 17px;
  }

  .svg-nav.active {
    background-color: #f7bd02;
  }

  .svg-nav.active svg path {
    fill: #fff;
  }

  .galeria-principal {
    display: block !important;
  }

  .circle-indicador
  {
    background-color: #cccccc;
  }

    .circle-indicador.active
  {
    background-color: #4a4a4a;
  }

  .btn-principal.dos{
    font-size: 14px !important;
  }

  .body-footer {
  background-image: url(../img/iimagen3movilnew.png);
        min-height: 440px;
        background-size: auto;

}

  .body-footer-two {
  background-image: url(../img/figura4movil.png);
        min-height: 180px;
        background-size: auto;
        bottom: -2rem;

}
.circle-red svg {
    width: 25px;
}

.section-paquetes{
  padding: 0px ;
}

.card-proceso{
  width:218px;
  height: 251px;
}
  .lista-informacion {
        max-height: 120px;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .lista-informacion.expandido {
        max-height: 1000px; /* Se expande */
    }

    .btn-ver-mas {
              display: block;
        margin-top: 12px;
        font-weight: 600;
        color: #0b486c;
        cursor: pointer;
        user-select: none;
        text-decoration: underline;
    }
    
    .contacto-div p {
        display:none;
    }
    
    .div-redes{
        margin:0px;
    }
    
   .container-personaje.tres .img-absolute {
    width: 105%;
    position: absolute;
    left: -8px;
    right: 0px;
    top: -25px;
}

.container-personaje.uno .img-absolute {
    width: 88%;
    position: absolute;
    left: 10px;
    right: -20px;
    top: -28px;
}
.container-personaje.dos .img-absolute {
    width: 145%;
    position: absolute;
    left: -30px;
    right: 0px;
    top: -24px;
}


}

/* ==========================================================
   🔵 6) Bootstrap Override para pantallas grandes
   ========================================================== */
@media (min-width: 1400px) {

  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1614px;
  }
}


/* ==========================================================
   🔵 7) Ultra Wide +1920px
   ========================================================== */
@media (min-width: 1921px) {

  .body-prinicipal, .body-footer, .body-footer-two {
    background-size: cover;
  }
}