/* --------------------------
   RESET BÁSICO
-------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #FAFBFE !important;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* --------------------------
     CONTAINER
  -------------------------- */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* --------------------------
     MARGENES ENTRE SECCIONES
  -------------------------- */
  section {
    padding: 4rem 0;
  }
  @media (max-width: 768px) {
    section {
      padding: 2rem 0;
    }

    .container {
      padding-left: 16px !important;
      padding-right: 16px !important;
    }
    

  }
  
  /* --------------------------
     ESTILOS DEL NAVBAR
  -------------------------- */
  nav {
    background-color: #ffffff; /* Rojo principal */
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(221, 221, 221);
  }
  /* Para desktop: se usa grid con 3 columnas */
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    padding: 2rem 0;
  }
  .nav-left { text-align: left; }
  .nav-center { text-align: center; }
  .nav-right { text-align: right; }
  .nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
  }

  .nav-logo img{
    position: relative;
    top: 6px;
    width: 230px;

  }

  .title-chatea-ahora{
    font-size: 2em;
  }

    @media (max-width: 1000px) {
        .nav-logo img{
            width: 140px;
            top: 5px;
          }

    }   

  

  .nav-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  .nav-links a {
    color: #000000;
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: #CDEAFF;
  }
  .nav-cta {
    background-color: #fff;
    color: #4990C2 !important; 
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .nav-cta:hover {
    background-color: #CDEAFF;
  }
  /* Botón hamburguesa */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
  }
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #4990C2;
    margin-bottom: 4px;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* Ocultar botón "Mi Cuenta" de mobile en desktop */
  .mobile-only {
    display: none;
  }
  

  /* Dropdown personalizado */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-toggle {
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
  }
  .dropdown-menu a:hover {
    background-color: #f1f1f1;
  }

  .show {
    display: block;
  }


  /* --------------------------
     ESTILOS PARA MOBILE
  -------------------------- */
  @media (max-width: 768px) {
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem; /* Padding lateral igual al resto del contenido */
      position: relative;
      z-index: 99;
    }
    /* En mobile se oculta el botón "Mi Cuenta" de desktop */
    .nav-right {
      display: none;
    }
    /* Ocultamos la lista de enlaces por defecto */
    .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background-color: white;
      border-bottom: 1px solis black;
      box-shadow: 1px 2px 10px 1px rgba(0, 0, 0, 0.15);
      flex-direction: column;
    }
    /* Cuando se active, se muestra el menú */
    .nav-links.active {
      display: flex;
    }
    .nav-links a {
      padding: 1rem 2rem;
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    /* Mostrar el botón "Mi Cuenta" dentro del menú mobile */
    .mobile-only {
      display: block;
      text-align: center;
      margin: 0.5rem 0;
    }
    /* Mostramos el botón hamburguesa */
    .hamburger {
      display: flex;
    }
  }
  
  /* --------------------------
     SECCIÓN HERO
  -------------------------- */
  .hero {
    padding-top:50px;
    padding-bottom: 50px;
  }
  .hero-container {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-text h1 {
    color: #4990C2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    margin-bottom: 1.5rem;
  }
  .btn-hero {
    background-color: #4990C2;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: transparent !important;
  }
  .btn-hero:hover {
    background-color: #006e90;
    cursor: pointer;
  }


  .btn{
    background-color: #4990C2;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: none;
    border: none;
    font-weight: bold;
  }


  /* Reducir espacio entre contenedores en mobile */
  @media (max-width:768px) {
    .hero-text {
      /* margin-bottom: -100px; */
    }

    .hero-text h1 {
      font-size: 1.5rem;
    }
  }
  
  /* --------------------------
     FORMULARIO DE CHAT
  -------------------------- */
  .chat-form {
    text-align: left;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 40px auto;
  }


  @media (max-width: 768px) {
    .chat-form {
      max-width: 100%;
      min-width: 100% !important;
      margin: 0px !important;
      margin-top: 0.5rem; /* Menos espacio en la parte superior en mobile */
    }
  }
  .chat-form h2 {
    margin-bottom: 1rem;
    color: #4990C2;
  }
  .chat-form label {
    display: block;
    margin: 0.5rem 0 0.2rem;
  }
  .chat-form input,
  .chat-form select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #9b9b9b;
    border-radius: 4px;
  }
  .chat-form button {
    width: 100%;
    background-color: #4990C2;
    color: #fff;
    padding: 0.7rem;
    padding-top: 16px;
    padding-bottom: 16px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .chat-form button:hover {
    background-color: rgb(27, 137, 165);
  }

  .checkbox-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  /* Cada label con flex para que el texto quede centrado verticalmente */
  .checkbox-container label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    /* Puedes ajustar line-height si deseas más separación vertical */
    /* line-height: 1.2; */
  }
  
  /* Checkbox personalizado */
  .checkbox-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #4990C2;
    border-radius: 4px !important;
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;
    margin-right: 0.4rem;
    
    /* Importante para que ::before se posicione relativo al checkbox */
    position: relative;
    /* Ayuda a centrar con el texto */
    vertical-align: middle;
  }
  
  .checkbox-container input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    /* Centra el check dentro del checkbox */
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  
    width: 6px;
    height: 10px;
    border-right: 2px solid #4990C2;
    border-bottom: 2px solid #4990C2;
  }
  
  /* --------------------------
     SALAS DE CHAT RECOMENDADAS
  -------------------------- */
  .recommended-chats {
  }
  .recommended-chats h2 {
    text-align: center;
    color: #4990C2;
    margin-bottom: 2rem;
  }

  
      /* --------------------------
       SECCIÓN DE INFORMACIÓN
    -------------------------- */
    .info-section {
      margin-top: 50px;
      margin-bottom: 50px;
    }
    
    .info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    
      /* Evita que los items se estiren */
      align-items: start;
    }
    
    .info-card {
      background-color: #fff; /* Fondo blanco para el resto */
      color: #333;
      border: none;
      border-radius: 6px;
      padding: 1.5rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Efecto box-shadow */
    }
    .info-card h3 {
      margin-bottom: 1rem;
      background-color: #4990C2; /* Fondo celeste para el título */
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
    }
    .info-card h3 .icon {
      margin-right: 0.5rem;
    }
    .info-card p {
      font-size: 0.95rem;
    }
    .info-card ul {
      margin: 1rem 0;
      padding-left: 1.5rem;
    }
    .info-card li {
      margin-bottom: 0.5rem;
    }
  
  /* --------------------------
     FOOTER
  -------------------------- */
  footer {
    background-color: #4990C2;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
  footer a:hover {
    text-decoration: none;
  }
  
  /* --------------------------
     RESPONSIVE EXTRAS
  -------------------------- */
  @media (max-width: 992px) {
    .hero-container {
      flex-direction: column;
    }
  }
  


  /* Clases de margen superior */
.mt-0 { margin-top: 0 !important; padding-top: 0px !important; }
.mb-0 { margin-bottom: 0 !important; padding-bottom: 0px !important; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem !important; }

/* Clases de margen inferior */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-10 { margin-bottom: 2.5rem; }



footer{
    padding-top: 50px;
    padding-bottom: 50px;
}



.custom-input,
.custom-select {
  width: 100%;
  padding: 0.8rem 1rem !important; /* Más alto */
  margin-bottom: 1rem !important;
  border: 1px solid #ddd !important; /* Borde más claro */
  border-radius: 4px !important; /* Bordes redondeados */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* Sombra suave */
  transition: box-shadow 0.2s ease-in-out, border-color 0.2s;
}

label{
    font-weight:600;
}


.chatContainer{
  position: relative;
  height: 600px;
}

.subtitle{
  font-size: 16px;
  font-weight: 300;
  color: black !important;
  text-align: left !important;
}

.titles{
  color: black !important;
  text-align: left !important;
}

.ul-list{
  padding-left: 20px;
}

.text-black{
  color: black !important;
}


.help{
  position: relative;
  top: -17px;
  color: rgb(161, 161, 161);
  font-size: 0.7em;
  margin-left: 4px;
}




.ingreso-section{
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 69vh !important;
}

.a_link{
  color: #4990C2;
  text-decoration: underline;
}

.titulo-sala-chat{
  min-width: 100% !important;
  text-align: center;
  margin-bottom: 20px;
}

.sala-chat-section{
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 69vh !important;
}

.title-chat{
  color: black !important;
  text-align: center;
  display: flex;
  justify-content: center;
}


.title-chat img{
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 10px;
  top: 7px;
}


/* --- ESTILOS RESPONSIVE PARA MÓVILES --- */
/* Se aplican cuando el ancho de la pantalla es 600px o menos */
@media (max-width: 600px) { /* Puedes ajustar este breakpoint */
  .title-chat img {
    width: 35px;   /* Ancho más pequeño para móviles */
    height: 35px;  /* Alto más pequeño para móviles */
    margin-right: 8px; /* Margen derecho ligeramente menor */
    top: 2px;      /* Ajustar la posición vertical si cambió el tamaño de fuente del título o la imagen */
     /* Si usaste vertical-align en el base, normalmente no necesitas cambiarlo aquí */
  }
}




.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  font-family: sans-serif;
}

