

/* =========================================================
   HEADER
   Izquierda: "Tienda" / "mayorista" (con flecha ‹)
   Centro: logo
   Derecha: "Tienda" / "minorista" (con flecha ›)

   Desktop: todo en una sola línea ("‹ Tienda mayorista").
   Mobile: SIN hamburger. "Tienda" pasa a una línea y
   "mayorista"/"minorista" a la línea de abajo. La flecha
   se estira (flex stretch) para ocupar el mismo alto que
   ese bloque de dos líneas.
   ========================================================= */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1vw 3vw;
  gap: 2vw;
  position: sticky; /* pegado arriba siempre al scrollear */
  top: 0;
  z-index: 1000;
  background: var(--bg-gradient); /* mismo fondo que el resto de la web, para que no se transparente al hacer scroll */
  border-bottom: 1px solid rgba(255, 254, 254, 0.15); /* borde blanco sutil para separar del resto */
}

.nav-link {
  display: flex;
  align-items: stretch; /* la flecha se estira al alto del texto */
  gap: 0.6vw;
  color: var(--color-white);
  text-decoration: none;
}

.nav-text {
  display: flex;
  flex-direction: row; /* desktop: "Tienda" y "mayorista" en línea */
  align-items: center;
  gap: 0.4vw;
  font-size: 1.5813vw; /* 21.6px sobre lienzo de 1366px */
  white-space: nowrap;
}

.nav-text-bottom {
  font-weight: 700;
  text-decoration: underline;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  line-height: 1;
}

.logo {
  height: 3.5vw;
  width: auto;
}
.logo-link {
  display: inline-flex;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .site-header {
    padding: 3vw 4vw;
  }

  .nav-text {
    flex-direction: column; /* mobile: "Tienda" arriba, "mayorista/minorista" abajo */
    align-items: flex-start;
    gap: 0;
    line-height: 1.1;
    font-size: 3.2vw;
    white-space: normal;
  }

  .nav-right .nav-text {
    align-items: flex-end; /* del lado derecho, texto pegado a la flecha */
  }

  .arrow {
    font-size: 6vw; /* ocupa visualmente el alto de las 2 líneas */
  }

  .logo {
    height: 9vw;
  }
}





/* =========================================================
   FOOTER
   Referencia de medidas (pantalla de 17cm de ancho):
   - Margen izq/der: 2cm → 11.7647%
   - Separación entre logo y bloque de redes: 1.3cm + 1.3cm = 2.6cm → 15.2941%
   - Alto: 50vh desktop, 20vh mobile
   ========================================================= */

.site-footer {
  width: 100%;
  height: 50vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 11.7647%;
  gap: 12%;
  background: linear-gradient(180deg, #000000 0%, #150920 100%);
}

.footer-logo-img {
  height: auto;
  width: 30vw;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social-title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-social-icons {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vw;
}

.footer-social-link {
  display: inline-flex;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.footer-social-link:hover {
  transform: scale(1.15);
}

.footer-icon {
  width: 1.8vw;
  height: 1.8vw; /* sin medida exacta tuya — ajustable */
  filter: brightness(0) invert(1); /* convierte el ícono a blanco puro, sea cual sea su color original */
}

.footer-copyright {
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    height: 20vh;
    padding: 0 3%; /* margen del contenedor achicado */
    gap: 3%; /* separación entre logo y bloque de redes achicada */
  }

  .footer-logo,
  .footer-social {
    flex: 1; 
  }

  .footer-logo {
    display: flex;
    justify-content: center; /* nuevo: centra el logo dentro de su mitad */
  }

  .footer-logo-img {
    width: 40vw;
  }

  .footer-icon {
    width: 7vw;
    height: 7vw;
    margin: 1vh 0;
  }

  .footer-social-title {
    font-size: 3vw;
    margin-bottom: 2vw;
  }

  .footer-social-icons {
    gap: 4vw;
    margin-bottom: 2vw;
  }

  .footer-copyright {
    font-size: 2.2vw;
  }
}