.floating-menu {
  position: fixed;
  right: 10px;
  /* Distancia desde el borde derecho */
  top: 50%;
  /* Centrado verticalmente */
  transform: translateY(-50%);
  /* Ajusta el centrado */
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Espacio entre íconos */
  z-index: 1000;
  /* Asegura que esté sobre otros elementos */
}

.navbar-light .navbar-nav .nav-link {
  font-size: 1.8rem;
  font-weight: 800;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  margin-top: 3.5rem;
}

.menu-item img {
  width: 40px;
  /* Tamaño de los íconos */
  height: 40px;
  border-radius: 50%;
  /* Hace los íconos redondeados */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Sombra ligera */
  transition: transform 0.2s ease-in-out;
}

@media (max-width: 480px) {
  .sub-menu {
    margin-bottom: 1rem;
  }
}

.columna-1 .top-line {
  border-top: 0.3rem solid var(--verde);
}

.columna-2 .top-line {
  border-top: 0.3rem solid var(--violeta);
}

.columna-3 .top-line {
  border-top: 0.3rem solid var(--naranja);
}

.columna-4 .top-line {
  border-top: 0.3rem solid var(--amarillo);
}

.columna-5 .top-line {
  border-top: 0.3rem solid var(--rojo);
}

.columna-6 .top-line {
  border-top: 0.3rem solid var(--celeste);
}

.columna-7 .top-line {
  border-top: 0.3rem solid var(--azul);
}

.menu-item img:hover {
  transform: scale(1.1);
  /* Efecto de escala al pasar el mouse */
}

.btn_cta_mobile {
  margin-top: 14rem;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.btn-buscar {
  color: var(--blanco);
  font-size: 1.7rem;
}

.btn-buscar:hover {
  color: var(--blanco);
  font-size: 1.7rem;
}

.mapa-footer {
  width: 100%;
}

.btn-primario {
  color: var(--blanco);
  background: var(--primario);
  transition: all 0.5s ease-in-out;
  font-size: 1.5rem;
  border: 0.2rem solid var(--blanco);
  padding: 0.5rem 0.8rem;
  font-size: 1.5rem;
  border-radius: 5rem;
  font-weight: 600;
}

.btn-primario:hover {
  background-color: var(--blanco);
  color: var(--primario);
  border: 0.2rem solid var(--primario);
  transition: all 0.5s ease-in-out;
}

.btn-secundario {
  background-color: #009ee2;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secundario:hover {
  background-color: #0088c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

.btn-secundario:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#img-mapa {
  background: url(/imagenes/estructura/mapa-full.jpg);
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f2f2f2;
}

.color-destacado {
  color: var(--secundario);
  font-size: 1.7rem;
}

.color-blanco {
  color: var(--blanco);
  font-size: 1.7rem;
}

.social-icons {
  display: flex;
  justify-content: right;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--primario);
}

.address {
  text-align: right;
}

.resaltado-telefono {
  font-size: 1.8rem !important;
  font-weight: bold;
  color: var(--secundario);
  line-height: 1;
}

.aclaracion {
  font-size: 1.7rem !important;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .telefonos-utiles {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .resaltado-telefono {
    font-size: 20px;
  }
}

.address p {
  color: var(--blanco);
  line-height: 2.4rem;
}

/* FOOTER */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .address {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 15px;
  }
}

.footer {
  background-color: var(--azul-oscuro);
  color: white;
  padding: 40px 0;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding-bottom: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 15px;
  margin-top: 20px;
}

.footer-section {
  width: 30%;
}

@media (max-width: 992px) {
  .footer-middle {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 20px;
    gap: 15px;
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
  }
}

.footer-section h4 {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.7rem;
}

.footer-section ul li a:hover {
  color: var(--primario);
}

.resaltado {
  color: var(--blanco);
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  line-height: 2.8rem;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.footer-bottom > div {
  flex: 1 1 auto;
  min-width: 250px;
}

/* Centramos en móvil */
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-bottom > div {
    justify-content: center;
    text-align: center;
  }
}

