.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.7rem;
  font-weight: bold;
}

.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;
}

.menu-item img:hover {
  transform: scale(1.1);
  /* Efecto de escala al pasar el mouse */
}

.btn_cta_mobile {
  margin-top: 14rem;
}

.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 {
  border: 0.2rem solid var(--primario);
  background-color: var(--blanco);
  color: var(--primario);
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  border-radius: 5rem;
  font-weight: 600;
  display: inline-block;
}

.btn-secundario:hover {
  background-color: var(--primario);
  color: var(--blanco);
  transition: all 0.5s ease-in-out;
}

.btn-whatsapp {
  color: white;
  background: #47a36b;
  /* Verde WhatsApp */
  transition: all 0.5s ease-in-out;
  font-size: 1.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5rem;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: white;
  color: #47a36b;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 600px) {
  .btn-whatsapp .whatsapp-text {
    display: none;
  }

  .btn-whatsapp {
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    justify-content: center;
    /* centrado horizontal */
    align-items: center;
    /* centrado vertical */
  }

  .btn-whatsapp i {
    margin: 0;
  }
}

.btn-whatsapp:hover {
  background-color: white;
  color: #47a36b;
  border: 2px solid #47a36b;
}

#img-mapa {
  background: url(/imagenes/estructura/mapa-full.jpg);
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f2f2f2;
}

.social-media h4 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  justify-content: right;
  gap: 0.5rem;
}

.color-destacado {
  color: var(--terciario);
  font-size: 1.7rem;
}

.color-blanco {
  color: var(--blanco);
  font-size: 1.7rem;
}

.social-media h4 p {
  color: var(--blanco);
}

.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;
}

.img-contacto {
  width: 50px;
  height: auto;
}

.resaltado-telefono {
  font-size: 1.8rem !important;
  font-weight: bold;
  color: var(--terciario);
  line-height: 1;
}

.subtitulo-telefono {
  font-size: 1.8rem !important;
  font-weight: normal;
  color: white;
}

.item-contacto.telefonos-utiles img {
  width: 6rem;
}

.item-contacto.telefonos-utiles {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.texto-contacto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.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;
  }

  .img-contacto {
    width: 40px;
  }

  .resaltado-telefono {
    font-size: 20px;
  }

  .subtitulo-telefono {
    font-size: 16px;
  }
}

.address p {
  color: var(--blanco);
  line-height: 2.4rem;
}

/* FOOTER */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .social-media h4 {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .address {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 15px;
  }
}

.footer {
  background-color: #1d1d1d;
  color: white;
  padding: 40px 0;
}

#footer p {
  font-weight: bold;
  font-size: 1.8rem;
}

.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;
}

.separator {
  height: 2px;
  background: linear-gradient(to right, var(--primario), var(--secundario));
  margin-bottom: 10px;
  border-radius: 2px;
}

.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);
}

