/* VARIABLES 2026 – Digital Ethereal & Glacial Iridiscence */
:root {
  --blue-glacial: #A7C7E7;
  --silver-liquid: #C0C0C0;
  --orchid-digital: #DA70D6;
  --bg-dark: #0A0A0F;
  --text-light: #F5F5F5;
  --gradient-hero: radial-gradient(circle at 50% 50%, rgba(167,199,231,.22) 0%, rgba(10,10,15,.8) 90%);
  --font-display: "Helvetica Neue", Arial, sans-serif;
  --anim-match-cut: .6s cubic-bezier(.4,0,.2,1);
}

/* MODO OSCURO AUTO */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--bg-dark);
    --text: var(--text-light);
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video,
.hero__video + img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  background: var(--gradient-hero);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}
.hero__subtitle {
  font-size: 1.1rem;
  opacity: .8;
  margin-bottom: 2rem;
}

/* CTA IRIDISCENTE */
.cta {
  border: none;
  padding: .9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue-glacial), var(--orchid-digital));
  color: #fff;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,112,214,.35);
}
.cta--outline {
  background: transparent;
  border: 2px solid var(--silver-liquid);
  color: var(--silver-liquid);
}
.cta--floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  50% { transform: translateY(-6px); }
}

/* VALUE */
.value {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: auto;
}
.value__cards {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: rgba(192,192,192,.05);
  border: 1px solid rgba(192,192,192,.15);
  border-radius: 1rem;
  
  text-align: center;
  transition: background var(--anim-match-cut);

  min-height: 520px;   /* altura fija */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra el texto verticalmente */



}
.card:hover {
  background: rgba(167,199,231,.1);
}

/* LOC */
.loc {
  padding: 4rem 1rem;
}
.loc__grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.loc__item {
  flex: 0 0 20vw;   /* 4 items visibles ≈ 25 % cada uno */
  height: 80vh;
  background: var(--silver-liquid) center/cover;
  border-radius: 1rem;
  display: grid;
  place-content: end;
  scroll-snap-align: center;
}
.loc__item figcaption {
  background: rgba(10,10,15,.6);
  padding: .5rem 1rem;
  border-radius: 0 0 1rem 1rem;
  width: 40%;
  text-align: center;
}

/* SHOP */
.shop {
  padding: 4rem 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.shop__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}
.product--large {
  min-height: 680px;   /* alto */
  max-width: 480px;    /* ancho máx. */
  
  background: rgba(218,112,214,.08);
  border: 1px solid var(--orchid-digital);
  border-radius: .5rem;
}

.product h4 {
  margin-bottom: 190;
}

/* SOCIAL PROOF */
.social-proof {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-glacial);
  padding: 2rem 1rem;
}

/* POLL */
.poll {
  padding: 4rem 1rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.poll__options {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.poll__btn

/* Modal básico */
.modal {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  max-width: 90vw;
  width: 400px;
  padding: 2rem;
  background: var(--bg);
  color: var(--text);
…  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}


/* FOOTER */
footer {
  margin-top: 4rem;
  padding: 2.5rem 1rem 1.5rem;
  text-align: center;
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem;
  opacity: 0.85;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

footer small {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  margin-top: 1.2rem;
}

/* Redes sociales */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(192, 192, 192, 0.1);
  color: var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social a:hover,
.footer__social a:focus {
  background: var(--blue-glacial);
  color: var(--bg-dark);
  transform: translateY(-2px);
  outline: 2px solid var(--blue-glacial);
  outline-offset: 2px;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}