.footer-logo img {
  height: 110px;
}

.header-1 {
  display: flex;
  align-items: center;
}

.contenedor-header-1 {
  justify-content: right;
  padding: 1.2rem 0rem;
  background: var(--azul-oscuro);
}

.contenedor-header-1 .header-1 {
  margin-top: 0rem 1rem;
  justify-content: right;
}

.contenedor-header-2 {
  background: var(--primario);
  padding: 0rem;
}

/* ===== BOTÓN DEL ASISTENTE EN EL ENCABEZADO ===== */
/* Contenedor principal */
.header-assistant {
  display: flex;
  align-items: center;
  margin-left: 15px;
  height: 100%;
}

/* Estilo del botón */
.assistant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 30px;
  background: var(--primario);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px 0 50px;
  font-family: var(--fuente);
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  white-space: nowrap;
  position: relative;
  overflow: visible;
  cursor: pointer;
}

.assistant-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

/* Contenedor del GIF */
.assistant-gif-container {
  position: absolute;
  left: -60px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: white;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilo del GIF */
.assistant-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efectos hover */
.assistant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    135deg,
    var(--secundario) 0%,
    var(--primario) 100%
  );
  border-color: rgba(255, 255, 255, 0.3);
}

.assistant-btn:hover .assistant-gif {
  transform: scale(1.08) rotate(-5deg);
}

.assistant-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Efecto de pulso suave */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.assistant-gif-container {
  animation: pulse 3s infinite;
}

.assistant-btn:hover .assistant-gif-container {
  animation: none;
  transform: scale(1.05);
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
  .header-assistant {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 1000;
    margin: 0;
    display: none;
    /* Oculto por defecto */
    width: auto;
    height: auto;
  }

  /* Mostrar solo el botón flotante en móvil */
  .floating-assistant {
    display: block !important;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 9999;
  }

  /* Ocultar el botón en el header en móvil */
  .contenedor-header-1 .header-assistant,
  .contenedor-header-2 .header-assistant {
    display: none !important;
  }

  .assistant-btn {
    min-width: 140px;
    height: 35px;
    font-size: 0.85rem;
    padding: 0 15px 0 45px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .assistant-gif-container {
    width: 50px;
    height: 50px;
    left: -60px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .assistant-text {
    font-size: 1rem;
    line-height: 1.1;
    text-align: left;
    padding-right: 5px;
  }

  .assistant-btn:hover .assistant-gif {
    transform: scale(1.05) rotate(-3deg);
  }

  /* Ajustes para pantallas grandes */
  @media (min-width: 769px) {
    /* Ocultar el botón flotante en desktop */
    .floating-assistant {
      display: none !important;
    }

    /* Mostrar el botón en el header en desktop */
    .contenedor-header-1 .header-assistant,
    .contenedor-header-2 .header-assistant {
      display: flex !important;
    }
  }
}

.header_modulo {
  margin-left: auto;
  /* Esto empuja el módulo a la derecha */
  display: flex;
  align-items: center;
}

.btn-turnos {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--celeste), var(--azul-oscuro));
  color: var(--blanco);
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-turnos:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--blanco);
}

.btn-multas {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--naranja), var(--rojo));
  color: var(--blanco);
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 0.7rem;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-multas:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--blanco);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  background: var(--blanco);
  border: 2px solid var(--primario);
  color: var(--azul-oscuro);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 0.8rem;
  cursor: pointer;
  font-family: var(--fuente);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: var(--secundario);
  color: var(--azul-oscuro);
  text-decoration: none;
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-img {
  height: 28px;
  width: auto;
  display: block;
  /* Se eliminó el filtro para mantener los colores originales */
}

.btn-asistente {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 0.8rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-asistente:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.btn-asistente img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--blanco);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--blanco);
  text-transform: none !important;
}

.nombre-contendor-items,
.items-group .sub-menu a {
  text-transform: none !important;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--blanco);
}