.arrow-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.arrow-btn:hover {
  background-color: #ddd;
}

.arrow-btn svg {
  width: 24px;
  height: 24px;
  stroke: #333;
}

.page-numbers {
  display: flex;
  gap: 0.5rem;
}

.page {
  padding: 0.5rem 0.9rem;
  background-color: #f9f9f9;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.page:hover {
  background-color: #e0e0e0;
}

.page.active {
  background-color: #4990C2;
  color: white;
}


.footer-links {
  list-style: none;        /* Elimina los puntos */
  padding: 0;
  margin: 1rem 0;
  display: flex;           /* Los pone en línea */
  flex-wrap: wrap;         /* Permite que se acomoden si no hay espacio */
  gap: 1rem;               /* Espacio entre enlaces */
  justify-content: center; /* Centra el grupo de enlaces */
  background-color: transparent !important;
}

.footer-links li {
  display: inline;         /* Alternativa si no usas flex */
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffa7a7;          /* Color al pasar el mouse */
  text-decoration: underline;
}


@media (max-width: 992px) {

  .chat-form-sala{
    position: relative;
    /* margin-top: -80vw !important; */
  }
  
}


.breadcrumb{
  background-color: transparent !important;
  border-bottom: 0px solid transparent !important;
  text-align: center !important;
  justify-content: center !important;
}

