.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%;
}

.red_social {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  background: var(--blanco);
  border-radius: 50%;
  margin-top: 0.5rem;
  color: var(--negro);
  -webkit-box-shadow: 0rem 0.1rem 0.3rem 0.2rem rgba(162, 162, 162, 0.43);
  -moz-box-shadow: 0rem 0.1rem 0.3rem 0.2rem rgba(162, 162, 162, 0.43);
  box-shadow: 0rem 0.1rem 0.3rem 0.2rem rgba(162, 162, 162, 0.43);
  font-size: 2rem;
  margin: 0.5rem 0;
  transition: all 0.5s ease-in-out;
}

.red_social:hover {
  background: var(--primario);
  color: var(--blanco);
  transition: all 0.5s ease-in-out;
}
.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;
}


.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-size: 1.6rem;
}

.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;
}

/* ========== NUEVO HEADER DISEÑO FIGMA ========== */

.contenedor-header-1 {
  background-color: var(--primario);
  padding: 0.8rem 0;
}

.contenedor-header-1 .header-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.logo-header {
  height: 60px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--blanco);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-deuda {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background-color: var(--blanco);
  border: none;
  border-radius: 3rem;
  color: var(--primario);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-deuda:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primario);
}

.btn-deuda i {
  font-size: 1.4rem;
}

.redes-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.red-social-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--blanco);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.red-social-header:hover {
  background-color: var(--blanco);
  color: var(--primario);
}

/* Header 2 - Barra de navegación */
.contenedor-header-2 {
  background-color: var(--terciario);
  padding: 0;
}

.header-2 {
  display: flex;
  align-items: center;
}

.header-2 .menu {
  width: 100%;
}

.header-2 .navbar {
  padding: 0;
}

.header-2 .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-2 .nav-link {
  color: var(--blanco) !important;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 1.5rem !important;
  transition: all 0.3s ease;
}

.header-2 .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-2 .nav-link i {
  margin-left: 0.3rem;
  font-size: 1rem;
}

.header-2 .dropdown-menu {
  background-color: var(--blanco);
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-top: 0;
}

