/* Estilo del body */
body {
  background: linear-gradient(180deg, rgba(156, 147, 201, 0.7), rgba(135, 181, 212, 0.7)); /* Solo dos colores */
  color: #928d8d;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}


/* Mantener el contenido principal expandido */
main {
  flex-grow: 1;
}

/* Estilo de loading */
#divLoading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(254, 254, 255, .65);
  z-index: 9999;
  display: none;
}

#divLoading img {
  width: 50px;
  height: 50px;
}




/* Estilo de la navbar */
/* Estilo de la barra de navegación */
.navbar {
  background-color: #5b5959; /* Fondo azul oscuro */  
  background: linear-gradient(to right, #1a1a2e, #2e3b55); /* Fondo degradado oscuro */
  border-bottom: 2px solid #232424; /* Línea de separación más oscura */
  padding: 10px 15px; /* Espaciado interno */
   box-shadow: none !important;
}

.navbar-brand img {
  height: 50px; /* Tamaño consistente del logo */
  width: auto;
  max-height: 50px;
}

/* Estilo de los enlaces del menú */
.nav-link {
  color: #fff; /* Texto blanco */
  font-size: 1rem;
  font-weight: 500; /* Peso medio para mayor legibilidad */
  transition: color 0.3s ease, transform 0.3s ease; /* Efecto al pasar el mouse */
  text-transform: uppercase; /* Letras en mayúscula */
}

.nav-link i {
  margin-right: 5px; /* Espaciado entre icono y texto */
  font-size: 1rem;
}

/* Hover y enlace activo */
.nav-link:hover,
.nav-link.active {
  color: #f1f11a; /* Color dorado para destacar */
  transform: scale(1.05); /* Efecto de crecimiento leve */
}

/* Botón de colapso */
.navbar-toggler {
  border: none; /* Sin borde */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Botones adicionales (Registrarse y Login) */
.navbar .btn {
  border-radius: 50px; /* Bordes redondeados */
  font-size: 0.9rem; /* Tamaño adecuado */
  padding: 5px 15px; /* Espaciado interno */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar .btn-primary {
  background-color: #ffd700; /* Botón dorado */
  color: #000; /* Texto negro */
  border: none;
}

.navbar .btn-primary:hover {
  background-color: #e6c200; /* Dorado más oscuro al pasar el mouse */
  transform: scale(1.1); /* Crecimiento leve */
}

.navbar .btn-outline-primary {
  color: #ffd700; /* Texto dorado */
  border: 1px solid #ffd700; /* Borde dorado */
}

.navbar .btn-outline-primary:hover {
  background-color: #ffd700;
  color: #000; /* Texto negro */
}

/* Espaciado entre enlaces en dispositivos más grandes */
.navbar-nav .nav-item {
  margin-left: 15px;
  margin-right: 15px;
}

/* Responsividad: menú colapsado en móviles */
@media (max-width: 768px) {
  .navbar-nav {
    background-color: linear-gradient(to right, #1a1a2e, #16213e); /* Fondo azul oscuro */
  
    padding: 10px;
  }

  .nav-link {
    padding: 10px;
    border-bottom: 1px solid #0056b3; /* Separación entre enlaces */
  }
}



.navbar {
  background-color: #3f7ddb; /* tu azul */
}

.navbar-nav .nav-link i {
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 15px;
  font-weight: 500;
}

.navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-nav .nav-link i {
  font-size: 1.1rem;
}







/* Estilo de botones */
.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.btn-primary i {
  margin-right: 10px;
}



/* Estilo de secciones */
.custom-card {
  background: linear-gradient(to right, #1a1a2e, #2e3b55); /* Fondo degradado oscuro */
  color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 80px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Suaviza el crecimiento y el sombreado */
}

.custom-card:hover {
  /*transform: scale(1.05); /* Aumenta el tamaño al 105% */
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5); /* Intensifica la sombra */
}

.custom-card h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
  position: relative; /* Necesario para posicionar el subrayado */
  margin-bottom: 20px; /* Espaciado inferior para separar el subrayado */
}

.custom-card h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffd700; /* Línea decorativa amarilla */
  margin: 10px auto 0; /* Centrado horizontal */
  border-radius: 2px; /* Bordes redondeados */
}


.custom-card p {
  text-align: center;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}




/* Estilo del footer 
footer {
  background-color: #1a1a2e;
  color: #d1d5db;
}

footer .text-light {
  color: #d1d5db !important;
  transition: color 0.3s ease;
  text-decoration: none;
   transition: color 0.3s ease;
}*/

footer .text-light:hover {
  color: #ffd700 !important;
  text-decoration: none;
}

footer .btn-link {
  color: #d1d5db;
}

footer .btn-link:hover {
  color: #ffd700;
}

footer .list-inline-item a {
  color: #d1d5db;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

footer .list-inline-item a:hover {
  color: #ffd700;
}

footer img {
  max-height: 70px;
}








/* Estilo del carrusel para ocupar toda la altura de la pantalla */
.carousel-item {
  height: 100vh; /* Ocupa toda la altura de la ventana */
  position: relative;
}

.carousel-item img {
  object-fit: cover; /* Asegura que la imagen se ajuste proporcionalmente */
  height: 100%;
  width: 100%;
}

/* Fondo oscuro para cubrir toda la imagen */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para toda la imagen */
  z-index: 1; /* Coloca la capa por encima de la imagen */
}

/* Fondo más oscuro detrás del texto */
.carousel-caption {
  position: absolute;
  bottom: 20%; /* Ubicación del texto dentro de la imagen */
  z-index: 2; /* Coloca el texto por encima del overlay */
  background: rgba(0, 0, 0, 0.7); /* Fondo oscuro más intenso detrás del texto */
  padding: 20px;
  border-radius: 10px;
  max-width: 70%; /* Limitar el ancho del contenedor de texto */
  margin: 0 auto; /* Centrar el texto horizontalmente */
  text-align: center;
}

/* Estilo del texto dentro del carrusel */
.carousel-caption h5,
.carousel-caption p {
  color: #fff; /* Texto blanco */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra en el texto */
}

/* Hover en los controles de navegación */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro para destacar los íconos */
  border-radius: 50%;
  padding: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Fondo más oscuro al pasar el mouse */
  transform: scale(1.1); /* Efecto de crecimiento */
}

/* Responsividad */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 10%; /* Ajustar la posición del texto en pantallas pequeñas */
    max-width: 90%; /* Expandir el contenedor de texto */
    font-size: 0.9rem; /* Reducir el tamaño del texto */
  }

  .carousel-caption h5 {
    font-size: 1.2rem; /* Tamaño ajustado del título */
  }

  .carousel-caption p {
    font-size: 1rem; /* Tamaño ajustado del mensaje */
  }
}