.nav-link:focus,
.nav-link:active {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .navbar-light .navbar-nav .nav-link {
    color: var(--blanco);
  }

  .navbar-light .navbar-nav .nav-link:focus,
  .navbar-light .navbar-nav .nav-link:hover {
    color: var(--blanco);
  }
}

@media (max-width: 480px) {
  .navbar-light .navbar-nav .nav-link {
    color: var(--blanco);
  }

  .navbar-light .navbar-nav .nav-link:focus,
  .navbar-light .navbar-nav .nav-link:hover {
    color: var(--blanco);
  }
}

@media (max-width: 480px) {
  .navbar-light .navbar-brand {
    padding: 1rem 0rem;
  }
}

@media (min-width: 768px) {
  .navbar-expand-lg .navbar-collapse {
    margin-left: 50px;
  }
}

.top-line {
  width: auto !important;
}

.contenedor-columnas {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
/* Mega menu: limitar altura y permitir scroll vertical cuando el contenido excede el viewport */
.nav-item.dropdown.dropdown-mega .dropdown-menu .mega-content,
.nav-item.dropdown.dropdown-mega-2 .dropdown-menu .mega-content {
  max-height: calc(100vh - 200px);


  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}



  .nav-item.dropdown.dropdown-mega-2 .dropdown-menu,
  .nav-item.dropdown.dropdown-mega .dropdown-menu {
    position: fixed;
    border-color: var(--blanco);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }
}
.columna:last-child {
  margin-right: 0;
}

.icon-label {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .icon-label {
    font-size: 1.7rem;
  }
}

.footer {
  background-color: var(--azul-oscuro);
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-size: 1.4rem;
}

.footer-grilla {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1 1 200px;
  margin: 1rem;
}

.footer-titulo {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  text-transform: uppercase;
}

/* Modulo redes */

.color-azul {
  color: var(--celeste);
}

.line-utiles {
  background-color: var(--celeste);
}

.color-verde {
  color: var(--verde);
}

.line-cerca {
  background-color: var(--verde);
}

.color-naranja {
  color: var(--naranja);
}

.line-servicios {
  background-color: var(--naranja);
}

.color-amarillo {
  color: var(--amarillo);
}

.line-gobierno {
  background-color: var(--amarillo);
}

.footer-line-enlaces {
  position: relative;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.footer-line-enlaces::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.2s infinite;
  border-radius: 5px;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--grisclaro);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.7rem;
}

.footer-col ul li a:hover {
  color: var(--blanco);
}

.telefonos-utiles {
  margin: 3rem 0;
  border-top: 1px solid #444;
  padding-top: 2rem;
}

.titulo-telefonos {
  color: var(--primario);
  margin-bottom: 2rem;
  font-weight: bold;
}

.grilla-telefonos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.telefono-box {
  background-color: var(--azul-oscuro);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-align: center;
  min-width: 100px;
}

.telefono-box .numero {
  font-size: 2rem;
  font-weight: bold;
}

.telefono-box .etiqueta {
  font-size: 1.2rem;
  color: #ccc;
}

.ver-todos {
  display: flex;
  align-items: center;
}

.btn-secundario {
  background-color: var(--primario);
  color: var(--blanco);
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
}

.intendente {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.seguinos .titulo-seguinos {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primario);
  font-weight: 700;
  font-size: 18px;
}

.redes-sociales-footer {
  text-align: center;
}

.redes-sociales-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0.5rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  /* fondo sutil */
  backdrop-filter: blur(6px);
  /* efecto de blur */
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* borde tenue */
  transition: all 0.3s ease;
}

.icono-red {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  margin: 0 4px;
}

.redes-sociales-footer a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--primario);
  transform: scale(1.1);
}

.modulo-redes {
  background-color: #004f90;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-size: 1.4rem;
  width: 100%;
  height: 300px;
}

@media (max-width: 768px) {
  .modulo-redes {
    height: auto;
  }
}

