.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1002; /* > nav */
}

.site-header__logo img {
  height: auto;
  width: auto;
  display: block;
}

.site-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Para que el contenido no quede oculto tras el header */
body {
  /* Si no lo tienes ya, suma un padding-top igual a la altura del header */
  padding-top: var(--header-height-2);
}

.site-footer {
  background: var(--verde-menta);
  color: var(--verde-abeto);
  padding: 3rem 2rem;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.site-footer {
  background: var(--verde-menta);
  color: var(--verde-abeto);
  padding: 3rem 2rem;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-slogan {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0;
}

.footer-copy {
  font-size: 0.9rem;
  margin: 0;
}

.footer-contacto p {
  margin: 0;
}

.footer-legal {
  display: inline;
}

.footer-contacto a,
.footer-legal a {
  color: var(--verde-abeto);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.footer-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-link {
  color: var(--verde-abeto); /* Ajusta al color base del diseño */
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: var(
    --verde-abeto
  ); /* Color destacado al pasar el mouse (usa tu color de marca) */
  opacity: 0.85;
}

.redes-sociales {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.redes-sociales img {
  width: 26px;
  height: auto;
}