/* Responsive móvil */
@media (max-width: 991px) {
  .contenedor-header-1 {
    padding: 0.5rem 0;
  }

  .contenedor-header-1 .header-1 {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .logo-header {
    height: 35px;
  }

  .logo-title {
    font-size: 0.9rem;
  }

  .logo-subtitle {
    font-size: 1.1rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn-deuda {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .btn-deuda i {
    font-size: 1rem;
  }

  .red-social-header {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
  }

  .header-2 .navbar-collapse {
    background-color: var(--secundario);
    padding: 1rem;
  }

  .header-2 .nav-link {
    padding: 0.8rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 576px) {
  .contenedor-header-1 .header-1 {
    padding: 0 0.5rem;
  }

  .logo-container {
    flex-shrink: 0;
  }

  .logo-header {
    height: 30px;
  }

  .logo-text {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .btn-deuda {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .btn-deuda i {
    font-size: 0.9rem;
  }

  .red-social-header {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .redes-header {
    gap: 0.3rem;
  }
}

.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;
}
/* ========== HEADER RESPONSIVE NUEVO DISEÑO ========== */

/* Solo aplica en móviles */
@media (max-width: 991px) {
  .contenedor-header-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 0.3rem 0;
  }

  .contenedor-header-1 .logo-container {
    display: none;
  }

  .contenedor-header-1 .btn-deuda {
    display: none;
  }

  .contenedor-header-1 .header-1 {
    justify-content: flex-end;
  }

  .contenedor-header-1 .redes-header {
    gap: 0.5rem;
  }

  .contenedor-header-1 .red-social-header {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
  }

  .contenedor-header-2 {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  .contenedor-header-2 .header-2 {
    padding: 0.5rem 0;
  }

  .contenedor-header-2 .navbar-brand {
    display: flex !important;
  }

  .contenedor-header-2 .navbar-brand img {
    height: 50px;
    width: auto;
  }

  body {
    padding-top: 100px;
  }
}

@media (max-width: 576px) {
  .contenedor-header-1 {
    padding: 0.8rem 0;
  }

  .contenedor-header-2 {
    top: 30px;
  }

  .contenedor-header-2 .navbar-brand img {
    height: 45px;
  }

  body {
    padding-top: 90px;
  }

  .contenedor-header-2 .navbar-collapse {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .no-body-padding {
    padding: 0;
  }

  .header-2 .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
  }

  .header-2 .hamburger span {
    background-color: var(--blanco);
  }
}

/* ========== SLIDER ESTILOS ========== */

.swiper-slide {
  position: relative;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: white !important;
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-prev {
  left: 20px !important;
}

.swiper-button-next {
  right: 20px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--blanco);
}

.slider-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
}

.slider-logo-overlay img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.slider-logo-overlay .slider-title {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  color: white;
}

.slider-logo-overlay .slider-subtitle {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  color: white;
  font-style: italic;
}

@media (max-width: 768px) {
  .slider-logo-overlay img {
    height: 50px;
  }

  .slider-logo-overlay .slider-title {
    font-size: 1.4rem;
  }

  .slider-logo-overlay .slider-subtitle {
    font-size: 1.8rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 480px) {
  .slider-logo-overlay img {
    height: 40px;
  }

  .slider-logo-overlay .slider-title {
    font-size: 1.2rem;
  }

  .slider-logo-overlay .slider-subtitle {
    font-size: 1.5rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* ========================================
   NUEVO FOOTER - Diseño Figma
   ======================================== */

/* Sección Teléfonos Útiles */
.telefonos-utiles-section {
  background-color: #2d5a27;
  padding: 3rem 0;
}

.telefonos-titulo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--blanco);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.telefonos-titulo i {
  font-size: 2rem;
}

.telefonos-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.telefono-card {
  background-color: #4a8b3c;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 150px;
}

.telefono-icono {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-size: 1.6rem;
}

.telefono-icono .fa-phone-alt,
.telefonos-titulo .fa-phone-alt {
  transform: scaleX(-1);
}

.telefono-info {
  display: flex;
  flex-direction: column;
}

.telefono-numero {
  color: var(--blanco);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.telefono-nombre {
  color: var(--blanco);
  font-size: 1.3rem;
  opacity: 0.9;
}

.telefonos-btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.btn-ver-telefonos {
  border: 2px solid var(--blanco);
  color: var(--blanco);
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ver-telefonos:hover {
  background-color: var(--blanco);
  color: #2d5a27;
}

/* Footer Principal */
.footer-nuevo {
  background-color: #1e4a1a;
  padding: 3rem 0 2rem;
}

.footer-content-nuevo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-nuevo img {
  height: 80px;
  width: auto;
}

.footer-contacto-nuevo {
  text-align: center;
}

.footer-contacto-nuevo h4 {
  color: var(--blanco);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-contacto-nuevo p {
  color: var(--blanco);
  font-size: 1.4rem;
  margin: 0;
  opacity: 0.9;
}

.footer-redes-nuevo {
  text-align: right;
}

.footer-redes-nuevo p {
  color: var(--blanco);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.redes-iconos {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.redes-iconos a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--blanco);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.redes-iconos a:hover {
  background-color: var(--blanco);
  color: #1e4a1a;
}


/* Copyright */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-copyright p {
  color: var(--blanco);
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.8;
}

.creartel-logo img {
  height: 25px;
  width: auto;
  opacity: 0.8;
}

.creartel-logo:hover img {
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .telefonos-grid {
    flex-wrap: wrap;
  }
  
  .telefono-card {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .telefonos-grid {
    flex-direction: column;
  }
  
  .telefono-card {
    flex: 1 1 100%;
  }
  
  .footer-content-nuevo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-logo-nuevo {
    order: 1;
  }
  
  .footer-contacto-nuevo {
    order: 2;
  }
  
  .footer-redes-nuevo {
    order: 3;
    text-align: center;
  }
  
  .redes-iconos {
    justify-content: center;
  }
  
  .footer-copyright {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .telefonos-btn-container {
    justify-content: center;
  }
}