.footer-contacto {
  display: flex;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 2rem 0rem 1rem 0rem;
  width: 100%;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.icono-footer {
  font-size: 5rem;
  padding: 0rem 1rem;
}

.ver-telefonos-utiles {
  display: flex;
  justify-content: end;
  align-items: center;
}

.ver-telefonos-utiles .btn-secundario {
  border: 0.2rem solid var(--terciario);
  background-color: #1d1d1d;
  color: var(--terciario);
}

@media (max-width: 768px) {
  .item-contacto {
    justify-content: center;
  }

  .ver-telefonos-utiles {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-contacto {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.img-contacto {
  width: 50px;
  /* Ajusta según necesites */
  height: auto;
}

/* Para tablets */
@media (max-width: 768px) {
  .footer-contacto {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
  }
}

/* Para móviles */
@media (max-width: 480px) {
  .footer-contacto {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .img-contacto {
    width: 40px;
    /* Reduce aún más en móviles */
  }

  .resaltado {
    font-size: 1.2em;
    /* Ajusta tamaño de números */
  }
}

.img-contacto {
  width: 5rem;
}

.item-contacto p {
  font-size: 14px;
  margin: 0;
}

.item-contacto .resaltado {
  font-size: 1.7rem;
  font-weight: bold;
}

.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: 15px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.social-media a {
  color: white;
  font-size: 18px;
  margin-left: 15px;
  text-decoration: none;
}

.social-media a:hover {
  color: var(--primario);
}

.footer-logo img {
  height: 60px;
}

.contenedor-header-1 {
  padding: 0rem;
}

.contenedor-header-1 .header-1 {
  margin-top: 0rem 1rem;
}

.red_social {
  width: 3rem;
  height: 3rem;
}

@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;
  }
}

.email-subscription {
  background-color: var(--primario);
  text-align: center;
  padding: 2.5rem;
}

.h3-email {
  color: var(--blanco);
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.email-form input {
  padding: 1rem;
  width: 300px;
  border: none;
  border-radius: 1rem;
}

.email-form button {
  background-color: var(--terciario);
  color: var(--blanco);
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  cursor: pointer;
}

.email-form button:hover {
  background-color: var(--secundario);
}

@media screen and (max-width: 600px) {
  .email-form {
    align-items: center;
  }

  .email-form input {
    width: 90%;
  }

  .email-form button {
    width: 95%;
  }
}

.item-contacto {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.social-media .redes {
  justify-content: flex-end;
  gap: 0;
  margin: 1rem 0rem 1rem 0rem;
}

@media (max-width: 576px) {
  .social-media .redes {
    justify-content: center !important;
     margin: 2rem 0rem 2rem 0rem;
  }
}

.top-line {
  width: auto !important;
}

.columna {
  min-width: auto !important;
  width: auto !important;
}

.contenedor-columnas {
  display: flex;
  justify-content: flex-start;
}

.columna {
  margin-right: 30px;
}

.columna:last-child {
  margin-right: 0;
}

.icon-label {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .icon-label {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .sub-menu {
    margin-bottom: 1rem;
  }
}

/*Flotante*/

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
}

.floating-buttons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Espacio entre los botones */
}

.floating-button .boton {
  width: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  animation: pulse-animation 2.5s infinite;
}

.floating-button .whatsapp {
  width: 45px;
  border-radius: 50%;

  animation: pulse-animation 2.5s infinite;
}

.img-radio {
  width: 15rem;
}

@media (min-width: 768px) {
  .img-radio {
    width: 15rem;
    /* En pantallas md (tablet para arriba) */
  }
}
@media (max-width: 768px) {
  .en-vivo-btn {
    display: none !important;
  }
}

@keyframes tel-pulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.footer-section ul li {
  transition: transform 0.3s ease;
}

/*Radio en vivo*/
.radio-container {
  display: flex;
  align-items: center;
}

.radio-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.en-vivo-btn {
  display: flex;
  align-items: center;
  background-color: #ff0000;
  color: white;
  padding: 5px 10px;
  border-radius: 30px;
  margin-left: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  animation: pulse 1.5s infinite;
}

.en-vivo-btn:hover {
  color: white;
  background-color: #ff0000;
  animation: pulse 1.5s infinite;
  font-size: 1.15rem;
  transition: all 0.5s ease-in-out;
}

.live-dot {
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@media (max-width: 576px) {
  .btn-whatsapp {
    display: none !important;
  }

  .red_social {
    padding: 0;
    margin: 0;
  }

  .en-vivo-btn {
    font-size: 0.65rem;
    padding: 2px 6px;
    margin-left: 4px;
    border-radius: 15px;
  }

  .live-dot {
    width: 6px;
    height: 6px;
    margin-right: 4px;
  }

  .radio-container .img-radio {
    max-height: 5rem;
    width: auto;
  }

  .radio-container .icono {
    margin-right: 4px;
  }

  .header-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }

  .redes {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .red_social i {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .uwy.userway_p1 .userway_buttons_wrapper {
    bottom: 300px !important;
  }
}
.uwy.userway_p1 .userway_buttons_wrapper {
  bottom: 250px !important;
}
/* Hasta 768px: móviles */
@media (max-width: 768px) {
  .contenedor-header-2 {
    background: var(--primario);
    padding: 0rem;
  }
}

/* Entre 992px y 1200px: tablets en horizontal */
@media (min-width: 992px) and (max-width: 1200px) {
  .contenedor-header-2 {
    background: white !important;
  }
}
/* Solo aplica en móviles */
@media (max-width: 991px) {
  .contenedor-header-1,
  .contenedor-header-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  /* Si el header-2 va debajo del header-1 */
  .contenedor-header-2 {
    top: 53px; /* ajustá según la altura real de header-1 */
  }

  /* Evitar que el contenido quede tapado */
  body {
    padding-top: 110px; /* altura total de header-1 + header-2 */
  }
  /* collapse del navbar que no se corte */
  .contenedor-header-2 .navbar-collapse {
    max-height: calc(100vh - 46px - 64px);
    overflow-y: auto;
  }

}
@media (max-width: 991px){
  .no-body-padding{padding: 0;}
}