/* Título de la sección */
/* Título de la sección Instagram */
.instagram-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff; /* Blanco para resaltar */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra del texto */
  text-align: center; /* Centrar el título */
  margin-bottom: 20px; /* Espaciado inferior */
  position: relative;
}

.instagram-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffd700; /* Línea decorativa amarilla */
  margin: 10px auto 0; /* Centrado horizontal */
  border-radius: 2px; /* Bordes redondeados */
}


/* Contenedor del feed de Instagram */
.instagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #1a1a2e; /* Fondo más oscuro para contraste */
  border: 1px solid #333; /* Borde más oscuro */
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Sombra */
  min-height: 300px; /* Altura mínima para mantener el diseño limpio */
}

/* Animación para la carga del feed */
.elfsight-app[data-elfsight-app-lazy] {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.elfsight-app:not([data-elfsight-app-lazy]) {
  opacity: 1;
}




/* Estilo de la sección de la galería */
.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffd700; /* Línea decorativa dorada */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Contenedor de la galería */
#gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* Tarjetas de la galería */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 300px;
  height: 300px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen dentro de 300x300 */
  border-radius: 10px;
}

/* Overlay dinámico para hover */
.gallery-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 22, 211, 0.7); /* Fondo oscuro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .card-overlay {
  opacity: 1; /* Mostrar overlay al hacer hover */
}