.seguinos .titulo-seguinos-principal {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--blanco);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.redes-sociales-footer-principal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.redes-sociales-footer-principal a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.redes-sociales-footer-principal a:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
}

.redes-sociales-footer-principal i {
  font-size: 2.5rem;
}

.redes-sociales-footer-principal span {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
  display: flex;
  font-weight: 600;
}

.texto-inferior-redes {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  color: var(--blanco);
}

.footer-info {
  text-align: right;
  font-weight: 300;
}

.footer-info p {
  margin: 0.8rem 0;
  font-size: 1.5rem;
  color: var(--grisclaro);
}

.grilla-telefonos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
}

.telefono-box {
  flex: 1 1 200px;
  max-width: calc(25% - 1rem);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.icono-tel {
  background-color: var(--azul);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.info-tel {
  flex: 1;
  text-align: left;
}

.info-tel .numero {
  margin: 0;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
}

.info-tel .texto {
  margin: 0;
  font-size: 1.7rem;
  color: #cbd5e0;
}

.boton-ver-todos {
  margin-top: 1.5rem;
  text-align: right;
  width: 100%;
  justify-content: right;
  margin-bottom: 2rem;
  margin: 3rem 0rem 4rem;
}

.btn-ver-todos {
  background-color: var(--primario);
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  border: 2px solid var(--primario);
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.5;
}

.btn-ver-todos:hover {
  color: var(--primario);
  background-color: var(--azul-oscuro);
}

@media (max-width: 992px) {
  .telefono-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .boton-ver-todos {
    text-align: center;
  }
}

.icono-tel {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--grisclaro);
  /* círculo blanco */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  /* aumentado */
  color: var(--azul);
  /* ícono oscuro */
  transition: background-color 0.3s ease;
}

.icono-tel:hover {
  background-color: #f0f0f0;
  /* leve gris claro al pasar el mouse */
}

.tel-utiles {
  font-size: 1.7rem;
  color: var(--primario);
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .minimize-logo {
    transition: height 0.5s ease-in-out;
    height: 60px !important;
  }

  .minimize-navbar {
    transition: padding 0.5s ease-in-out;
    padding: 0rem 0rem;
  }

  .navbar-expand-lg .minimize-navbar-collapse {
    transition: font-size 0.5s ease-in-out;
    font-size: 1.5rem;
  }

  /* Asegúrate de que tu logo tenga la clase "logo" */
  .logo {
    transition: height 0.5s ease-in-out;
    height: 70px;
    /* Ajusta esto según el tamaño original de tu logo */
  }
}

.logo {
  height: 11rem;
}

.ver-todos-wrapper {
  margin-left: auto;
  flex-shrink: 0;
}

.btn-secundario {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .grilla-telefonos {
    justify-content: center;
  }

  .ver-todos-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .uwy.userway_p1 .userway_buttons_wrapper {
    bottom: 300px !important;
  }
}
@media (max-width: 991.98px) {
  /* headers fijos y sin gaps */
  .contenedor-header-1,
  .contenedor-header-2 {
    left: 0;
    right: 0;
    width: 100%;
    transform: none !important;
  }

  .contenedor-header-1 {
    position: fixed;
    top: 0; /* antes 1px -> generaba línea */
    z-index: 1090;
  }
  .contenedor-header-2 {
    position: fixed;
    top: 46px; /* alto real de la barra oscura */
    z-index: 1080;
  }

  /* quitar padding lateral del container dentro de los headers */
  .contenedor-header-1 .container,
  .contenedor-header-2 .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* empuje del contenido exacto (h1 + h2) */
  body {
    padding-top: calc(110px + 64px);
  }

  /* collapse del navbar que no se corte */
  .contenedor-header-2 .navbar-collapse {
    max-height: calc(100vh - 46px - 64px);
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .firma {
    margin-top: 0rem;
  }
}
@media (max-width: 991px){
  .no-body-padding{padding: 0;}
}

