/* =====================
   VARIABLES
===================== */

:root {
  --blue: #6FAED9;
  --green: #5FAE7A;
  --dark-green: #2F6F55;
  --orange: #E6863A;
  --pink: #D84B7C;
  --red: #C63A32;
  --yellow: #E8C547;
  --black: #1A1A1A;
  --off-white: #F5F5F3;
}

/* =====================
   RESET
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

/* =====================
   HEADER
===================== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F5F5F3;
  backdrop-filter: blur(6px);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px; /* ajusta según el tamaño de tu logo */
}

.logo img {
  height: 100%;
  width: auto; /* mantiene proporción */
  display: block;
}


/* =====================
   NAVIGATION
===================== */

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav li {
  display: flex;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

/* underline only for text links */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--black);
  transition: width 0.3s ease;
}

.main-nav li:not(:has(img)) a:hover::after {
  width: 100%;
}

/* =====================
   ICONS (SEARCH & CART)
===================== */

.main-nav img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}

/* =====================
   HERO
===================== */

.hero {
  min-height: 100vh;
  padding-top: 72px;
  background-color: #EFEDEA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* =====================
   HERO CONTENT
===================== */

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.highlight {
  color: var(--blue);
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* =====================
   CTA
===================== */

.cta-primary {
  background-color: var(--black);
  color:#EFEDEA;
  border: none;
  border-radius: 999px;
  padding: 16px 38px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* =====================
   FLOATING BOTAS
===================== */

.bota {
  position: absolute;
  width: 110px;
  height: 150px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color:#EFEDEA;
  text-transform: uppercase;
  animation: float 8s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bota:hover {
  transform: scale(1.08) rotate(2deg);
}

.bota-pink { background: var(--pink); top: 18%; left: 12%; animation-delay: 0s; }
.bota-yellow { background: var(--yellow); top: 12%; right: 22%; animation-delay: 1s; }
.bota-blue { background: var(--blue); top: 38%; right: 10%; animation-delay: 2s; }
.bota-green { background: var(--green); bottom: 18%; right: 25%; animation-delay: 3s; }
.bota-orange { background: var(--orange); bottom: 22%; left: 20%; animation-delay: 4s; }
.bota-dark { background: var(--dark-green); bottom: 10%; left: 8%; animation-delay: 5s; }
.bota-red { background: var(--red); top: 42%; left: 4%; animation-delay: 6s; }

@keyframes float {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}
/* =====================
   HAMBURGER MENU
===================== */

.hamburger {
  display: none; /* hidden by default for desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(6px);
  background: #EFEDEA;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 105;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin: 24px 0;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--blue);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
  .main-nav {
    display: none; /* hide desktop nav */
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .cta-primary {
    padding: 14px 28px;
    font-size: 0.85rem;
  }

  .bota {
    width: 80px;
    height: 110px;
  }
}
/* =====================
   OCULTAR BOTAS EN MOBILE
===================== */

@media (max-width: 768px) {
  .bota {
    display: none;
  }
}
.mobile-logo {
  position: absolute;
  top: 32px; /* separación desde la parte superior del overlay */
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* altura del logo */
}

.mobile-logo img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .mobile-logo {
    height: 60px;
  }
}
/* =====================
   FEATURES SECTION
===================== */

.features {
  background: #EFEDEA;
  padding: 96px 48px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.features-divider {
  display: inline-block;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin-bottom: 52px;
}

.features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 42px;
  align-items: start;
  justify-items: center;
  margin: 0 auto 64px;
  padding: 0;
}

.feature {
  width: 100%;
  max-width: 170px;
}

.feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #fff; /* para que el SVG (currentColor) sea blanco */
  transform: translateZ(0);
}

.feature-icon svg {
  width: 46px;
  height: 46px;
  display: block;
}
.feature-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

/* Colores (usando tus variables) */
.feature-icon--blue { background: var(--blue); }
.feature-icon--green { background: var(--green); }
.feature-icon--orange { background: var(--orange); }
.feature-icon--pink { background: var(--pink); }
.feature-icon--red { background: var(--red); }
.feature-icon--yellow { background: var(--yellow); }

/* Hover: giro */
@media (prefers-reduced-motion: no-preference) {
  .feature-icon {
    transition: transform 0.65s ease;
  }
  .feature:hover .feature-icon {
    transform: rotate(360deg);
  }
}

.feature-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
}

/* Pill inferior */
.features-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  background: #EFEDEA;
  backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .features {
    padding: 72px 20px;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 28px 18px;
  }
  .feature-icon {
    width: 92px;
    height: 92px;
  }
  .feature-icon svg {
    width: 40px;
    height: 40px;
  }
}
/* =====================
   CTA
===================== */