/* Mensaje descriptivo */
.gallery-card .card-overlay p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 15px; /* Espaciado para texto largo */
}


/* MODAL DE IMGS*/
.modal-header {
  background-color: #1a1a2e;
  color: #fff;
  border-bottom: none;
}

.modal-body img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-body p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.message-text {
  font-size: 1.2rem; /* Tamaño legible */
  font-weight: 500; /* Peso medio */
  color: #4a4a4a; /* Gris oscuro para mejor contraste */
  margin-bottom: 20px; /* Espaciado inferior */
  text-align: center; /* Centrado */
  line-height: 1.5; /* Altura de línea cómoda */
  border-bottom: 1px solid #ddd; /* Línea decorativa */
  padding-bottom: 10px; /* Espaciado interno */
}

.description-text {
  line-height: 1.6; /* Altura de línea cómoda */
  color: #333; /* Gris oscuro para legibilidad */
  background-color: #f9f9f9; /* Fondo claro para resaltar */

  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra ligera */
  text-align: justify; /* Texto justificado */
}


.cerrar:hover {
  transform: scale(1.05); /* Crecimiento leve al pasar el mouse */
  background: linear-gradient(180deg, #ff4c4c, #e63939); /* Fondo más oscuro */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}

.cerrar i {
  margin-right: 5px; /* Espaciado entre el ícono y el texto */
}



.modal-body a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.modal-body a:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}






/* Botón "Ir" */
.gallery-card .card-overlay a {
  display: inline-block;
  background-color: #007bff; /* Azul primario */
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  text-decoration: none; /* Sin subrayado */
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.gallery-card .card-overlay a:hover {
  background-color: #0056b3; /* Azul más oscuro */
  transform: scale(1.1); /* Crecimiento leve */
}










/* Botones flotantes de redes sociales */
.social-buttons {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-buttons a {
  background-color: #007bff; /* Azul por defecto */
  color: white; /* Color del icono */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Forma circular */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Efecto suave */
}

.social-buttons a:hover {
  background-color: #0056b3; /* Azul más oscuro */
  transform: scale(1.2); /* Incrementar tamaño ligeramente */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra para destacar */
  color: #f8f8f9; /* Cambia el color del ícono a dorado */
}

.social-buttons a i {
  font-size: 1.2rem; /* Tamaño del icono */
}

/* Botón Ir Arriba */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #007bff;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}






/* Sección Nosotros */
.about-section {
  background: linear-gradient(to right, #e3f2fd, #ffffff); /* Colores más suaves para una experiencia visual agradable */
  padding: 60px 40px; /* Espaciado adicional para mejor estructura */
  border-radius: 15px; /* Bordes más redondeados */
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15); /* Sombra más difusa para profundidad */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves */
}

.about-section:hover {
  transform: scale(1.02); /* Leve crecimiento al pasar el mouse */
  box-shadow: 0px 12px 45px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}

.about-section h2 {
  font-size: 2.8rem; /* Título ligeramente más grande */
  font-weight: 700; /* Mayor grosor para destacar */
  color: #ffffff; /* Azul más oscuro para contraste */
  text-align: center;
  margin-bottom: 30px;
  /* text-transform: uppercase; Texto en mayúsculas para impacto visual */
  letter-spacing: 1px; /* Espaciado entre letras */
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffd700; /* Línea decorativa dorada */
  margin: 10px auto 0; /* Centrado debajo del título */
  border-radius: 2px;
}

/* Estilo exclusivo para las tarjetas de la sección Nosotros */
.job-card {
  background: linear-gradient(to bottom, #1b1818, #266fa3); /* Fondo con gradiente suave */
  border: none; /* Elimina bordes predeterminados */
  border-radius: 10px; /* Bordes ligeramente redondeados */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave para profundidad */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efecto al pasar el mouse */
}

.job-card:hover {
  transform: scale(1.05); /* Crecimiento leve al pasar el mouse */
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}

/* Estilo del cuerpo de la tarjeta */
.job-card .card-body {
  padding: 20px; /* Espaciado interno */
  text-align: left; /* Alineación del contenido a la izquierda */
}

/* Título de la tarjeta */
.job-card .card-title {
  font-size: 1.5rem; /* Tamaño destacado */
  font-weight: 600; /* Mayor grosor */
  color: #0056b3; /* Azul oscuro */
  display: flex; /* Alineación flexible para ícono y texto */
  align-items: center;
  margin-bottom: 15px; /* Espaciado inferior */
}

/* Ícono en el título */
.job-card .card-title i {
  margin-right: 10px; /* Espaciado entre ícono y texto */
  color: #ffd700; /* Color dorado para el ícono */
  font-size: 1.8rem; /* Tamaño destacado del ícono */
}

/* Texto de la tarjeta */
.job-card .card-text {
  color: #232222; /* Texto oscuro para legibilidad */
  line-height: 1.6; /* Altura de línea cómoda */
  font-size: 1rem; /* Tamaño estándar */
  margin-bottom: 10px; /* Espaciado inferior */
}

/* Responsividad */
@media (max-width: 768px) {
  .job-card {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Sombra más ligera en pantallas pequeñas */
  }

  .job-card .card-title {
    font-size: 1.3rem; /* Título más pequeño en pantallas pequeñas */
  }

  .job-card .card-text {
    font-size: 0.9rem; /* Texto más compacto */
  }
}




/* FAQs */
.faq-section {
  background: linear-gradient(to right, #1a1a2e, #2e3b55); /* Fondo degradado oscuro */
  color: #ffffff; /* Texto blanco */
  padding: 60px 40px;
  border-radius: 15px; /* Bordes redondeados */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3); /* Sombra */
}

.faq-section:hover {
  transform: scale(1.05); /* Aumenta el tamaño al 105% */
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5); /* Intensifica la sombra */
}

/* Título de la sección */
.faq-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  /*text-transform: uppercase;*/
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra de texto */
  position: relative;
}

.faq-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffd700; /* Blanco */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* FAQ Items */
.faq-item {
  background-color: #2e3b55; /* Fondo oscuro */
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Sombra */
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.02); /* Crecimiento al pasar el mouse */
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}

/* Títulos de las FAQ */
.faq-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.faq-item h3 i {
  margin-right: 10px;
  font-size: 1.8rem; /* Tamaño del ícono */
}

/* Accordion */
.accordion-button {
  /*background-color: #2e3b55; /* Fondo oscuro */
  /*color: #ffffff; /* Blanco */
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #2e3b55; 
}

.accordion-button:hover {
  background-color: #ffffff; 
  color: #2e3b55;
}*/

.accordion-body {
  /*background-color: #1a1a2e; /* Fondo más oscuro */
  /*color: #ffffff; /* Texto blanco */
  font-size: 1rem;
  padding: 20px;
  line-height: 1.6;
  border-top: 1px solid #3a4a6b; /* Línea divisoria */
}

/* Responsividad */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-item h3 {
    font-size: 1.3rem;
  }

  .accordion-button {
    font-size: 1rem;
  }
}







