/* =========================================
           ESTILOS DEL FOOTER
           ========================================= */
.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #333333;
}

/* --- SECCIÓN SUPERIOR (Gris claro) --- */
.footer-top {
  background-color: #e4e4e4;
  padding: 3.5rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Enlaces e Íconos */
.footer-links {
  display: flex;
  gap: 4.5rem;
}

.footer-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #231f20 !important;
  font-size: 12px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  cursor: pointer;
}

.footer-link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-link svg {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  fill: none;
  stroke: #231f20;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Logo Tarjeta One (Versión Imagen) */
.tarjeta-one-brand {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.tarjeta-one-img {
  height: 130px; /* Puedes ajustar esta altura según el tamaño real de la imagen */
  width: auto !important;
  object-fit: contain;
}

/* --- SECCIÓN INFERIOR (Blanca) --- */
.footer-bottom {
  background-color: #ffffff;
  padding: 1.5rem 0;
  border-top: 1px solid #d9d9d9;
}

.footer-bottom .footer-container {
  justify-content: flex-end; /* Alinea el texto a la derecha */
}

.footer-copyright {
  font-size: 13.5px;
  color: #231f20;
  text-align: right;
  width: 100%;
}

.footer-legal-link {
  color: #231f20 !important;
  text-decoration: none;
  transition:
    color 0.2s ease,
    text-decoration 0.2s ease;
}

.footer-legal-link:hover {
  color: #666666;
  text-decoration: underline;
}

.footer-separator {
  margin: 0 0.3rem;
  color: #231f20;
}

.footer-net__logo {
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    gap: 3rem;
    justify-content: center;
    width: 100%;
  }

  .tarjeta-one-brand {
    margin: 2rem 0 0 0;
  }

  .footer-bottom .footer-container {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
    line-height: 1.6;
  }
}