.cta-primary {
  position: relative;
  overflow: hidden;

  background-color: var(--black);
  color:#EFEDEA;
  border: none;
  border-radius: 999px;

  padding: 16px 38px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Elevación */
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.16);
}

/* Halo suave */
.cta-primary::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15) 35%,
    transparent 65%
  );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

.cta-primary:hover::after {
  opacity: 1;
}

/* Focus visible (por si navegas con teclado) */
.cta-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(111, 174, 217, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.18);
}

/* =====================
   RESPONSIVE CTA
===================== */

@media (max-width: 480px) {
  .cta-primary {
    padding: 14px 28px;
    font-size: 0.85rem;
  }
}

/* =====================
   REDUCE MOTION
===================== */

@media (prefers-reduced-motion: reduce) {
  .cta-primary,
  .cta-primary::after {
    transition: none;
  }
}
/* =====================
   HOVER ANIMATIONS - CÍRCULOS DE COLORES (FEATURE ICONS)
   PÉGALO AL FINAL
===================== */

/* base: que el icono sea animable */
.feature-icon {
  position: relative;
  transform: translateZ(0);
  will-change: transform, filter;
}

/* 1) giro + escala (más “vuelta”) */
@media (prefers-reduced-motion: no-preference) {
  .feature-icon {
    transition: transform 0.7s ease, filter 0.35s ease;
  }

  .feature:hover .feature-icon {
    transform: rotate(360deg) scale(1.06);
    filter: brightness(1.05) saturate(1.08);
  }
}

/* 2) halo / ring exterior al pasar el mouse */
.feature-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(26, 26, 26, 0.12); /* sutil */
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.feature:hover .feature-icon::after {
  opacity: 1;
  transform: scale(1);
}

/* 3) “press” en click */
.feature:active .feature-icon {
  transform: rotate(360deg) scale(0.98);
}

/* accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .feature-icon,
  .feature-icon::after {
    transition: none !important;
  }
  .feature:hover .feature-icon {
    transform: none !important;
    filter: none !important;
  }
}
/* =====================
   LEGACY SECTION
===================== */

.legacy {
  background: #EFEDEA;
  padding: 120px 48px;
}

.legacy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.legacy-pill {
  display: inline-block;
  background: var(--blue);
  color: #EFEDEA;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legacy-content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
}

.legacy-content h2 span {
  color: var(--green);
}

.legacy-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}

.legacy-content blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--dark-green);
  margin: 32px 0;
  max-width: 520px;
}

/* COLOR BARS */
.legacy-colors {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.legacy-colors span {
  width: 38px;
  height: 6px;
  border-radius: 6px;
}

.c-blue { background: var(--blue); }
.c-green { background: var(--green); }
.c-orange { background: var(--orange); }
.c-pink { background: var(--pink); }
.c-yellow { background: var(--yellow); }
.c-red { background: var(--red); }

/* RIGHT CARD */
.legacy-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 52px 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.legacy-card h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin: 8px 0 44px;
}

/* list */
.award-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* tile */
.award {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 34px 34px;
  border-radius: 26px;
  background: #F5F5F3;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* hover como el diseño */
.award:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* icon placeholder (aquí pondrás png si quieres) */
.award-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  flex: 0 0 64px;
  background: #ddd;
}

/* colores de icono */
.award-icon--yellow { background: var(--yellow); }
.award-icon--pink { background: var(--pink); }

/* texto */
.award-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.award-text strong {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
}

.award-text span {
  font-size: 1.2rem;
  color: #555;
}