/* Contacto */
/* Botón de enviar */
/* Contacto: Título con línea decorativa */
.contacto-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.contacto-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Botón de enviar */
#btnEnviar {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#btnEnviar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(223, 10, 10, 0.2);
}

/* Tarjetas de contacto */
.p-5 {
  padding: 3rem !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(218, 4, 4, 0.2) !important;
}

/* Iconos sociales */
.contact-social-buttons a {
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-social-buttons a:hover {
  transform: scale(1.2);
}

/* Lista de información */
.list-unstyled li {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Títulos */
.contacto-title,
h4.text-primary {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Horarios */
.list-group-item {
  background: transparent;
  font-size: 1rem;
  border: none;
  padding: 0.75rem 1rem;
 }



/* Google Maps */
.ratio {
  border-radius: 10px;
  overflow: hidden;
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.ubicacion-title {
  font-size: 2.5rem;
  font-weight: bold;
  /*color: #ffffff;  Blanco */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.ubicacion-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  /*background-color: #ffd700;  Línea decorativa amarilla */
  margin: 10px auto 0;
  border-radius: 2px;
}



/*empresas premium*/
/* Contenedor de la galería */
.premium-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

/* Tarjetas Premium */
.premium-gallery-card {
  position: relative;
  border: 3px solid #ffd700; /* Bordes dorados */
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Imagen dentro de la tarjeta */
.premium-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Insignia Verificada */
.premium-verified-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.5rem;
  color: white;
  background: #28a745; /* Verde de verificación */
  border-radius: 50%;
  padding: 4px;
  border: 1px solid white; /* Resaltado blanco */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Título de la sección */
.premium-card h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff; /* Dorado */
  text-align: center;
  margin-bottom: 20px;
}

.premium-card p {
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Overlay dinámico para hover en tarjetas premium */
.premium-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Fondo oscuro translúcido */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px; /* Bordes redondeados */
}

.premium-gallery-card:hover .premium-card-overlay {
  opacity: 1; /* Mostrar overlay al hacer hover */
}

/* Texto descriptivo dentro del overlay */
.premium-card-overlay p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* Sombra para texto */
}

/* Botón dentro del overlay */
.premium-card-overlay button {
  background: #ffd700; /* Fondo dorado */
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.premium-card-overlay button:hover {
  background: #ffe066; /* Dorado más claro */
  transform: scale(1.1); /* Efecto de agrandamiento */
}



/*EMPRESAS*/
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-card {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.gallery-card:hover {
  transform: scale(1.05);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
}

#load-more-button:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* Amplía ligeramente el botón */
}





.categoria-section {
  background-color: var(--colorFondoCategoria, #1552b6);
  border-radius: 12px;
  padding: 20px;
  color: white;
}

.categoria-header h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.empresas-listado {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.empresa-card {
  position: relative;
  width: 180px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.empresa-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empresa-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  color: yellow;
  width: 100%;
  text-align: center;
  padding: 10px 5px;
}

#categorias-container section {
  display: block !important;
}



/* CONTENEDOR PRINCIPAL */
.premium-gallery-section.premium-card.row {
  background: linear-gradient(160deg, #1b213a 0%, #2d3552 100%);
  padding: 50px 30px;
  border-radius: 18px;
  margin-bottom: 80px;
  border-left: 6px solid #ffd700;
  border-right: 6px solid #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

/* ENCABEZADO DESTACADO DE CADA OPERACIÓN */
.premium-gallery-section.premium-card.row h3 {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  color: #ffd700;
  position: relative;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* DESCRIPCIÓN DE CADA BLOQUE */
.premium-gallery-section.premium-card.row p {
  font-size: 1.1rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTÓN INFERIOR */
.premium-gallery-section.premium-card.row .btn {
  background-color: #ffd700;
  color: #1a1a1a;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.premium-gallery-section.premium-card.row .btn:hover {
  background-color: #ffe158;
  transform: scale(1.05);
}

/* DIFERENCIADOR ADICIONAL (si querés) */
.premium-gallery-section.premium-card.row::before {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, transparent, #ffd700, transparent);
  margin-bottom: 25px;
  border-radius: 3px;
}



/* Tipografías utilitarias */
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fs-18  { font-size: 1.125rem; } /* ~18px */
.fs-16  { font-size: 1rem; }     /* ~16px */

/* Card dorada premium (suave y elegante) */
.anuncio-oro{
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.22),
    0 14px 28px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.anuncio-oro:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.30),
    0 16px 30px rgba(0,0,0,.16);
}

/* Botón CTA dorado */
.btn-cta-gold{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, #FFD700, #E6C200);
  border: 1px solid #D4AF37;
  color:#1b1b1b;
  font-weight:700;
  box-shadow: 0 6px 12px rgba(212,175,55,.25);
  text-decoration:none;
}
.btn-cta-gold:hover{
  filter: brightness(.96);
  box-shadow: 0 8px 18px rgba(212,175,55,.32);
  color:#1b1b1b;
}


/* Base de la tarjeta */
.card-premium{
  background:#fff;
  border:1px solid #E6E6E6;
  border-radius:16px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  overflow:hidden;
  position:relative;
  transition:transform .15s ease, box-shadow .15s ease;
}
.card-premium:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

/* Acento premium (sutil, sin texto) */
.is-premium{
  border-color:#E8D391;                   /* dorado suave */
  box-shadow:0 0 0 2px rgba(255,215,0,.18), 0 10px 24px rgba(0,0,0,.10);
}
.premium-badge{
  position:absolute;
  top:10px; right:10px;
  width:28px; height:28px;
  border-radius:50%;
  background:linear-gradient(135deg,#FFD700,#E6C200);
  color:#1b1b1b;
  display:flex; align-items:center; justify-content:center;
  border:1px solid #D4AF37;
  box-shadow:0 4px 10px rgba(212,175,55,.25);
  z-index:1;
  font-size:.9rem;
}

/* Franja de operación (solo aquí vive el color del tipo) */
.card-op-header{
  padding:10px 14px;
}
.op-title{
  color:#fff;
  font-weight:800;
  font-size:1rem;
  letter-spacing:.2px;
}

/* Cuerpo */
.card-premium-body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Jerarquías */
.anuncio-title{           /* Título del anuncio: más grande que operación */
  font-size:1.15rem;
  font-weight:800;
  color:#1b1b1b;
  margin:2px 0 2px;
}
.cat-title{
  font-size:1rem;
  font-weight:700;
  color:#2b2b2b;
}
.place{
  font-size:.95rem;
  color:#6b6b6b;
}

/* CTA outline con el color de la operación */
.btn-cta-outline{
  margin-top:8px;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 14px;
  border-radius:999px;
  border:1.5px solid var(--op-color,#007bff);
  color: var(--op-color,#007bff);
  background:#fff;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
  transition: background .12s ease, color .12s ease, box-shadow .12s ease;
}
.btn-cta-outline:hover{
  background: var(--op-color,#007bff);
  color:#fff;
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}


/* Borde/acento premium más presente */
.card-premium.is-premium{
  border: 2px solid #D4AF37; /* oro */
  box-shadow:
    0 0 0 2px rgba(255,215,0,.16),
    0 10px 24px rgba(0,0,0,.12);
}

/* Línea divisoria dorada bajo la franja de operación */
.card-premium.is-premium .card-op-header{
  position: relative;
}
.card-premium.is-premium .card-op-header::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:-2px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg,#FFD700,#E6C200);
  box-shadow: 0 1px 4px rgba(212,175,55,.35);
}

/* Baño premium sutil en el cuerpo (muy leve) */
.card-premium.is-premium .card-premium-body{
  background: linear-gradient(180deg, rgba(255,215,0,.06), rgba(255,215,0,0) 32%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* TÍTULO del anuncio: más grande y CENTRADO */
.anuncio-title{
  font-size: 1.18rem;     /* > que operación */
  font-weight: 800;
  color: #1b1b1b;
  text-align: center;     /* centrado */
  margin: 6px 0 4px;
}

/* Categoría con ícono: un toque de peso */
.cat-title{
  font-size: 1rem;
  font-weight: 700;
  color: #2b2b2b;
}

/* Lugar igual que antes */
.place{ font-size: .95rem; color: #6b6b6b; }

/* CENTRAR botón */
.card-premium .btn-cta-outline{
  align-self: center;     /* centrado horizontal */
  margin-top: 10px;
}

/* Badge premium (queda igual) */
.premium-badge{
  position:absolute; top:10px; right:10px;
  width:28px; height:28px; border-radius:50%;
  background:linear-gradient(135deg,#FFD700,#E6C200);
  color:#1b1b1b; display:flex; align-items:center; justify-content:center;
  border:1px solid #D4AF37; box-shadow:0 4px 10px rgba(212,175,55,.25);
  z-index:1; font-size:.9rem;
}

/* Cabecera con fila (operación + precio) */
.op-head-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 14px;
}

/* Chip de precio */
.price-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1.5px solid var(--chip-border,#cfcfcf);
  background: var(--chip-bg,#f7f7f7);
  color:#0f172a;
  font-weight:800;
  font-size:.86rem;
  white-space:nowrap;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}

/* (resto de tus clases siguen igual) */
