
  /* --- ESTILOS DEL FOOTER --- */
  footer {
    background: rgb(12, 77, 97);
    color: #fff;
    text-align: center;
    padding: 1rem 1rem 0.4rem;
  }

  /* --- ENLACES --- */
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .footer-links a:hover {
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  /* --- INFO (Teléfono + Idioma) --- */
  .footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1.5rem;
    flex-wrap: wrap;
  }

  .footer-contacto {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
  }

  .footer-contacto svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    background: #0f91a2;
    padding: 0.4rem;
    border-radius: 50%;
  }

  .footer-idioma {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
  }

  .footer-idioma img {
    width: 40px;
    height: auto;
    border-radius: 4px;
  }

  /* --- SEPARADOR --- */
  .footer-separador {
    border-top: 1px solid #1b99ad;
    width: 90%;
    margin: 0.4rem auto 0;
  }

  /* --- COPYRIGHT --- */
  .footer-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.9;
    padding-top: 0.2rem;
  }

  .footer-copy img {
    height: 22px;
    width: auto;
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 1050px) {
    .footer-info {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.6rem;
      padding: 0.5rem 0;
    }

    .footer-links {
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }
  }

  @media (min-width: 1200px) {
    footer {
      padding: 1.3rem 2rem 0.5rem;
    }

    .footer-links a {
      font-size: 1.1rem;
    }

    .footer-contacto span {
      font-size: 1.05rem;
    }
  }