/* pill MADE IN SPAIN */
.made-in {
  margin: 46px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 38px;
  border-radius: 999px;
  border: 2px solid var(--dark-green);
  text-decoration: none;
  color: var(--dark-green);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  background: rgba(245, 245, 243, 0.9);
}

/* placeholders para iconos (sin emoticonos) */
.made-star {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--dark-green);
}

/* responsive card */
@media (max-width: 900px) {
  .legacy-card { padding: 42px 28px; }
  .award { padding: 28px 24px; border-radius: 22px; }
  .award-text strong { font-size: 1.35rem; }
  .award-text span { font-size: 1.05rem; }
}

/* =====================
   AWARDS HOVER AZUL
===================== */

.award:hover {
  background: var(--blue);
}

/* texto cuando el fondo es azul */
.award:hover .award-text strong,
.award:hover .award-text span {
  color: #ffffff;
}

/* ===================== 
   ORIGIN SECTION 
===================== */ 

.origin {
  background: #EFEDEA;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.origin-inner {
  width: 100%;
  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* 👈 CLAVE */
}

/* =====================
   IMAGE
===================== */

.origin-media {
  margin: 80px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.origin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* =====================
   CONTENT
===================== */

.origin-content {
  margin: 80px 80px 80px 0; /* mismo aire que la imagen */
  display: flex;
  flex-direction: column;
  justify-content: center;

  max-height: calc(100vh - 160px); /* 👈 NUNCA supera la imagen */
}

.origin-pill {
  align-self: flex-start;
  background: var(--dark-green);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.origin-content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
}

.origin-content h2 span {
  color: var(--orange);
}

.origin-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .origin-media {
    margin: 0 24px;
    height: 360px;
    border-radius: 22px;
  }

  .origin-content {
    margin: 0 24px 48px;
    max-height: none;
  }
}


/* ===================== 
   SUSTAINABILITY SECTION
===================== */

.sustainability {
  background: #EFEDEA;
  padding: 120px 48px;
}

.sustainability-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch; /* 👈 clave: fuerza que ambos lados tengan la misma altura */
}

/* LEFT CONTENT */
.sustainability-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 distribuye párrafos y lista uniformemente */
}

.sustainability-pill {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 150px;
  align-items: center;
}

.sustainability-content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
}

.sustainability-content h2 span {
  color: var(--blue);
}

.sustainability-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}

.sustainability-list {
  margin-top: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}

.sustainability-list li {
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.sustainability-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}

/* colores de los bullets */
.dot-green { background: var(--green); }
.dot-blue { background: var(--blue); }
.dot-yellow { background: var(--yellow); }

/* RIGHT CARD */
.sustainability-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 52px 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 👈 centra verticalmente */
}

/* contenido card */
.sustainability-card h3 {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 44px;
}

.sustainability-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
}

.stat span {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
}

.sustainability-pill-link {
  margin-top: auto; /* 👈 fuerza que el pill siempre quede abajo */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  background: rgba(245, 245, 243, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
 
}

.sustainability-pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ===================== 
   RESPONSIVE
===================== */

@media (max-width: 900px) {
  .sustainability-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sustainability-content {
    margin: 0 24px;
  }

  .sustainability-card {
    padding: 42px 28px;
  }

  .stat strong {
    font-size: 1.6rem;
  }

  .stat span {
    font-size: 1rem;
  }

  .sustainability-pill-link {
    margin-top: 32px; /* pequeño ajuste en mobile */
  }
}

@media (max-width: 480px) {
  .sustainability {
    padding: 72px 20px;
  }
  
  .sustainability-content h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  
  .sustainability-card h3 {
    font-size: 1.8rem;
  }
  
  .sustainability-pill-link {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ===================== 
   COLLABORATIONS SECTION - TEXTOS FLOTANTES
===================== */

.collaborations {
  background:#EFEDEA;
  padding: 120px 48px;
}

.collaborations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch; /* alinea altura del texto con media */
}

/* LEFT MEDIA */
.collaborations-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.collaborations-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.collaborations-media img:hover {
  transform: scale(1.05);
}

/* TEXTOS FLOTANTES */
.collab-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 4vw, 2.8rem);
  color: #D84B7C;
  pointer-events: none;
  animation: floatText 4s ease-in-out infinite alternate;
}