.breadcrumb a{align-items:center;color:#4990C2;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li + li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li + li::before{content:"\02192"}.breadcrumb.has-bullet-separator li + li::before{content:"\02022"}.breadcrumb.has-dot-separator li + li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li + li::before{content:"\0227B"}


.text-center{
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: #e5f5ff;   /* rojo claro */
  color: #4990C2;              /* rojo oscuro */
  padding: 0.3em 0.7em;
  font-size: 0.875rem;
  margin: 0.2em 0.3em;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}




.subsalas {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style-type: none; /* Quita el punto */
  margin: 0;             /* Opcional: resetea márgenes */
  padding: 0;            /* Opcional: resetea padding */
  padding-left: 0px !important;
}

.subsalita {
  display: block;
  color: black;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  width: fit-content;
  min-width: 100%;
}

.subsalita:hover {
  background-color: #4990C2;
  color: #ffffff;
}

.page.active{
  background-color: #4990C2 !important;
  border: 1px solid #4990C2 !important;

}

.input-with-icon{
  padding-left: 30px !important;
}

.relative{
  position: relative !important;
}



/* Contenedor principal */
.recommended-chats {
  padding: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Encabezado de sección */
.recommended-chats h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Grid de salas de chat */
.chat-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Cada tarjeta de chat */
.chat-room-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribuye el contenido para ocupar todo el alto */
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;  /* Permite que el contenedor se ajuste a la altura de la celda del grid */
}

.chat-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Icono de la sala (tamaño reducido) */
.chat-card-icon {
  width: 60px;      /* Nuevo ancho reducido */
  height: 60px;     /* Nuevo alto reducido */
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Contenedor interno para agrupar título y descripción */
.chat-room-content {
  flex-grow: 1;  /* Ocupa el espacio disponible para uniformar la altura de todas las tarjetas */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título de la sala */
.chat-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Descripción de la sala */
.chat-card-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

/* CTA dentro de cada tarjeta */
.chat-card-cta {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #4990C2;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.chat-card-cta:hover {
  background-color: #2d6f9e;
}

/* CTA global debajo del grid */
.all-chats-cta {
  text-align: center;
  margin-top: 2rem;
}

.all-chats-cta .btn {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  background-color: #28a745;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.all-chats-cta .btn:hover {
  background-color: #1e7e34;
}



.sobre-nosotros-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  color: #333;
}

.sobre-nosotros-section h1,
.sobre-nosotros-section h2 {
  margin-bottom: 1rem;
  color: #202020;
}

.sobre-nosotros-section p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.sobre-nosotros-section ul {
  list-style: none;
  padding-left: 0;
}

.sobre-nosotros-section ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5em;
  position: relative;
}

.sobre-nosotros-section ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.legal-container{
  padding: 4rem 0;
}

.legal-container section{
  margin-bottom: 50px;
  margin-top: 0px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.li-padded {
  padding-left: 1rem !important;
  list-style-position: inside;
}


.contact-section{
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.input-icon {
  position: absolute;
  left: 6px;
  top: 11px;
  pointer-events: none;
}

.text-end{
  float: right;
  text-align: right;
}

.ingreso-form{
  margin-top: 100px;
  margin-bottom: 200px;
}

.color-logo{
  color: #4990C2 !important;
}


/* --- ESTILOS BASE (ESCRITORIO Y PANTALLAS MÁS GRANDES) --- */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem; /* Aumentado el margen superior */
  margin-bottom: 2rem; /* Añadido margen inferior */
  flex-wrap: wrap; /* Permite que los botones se envuelvan en pantallas pequeñas */
  gap: 0.5rem; /* Espacio entre botones */
}

.pagination-button {
  background-color: rgb(255, 255, 255);
  border: 1px solid #ccc;
  padding: 0.6rem 1rem; /* Padding para pantallas grandes */
  margin: 0 0.25rem; /* Espacio horizontal */
  cursor: pointer;
  border-radius: 5px; /* Bordes redondeados */
  font-size: 0.9rem; /* Tamaño de fuente para pantallas grandes */
  transition: background-color 0.3s ease, color 0.3s ease; /* Transición suave */
  min-width: 40px; /* Ancho mínimo para mejor toque */
  text-align: center;
  line-height: 1.2; /* Asegura que el texto no se salga verticalmente */
}

.pagination-button:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.pagination-button.active {
  background-color: #4990C2; /* Color de fondo activo (ajusta a tu paleta) */
  color: white;
  font-weight: bold;
}

.pagination-button:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* --- ESTILOS RESPONSIVE PARA MÓVILES --- */
/* Se aplican cuando el ancho de la pantalla es 600px o menos */
@media (max-width: 600px) {
  .pagination-controls {
    gap: 0.3rem; /* Reducir un poco el espacio entre botones */
    margin-top: 1.5rem; /* Opcional: reducir margen en móviles */
    margin-bottom: 1.5rem;
  }

  .pagination-button {
    padding: 0.4rem 0.6rem; /* Padding más pequeño para móviles */
    font-size: 0.8rem; /* Fuente más pequeña para móviles */
    min-width: 32px; /* Ancho mínimo ligeramente menor si es necesario */
    margin: 0 0.15rem; /* Margen horizontal menor */
  }

  /* Opcional: Si los botones de flecha (que solo tienen '«' o '»')
     se ven muy pequeños con el padding reducido, puedes darles un padding
     horizontal específico un poco mayor si lo necesitas. */
  .pagination-prev-button,
  .pagination-next-button {
    /* padding-left: 0.7rem; */
    /* padding-right: 0.7rem; */
  }
}

/* Opcional: Puedes añadir otro breakpoint para tabletas si quieres */
/* @media (max-width: 768px) { ... } */


.ml-4{
  margin-left: 6px;
}


#subsalas-title strong {
  /* Aquí van tus estilos */
  font-weight: 600;
  font-size: 1em; /* Cambia el tamaño de la fuente */
}