.collab-designer {
  top: 20%;
  left: 10%;
}

.collab-artisan {
  bottom: 20%;
  right: 10%;
}

@keyframes floatText {
  0% { transform: translateY(0);}
  50% { transform: translateY(-12px);}
  100% { transform: translateY(0);}
}

/* RIGHT CONTENT */
.collaborations-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collaborations-pill {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 156px;
  align-items: center;
}

.collaborations-content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.collaborations-content h2 span {
  color: var(--blue);
}

.collaborations-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* CARD FLOTANTE */
.collaboration-card {
  margin-top: 32px;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaboration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.15);
}

.collaboration-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
}

.collaboration-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.collaboration-card li {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 14px;
}

/* CTA dentro de la card */
.cta-collaboration {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-collaboration:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ===================== 
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .collaborations-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collaborations-media {
    flex-direction: row;
    gap: 16px;
    height: 360px;
  }

  .collaborations-media img {
    flex: 1;
    height: 100%;
  }

  .collab-text {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .collaborations {
    padding: 72px 20px;
  }

  .collaborations-content h2 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .collaboration-card h3 {
    font-size: 1.6rem;
  }

  .cta-collaboration {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
}

/* =====================
   FOOTER
===================== */

.site-footer {
  background: #EFEDEA; /* pastel verde-gris NUEVO */
  padding: 120px 48px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  align-items: start;
}

/* =====================
   TITLES
===================== */

.footer-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  cursor: default;
}

/* Hover animado sutil */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--dark-green);
  transition: width 0.35s ease;
}

.footer-title:hover::after {
  width: 100%;
}

/* =====================
   TEXT
===================== */

.footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
  max-width: 220px;
}

/* =====================
   LINKS
===================== */

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--black);
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* =====================
   SOCIAL
===================== */

.footer-social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: var(--blue);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) rotate(3deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}


/* =====================
   LANGUAGE
===================== */

.footer-lang {
  display: flex;
  gap: 12px;
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);

  padding: 10px 20px;
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  cursor: pointer;

  transition: background 0.25s ease, color 0.25s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--dark-green);
  color: #fff;
}

/* =====================
   EXTRA COL
===================== */

.footer-note span {
  font-weight: 900;
  font-size: 1.2rem;
}

.footer-note small {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.08em;
}

/* =====================
   DIVIDER
===================== */

.footer-divider {
  display: block;
  margin: 72px auto 0;
  width: 100%;
  height: 1px;
  background: rgba(26, 26, 26, 0.15);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-note {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}
.cta-footer {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f5f5f5;
}



/* =====================
   LEGACY – FIX RESPONSIVE
===================== */

@media (max-width: 900px) {
  .legacy {
    padding: 72px 20px;
  }

  .legacy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Fuerza orden lógico: texto → card */
  .legacy-content {
    order: 1;
  }

  .legacy-card {
    order: 2;
    padding: 36px 24px;
    border-radius: 22px;
  }

  .legacy-content p,
  .legacy-content blockquote {
    max-width: 100%;
  }

  .award {
    padding: 24px 20px;
  }

  .award-text strong {
    font-size: 1.25rem;
  }

  .award-text span {
    font-size: 1rem;
  }
}




/* =====================
   COLLABORATIONS – FIX RESPONSIVE
===================== */

@media (max-width: 900px) {
  .collaborations {
    padding: 72px 20px;
  }

  .collaborations-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* IMÁGENES EN COLUMNA */
  .collaborations-media {
    flex-direction: column;
    height: auto;
  }

  .collaborations-media img {
    height: 260px;
  }

  /* Elimina hover “agresivo” en touch */
  .collaborations-media img:hover {
    transform: none;
  }
}

/* Extra pequeño */
@media (max-width: 480px) {
  .collaborations-media img {
    height: 220px;
    border-radius: 20px;
  }

  .collaboration-card {
    padding: 28px 20px;
  }
}


@media (hover: none) {
  .award:hover,
  .collaborations-media img:hover,
  .collaboration-card:hover {
    transform: none;
    box-shadow: none;
  }
}


