/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

@media (min-width: 901px) {
  html {
    scroll-behavior: smooth;
  }
}

[id="inicio"],
[id="nosotros"],
[id="productos"],
[id="consumo"],
[id="recomendacion"],
[id="contacto"] {
  scroll-margin-top: 110px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
}

/* =========================
   VARIABLES
========================= */
:root {
  --color-white: #ffffff;
  --color-text: #111111;
  --color-overlay: rgba(0, 0, 0, 0.08);
  --container-width: 1200px;
  --transition: 0.3s ease;
  --nav-hue: 245;
}

/* =========================
   UTILIDADES
========================= */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */


.logo-image {
  display: flex;
  align-items: center;
}

.logo-image img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.header.scrolled .logo-image img {
  height: 38px;
  filter: none;
}

@media (max-width: 768px) {
  .logo-image img {
    height: 38px;
  }

  .header.scrolled .logo-image img {
    height: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 22px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition:
    color var(--transition),
    transform var(--transition),
    text-shadow var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -2;
  opacity: 0;
  transition: opacity var(--transition);

  background:
    radial-gradient(120% 120% at 20% 20%,
      hsla(var(--nav-hue), 100%, 85%, 0.24),
      transparent 45%),
    radial-gradient(120% 120% at 80% 30%,
      hsla(calc(var(--nav-hue) + 35), 100%, 75%, 0.18),
      transparent 45%),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10) inset,
    0 0 18px rgba(120, 110, 255, 0.12),
    0 0 34px rgba(120, 110, 255, 0.08);
}

.nav a::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 1px;

  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      rgba(255, 255, 255, 0) 220deg,
      rgba(255, 255, 255, 0.85) 310deg,
      rgba(255, 255, 255, 0) 360deg);

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;

  animation: navSpark 2.2s linear infinite;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.30),
    0 0 16px rgba(145, 132, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/image1.webp');
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  animation: softZoom 8s ease-in-out infinite alternate;
  will-change: transform;
  filter: brightness(1.05) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--color-white);
  padding-top: 200px;
}

.hero-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.9rem, 6.4vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.14);
}



/* =========================
   NOSOTROS + PRODUCTOS
========================= */
.about-preview {
  position: relative;
  padding: 110px 0 70px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 34vh;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.18) 70%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.about-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18vh;
  background: linear-gradient(0deg,
      rgba(244, 244, 244, 0.75) 0%,
      rgba(244, 244, 244, 0.20) 65%,
      rgba(244, 244, 244, 0) 100%);
  z-index: 2;
}

/* =========================
   PARTÍCULAS REDONDEADAS
========================= */
.about-squares {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  z-index: 1;
}

.about-square {
  align-self: flex-end;
  width: 1em;
  height: 1em;
  background: #e6e6e6;
  border-radius: 999px;
  transform: translateY(100%);
  animation: squareFloat 24s linear infinite;
}

.about-square:nth-child(2) {
  width: 3em;
  height: 1.5em;
  animation-delay: 1s;
  animation-duration: 36s;
  filter: blur(5px);
}

.about-square:nth-child(3) {
  width: 1em;
  height: 2em;
  animation-delay: 1.5s;
  animation-duration: 18s;
}

.about-square:nth-child(4) {
  width: 1.5em;
  height: 1em;
  animation-delay: 0.5s;
  filter: blur(3px);
  animation-duration: 28s;
}

.about-square:nth-child(5) {
  width: 2em;
  height: 1.25em;
  animation-delay: 4s;
  filter: blur(2px);
  animation-duration: 22s;
}

.about-square:nth-child(6) {
  width: 2em;
  height: 2.5em;
  animation-delay: 2s;
  filter: blur(1px);
  animation-duration: 20s;
}

.about-square:nth-child(7) {
  width: 2em;
  height: 5em;
  filter: blur(2.5px);
  animation-duration: 26s;
}

.about-square:nth-child(8) {
  width: 3em;
  height: 1em;
  animation-delay: 5s;
  filter: blur(6px);
  animation-duration: 40s;
}

.about-square:nth-child(9) {
  width: 2em;
  height: 1.5em;
  filter: blur(0.5px);
  animation-duration: 18s;
}

.about-square:nth-child(10) {
  width: 2.4em;
  height: 3em;
  animation-delay: 6s;
  filter: blur(0.5px);
  animation-duration: 24s;
}

.about-preview-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.about-preview-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.about-preview-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(38, 87, 64, 0.08);
  color: #28523e;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-preview-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #1d3528;
  margin-bottom: 22px;
  font-weight: 800;
}

.about-preview-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5a51;
}

/* =========================
   CATÁLOGO / CARRUSEL 3D
========================= */
.products-carousel-section {
  position: relative;
  z-index: 3;
  padding: 90px 0 130px;
  background: transparent;
  overflow: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 70px;
}

.products-tag {
  display: inline-flex;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(242, 140, 56, 0.12);
  color: #bd6220;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #183c2a;
  margin-bottom: 14px;
}

.products-header p {
  color: #59675f;
  font-size: 1.05rem;
}

.product-slider {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}

.slider-stage {
  position: relative;
  width: min(96vw, 1250px);
  height: 620px;
  transform-style: preserve-3d;
}

.product-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(540px, 82vw);
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 28px rgba(255, 255, 255, 0.85),
    0 0 70px rgba(255, 255, 255, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.25);

  transform-style: preserve-3d;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    filter 0.55s ease,
    box-shadow 0.55s ease;
}


.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.00) 0%,
      rgba(0, 0, 0, 0.04) 45%,
      rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  z-index: 1;
  transform: translateZ(35px) scale(0.9999);
}

.product-card-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 44px;
  z-index: 4;
  text-align: left;
  color: #ffffff;
  transform: translateZ(80px);
}

.product-card-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
}

.product-card-content span {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.product-card.active {
  opacity: 1;
  z-index: 5;
  filter: blur(0);
  transform: translateX(-50%) translateZ(160px) rotateY(0deg) scale(1);

  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 34px rgba(255, 255, 255, 0.95),
    0 0 85px rgba(255, 255, 255, 0.55),
    0 35px 90px rgba(0, 0, 0, 0.28);
}

.product-card.prev {
  opacity: 0.58;
  z-index: 3;
  filter: blur(2px) brightness(0.72);
  transform: translateX(-128%) translateZ(-190px) rotateY(42deg) scale(0.74);

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 24px rgba(255, 255, 255, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.product-card.next {
  opacity: 0.58;
  z-index: 3;
  filter: blur(2px) brightness(0.72);
  transform: translateX(28%) translateZ(-190px) rotateY(-42deg) scale(0.74);

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 24px rgba(255, 255, 255, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.product-card.hidden-card {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(5px);
  transform: translateX(-50%) translateZ(-320px) scale(0.62);
}

.slider-btn {
  z-index: 30;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #000000;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.95),
    0 0 45px rgba(255, 255, 255, 0.65),
    0 16px 35px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 26px rgba(255, 255, 255, 1),
    0 0 55px rgba(255, 255, 255, 0.8),
    0 18px 40px rgba(0, 0, 0, 0.22);
}



.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%);
}

.prev-btn {
  left: calc(50% - 550px);
}

.next-btn {
  right: calc(50% - 550px);
}


/* =========================
   CONSUMO - SECCIÓN OSCURA
========================= */
.consumo-section {
  position: relative;
  padding: 10px 0 130px;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
}
.consumo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(circle at 18% 22%, rgba(255, 128, 100, 0.28), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(63, 125, 75, 0.32), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(114, 91, 220, 0.18), transparent 55%);

  filter: blur(40px) saturate(1.2);
  opacity: 0.85;
  pointer-events: none;
}
.consumo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.18), rgba(5,5,5,0.62)),
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}

.consumo-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.consumo-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.consumo-intro span {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff8064;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.consumo-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.9;
  color: #ffffff;
  text-transform: uppercase;
}

.consumo-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.consumo-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.consumo-info-grid article {
  position: relative;
  min-height: 270px;
  padding: 34px 30px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 18, 16, 0.94), rgba(24, 18, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 32px rgba(255,255,255,0.12),
    0 28px 70px rgba(0,0,0,0.38);
  transition:
    transform 0.4s ease,
    min-height 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.consumo-info-grid article::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.08),
      rgba(255,128,100,0.35),
      rgba(255,255,255,0.7)
    );
  opacity: 0.25;
  z-index: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.consumo-info-grid article::after {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-semana-1::after {
  content: " Inicia con poca cantidad y tómalo preferiblemente en la mañana para observar cómo responde tu cuerpo.";
}

.card-semana-2::after {
  content: "Mantén una dosis constante y acompáñalo con alimentos ligeros para favorecer la adaptación digestiva.";
}

.card-semana-3::after {
  content: "Si ya te sientes adaptado, puedes aumentar gradualmente sin excederte y mantener una rutina equilibrada.";
}

.consumo-info-grid article:hover {
  min-height: 360px;
  transform: translateY(-8px) scale(1.035);
  border-color: rgba(255,255,255,0.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 0 38px rgba(255,255,255,0.35),
    0 0 70px rgba(255,128,100,0.20),
    0 34px 90px rgba(0,0,0,0.52);
}

.consumo-info-grid article:hover::before {
  opacity: 0.65;
  filter: blur(14px);
}

.consumo-info-grid article:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.consumo-info-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
  background: linear-gradient(135deg, #ffffff, #ff8064, #f28c38);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(255,255,255,0.18);
}

.consumo-info-grid h3 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.consumo-info-grid p {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}


/* =========================
   BENEFICIOS DEL KÉFIR - NUEVO DISEÑO
========================= */
.benefits-block {
  max-width: 980px;
  margin: 110px auto 0;
  position: relative;
}

.benefits-block::before {
  content: "";
  position: absolute;
  inset: -80px -60px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 128, 100, 0.22), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(114, 91, 220, 0.20), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(63, 125, 75, 0.18), transparent 42%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.benefits-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 42px;
}

.benefits-header span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff8064;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.benefits-header h3 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-shadow:
    0 0 22px rgba(255, 128, 100, 0.22),
    0 0 45px rgba(114, 91, 220, 0.18);
}

.benefits-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 30px;

  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.92), rgba(32, 24, 28, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(255, 128, 100, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 128, 100, 0.18), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(63, 125, 75, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.benefit-item:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(255, 128, 100, 0.36);
  box-shadow:
    0 30px 85px rgba(0, 0, 0, 0.45),
    0 0 38px rgba(255, 128, 100, 0.22),
    0 0 58px rgba(114, 91, 220, 0.16);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-number {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #ff8064, #f28c38, #3f7d4b);
  color: #ffffff;
  font-weight: 900;
  box-shadow:
    0 0 24px rgba(255, 128, 100, 0.32),
    0 14px 28px rgba(0, 0, 0, 0.30);
}

.benefit-item h4 {
  position: relative;
  z-index: 1;
  color: #fffaf2;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.benefit-item p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    grid-template-columns: 54px 1fr;
    padding: 22px;
  }

  .benefit-number {
    width: 48px;
    height: 48px;
  }
}
/* Animación scroll */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.88) translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

.reveal-zoom.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.benefit-item:nth-child(2) {
  transition-delay: 0.08s;
}

.benefit-item:nth-child(3) {
  transition-delay: 0.16s;
}

.benefit-item:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 768px) {
  .benefits-block {
    margin-top: 75px;
  }

  .benefit-item {
    grid-template-columns: 50px 1fr;
    padding: 20px;
  }

  .benefit-number {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .benefits-block {
    margin-top: 70px;
  }

  .benefit-item {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .benefit-number {
    width: 42px;
    height: 42px;
  }
}
/* BREATING ANIMATION PARA FONDO DE CONSUMO */
@keyframes consumoColorFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* ===== FANCY FADING FOOTER ===== */
.fancy-footer {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  padding: 60px 0 0;
  color: #fff;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Texto gigante de fondo con fading */
.footer-text-bg {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-text-bg span {
  font-size: clamp(40px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

/* Gradiente que hace fade desde el contenido hacia el texto */
.footer-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  z-index: 0;
  pointer-events: none;
}
/* =========================
   BURSTING SVG STAR RATING
========================= */
.rating {
  --yellow: hsl(38, 90%, 55%);
  --yellow-t: hsla(38, 90%, 55%, 0);
  --bezier: cubic-bezier(0.42, 0, 0.58, 1);
  --trans-dur: 0.3s;

  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.rating__stars {
  display: flex;
  position: relative;
  padding-bottom: 1.7em;
}

.rating__display {
  font-size: 0.95rem;
  font-weight: 800;
  min-height: 1.25em;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffb16e;
}

.rating__input {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
}

.rating__label {
  cursor: pointer;
  padding: 0.125em;
}

.rating__label--delay1 .rating__star-ring,
.rating__label--delay1 .rating__star-fill,
.rating__label--delay1 .rating__star-line,
.rating__label--delay1 .rating__star-stroke {
  animation-delay: 0.05s;
}

.rating__label--delay2 .rating__star-ring,
.rating__label--delay2 .rating__star-fill,
.rating__label--delay2 .rating__star-line,
.rating__label--delay2 .rating__star-stroke {
  animation-delay: 0.1s;
}

.rating__label--delay3 .rating__star-ring,
.rating__label--delay3 .rating__star-fill,
.rating__label--delay3 .rating__star-line,
.rating__label--delay3 .rating__star-stroke {
  animation-delay: 0.15s;
}

.rating__label--delay4 .rating__star-ring,
.rating__label--delay4 .rating__star-fill,
.rating__label--delay4 .rating__star-line,
.rating__label--delay4 .rating__star-stroke {
  animation-delay: 0.2s;
}

.rating__star {
  display: block;
  overflow: visible;
  pointer-events: none;
  width: 2em;
  height: 2em;
}

.rating__star-ring,
.rating__star-fill,
.rating__star-line,
.rating__star-stroke {
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.rating__star-ring,
.rating__star-fill,
.rating__star-line {
  stroke: var(--yellow);
}

.rating__star-fill {
  fill: var(--yellow);
  transform: scale(0);
  transition:
    fill var(--trans-dur) var(--bezier),
    transform var(--trans-dur) var(--bezier);
}

.rating__star-line {
  stroke-dasharray: 12 13;
  stroke-dashoffset: -13;
}

.rating__star-stroke {
  stroke: hsl(223, 10%, 30%);
  transition: stroke var(--trans-dur);
}

.rating__sr {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

.rating__input:hover ~ [data-rating]:not([hidden]) {
  display: none;
}

.rating__input-1:hover ~ [data-rating="1"][hidden],
.rating__input-2:hover ~ [data-rating="2"][hidden],
.rating__input-3:hover ~ [data-rating="3"][hidden],
.rating__input-4:hover ~ [data-rating="4"][hidden],
.rating__input-5:hover ~ [data-rating="5"][hidden],
.rating__input:checked:hover ~ [data-rating]:not([hidden]) {
  display: block;
}

.rating__input-1:hover ~ .rating__label:first-of-type .rating__star-stroke,
.rating__input-2:hover ~ .rating__label:nth-of-type(-n + 2) .rating__star-stroke,
.rating__input-3:hover ~ .rating__label:nth-of-type(-n + 3) .rating__star-stroke,
.rating__input-4:hover ~ .rating__label:nth-of-type(-n + 4) .rating__star-stroke,
.rating__input-5:hover ~ .rating__label:nth-of-type(-n + 5) .rating__star-stroke {
  stroke: var(--yellow);
  transform: scale(1);
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-ring,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-ring,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-ring,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-ring,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-ring {
  animation-name: starRing;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-stroke,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-stroke,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-stroke,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-stroke,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-stroke {
  animation-name: starStroke;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-line,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-line,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-line,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-line,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-line {
  animation-name: starLine;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-fill,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-fill,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-fill,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-fill,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-fill {
  animation-name: starFill;
}

.rating__input-1:not(:checked):hover ~ .rating__label:first-of-type .rating__star-fill,
.rating__input-2:not(:checked):hover ~ .rating__label:nth-of-type(2) .rating__star-fill,
.rating__input-3:not(:checked):hover ~ .rating__label:nth-of-type(3) .rating__star-fill,
.rating__input-4:not(:checked):hover ~ .rating__label:nth-of-type(4) .rating__star-fill,
.rating__input-5:not(:checked):hover ~ .rating__label:nth-of-type(5) .rating__star-fill {
  fill: var(--yellow-t);
}

@keyframes starRing {
  from,
  20% {
    animation-timing-function: ease-in;
    opacity: 1;
    r: 8px;
    stroke-width: 16px;
    transform: scale(0);
  }

  35% {
    animation-timing-function: ease-out;
    opacity: 0.5;
    r: 8px;
    stroke-width: 16px;
    transform: scale(1);
  }

  50%,
  to {
    opacity: 0;
    r: 16px;
    stroke-width: 0;
    transform: scale(1);
  }
}

@keyframes starFill {
  from,
  40% {
    animation-timing-function: ease-out;
    transform: scale(0);
  }

  60% {
    animation-timing-function: ease-in-out;
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

@keyframes starStroke {
  from {
    transform: scale(1);
  }

  20%,
  to {
    transform: scale(0);
  }
}

@keyframes starLine {
  from,
  40% {
    animation-timing-function: ease-out;
    stroke-dasharray: 1 23;
    stroke-dashoffset: 1;
  }

  60%,
  to {
    stroke-dasharray: 12 13;
    stroke-dashoffset: -13;
  }
}

@media (max-width: 768px) {
  .rating {
    justify-content: center;
  }

  .rating__star {
    width: 1.85em;
    height: 1.85em;
  }
}


@media (max-width: 768px) {
  .consumo-section {
    padding: 90px 0;
  }

  .consumo-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .consumo-section {
    padding: 210px 0 90px;
    margin-top: -120px;
  }

  .consumo-section::before {
    height: 240px;
  }

  .consumo-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .consumo-section {
    padding: 140px 0 90px;
    margin-top: -60px;
  }

  .consumo-info-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   ANIMACIONES
========================= */
@keyframes softZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes navSpark {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes squareFloat {
  from {
    transform: translateY(100%) rotate(-50deg);
  }

  to {
    transform: translateY(calc(-100vh - 100%)) rotate(20deg);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .nav-container {
    gap: 14px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.93rem;
    padding: 8px 12px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6.2vw, 5.4rem);
  }
}

@media (max-width: 768px) {
  .products-carousel-section {
    padding: 70px 0 110px;
  }

  .product-slider {
    min-height: 560px;
  }

  .slider-stage {
    width: 100%;
    height: 500px;
  }

  .product-card {
    width: min(330px, 82vw);
    height: 480px;
  }

  .product-card-content {
    left: 22px;
    right: 22px;
    bottom: 34px;
  }

  .product-card-content h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .product-card-content span {
    font-size: 0.9rem;
  }

  .product-card.prev {
    opacity: 0.28;
    filter: blur(2px) brightness(0.7);
    transform: translateX(-82%) translateZ(-130px) rotateY(26deg) scale(0.68);
  }

  .product-card.next {
    opacity: 0.28;
    filter: blur(2px) brightness(0.7);
    transform: translateX(-18%) translateZ(-130px) rotateY(-26deg) scale(0.68);
  }

  .slider-btn {
    bottom: 12px;
  }

  .prev-btn,
  .next-btn {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .prev-btn {
    left: -20px;
  }

  .next-btn {
    right: -20px;
  }

  .slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
  }

  @media (max-width: 560px) {
    .nav {
      gap: 8px;
    }

    .nav a {
      font-size: 0.88rem;
      padding: 8px 10px;
    }

    .hero-title {
      font-size: clamp(2rem, 10vw, 3.8rem);
    }
  }

  @media (max-width: 480px) {
    .product-slider {
      min-height: 520px;
    }

    .slider-stage {
      height: 460px;
    }

    .product-card {
      width: min(300px, 86vw);
      height: 440px;
    }

    .product-card.prev {
      opacity: 0.22;
      transform: translateX(-74%) translateZ(-120px) rotateY(22deg) scale(0.64);
    }

    .product-card.next {
      opacity: 0.22;
      transform: translateX(-26%) translateZ(-120px) rotateY(-22deg) scale(0.64);
    }
  }
}

@media (max-width: 768px) {
  .consumo-info-grid {
    grid-template-columns: 1fr;
  }

  .consumo-info-grid article:hover {
    min-height: 380px;
    transform: translateY(-5px) scale(1.01);
  }
}

/* HEADER AL HACER SCROLL */
.header {
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

.header.scrolled .logo,
.header.scrolled .nav a {
  color: #1f4b35;
}

.header.scrolled .nav a:hover {
  background: rgba(31, 75, 53, 0.08);
  color: #1f4b35;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.header.scrolled .menu-toggle {
  background: rgba(31, 75, 53, 0.10);
}

.header.scrolled .menu-toggle span {
  background: #1f4b35;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-container {
    flex-direction: row;
  }

  .nav {
    position: absolute;
    top: 78px;
    right: 5%;
    width: min(280px, 90vw);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.96);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    color: #1f4b35;
    text-align: center;
    padding: 13px 16px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================
   HEADER TIPO BARRA IPHONE
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.scrolled {
  top: 18px;
  left: 50%;
  width: min(92%, 760px);
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px) saturate(1.45);
  -webkit-backdrop-filter: blur(24px) saturate(1.45);

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header.scrolled .container {
  width: 100%;
}

.header.scrolled .logo {
  color: #1f4b35;
  font-size: 0.95rem;
}

.header.scrolled .nav {
  gap: 8px;
}

.header.scrolled .nav a {
  color: #1f4b35;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.9rem;
}

.header.scrolled .nav a:hover {
  background: rgba(31, 75, 53, 0.12);
  color: #1f4b35;
}

/* =========================
   BOTÓN COMPRAR PRODUCTOS
========================= */
.products-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 20;
}

.btn-comprar {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 52px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.50rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #78b83f, #3f7d4b, #1f4b35);
  box-shadow:
    0 14px 32px rgba(31, 75, 53, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@keyframes greenAirParticles {
  0% {
    transform: translate(-20%, 10%) scale(1);
    background-position: 0% 50%;
    filter: saturate(1);
  }

  50% {
    transform: translate(18%, -8%) scale(1.12);
    background-position: 100% 50%;
    filter: saturate(1.55) brightness(1.15);
  }

  100% {
    transform: translate(-20%, 10%) scale(1);
    background-position: 0% 50%;
    filter: saturate(1);
  }
}

.btn-comprar::before {
  content: "";
  position: absolute;
  inset: -120%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.42), transparent 9%),
    radial-gradient(circle at 70% 20%, rgba(190,255,150,0.35), transparent 8%),
    radial-gradient(circle at 40% 75%, rgba(255,255,255,0.28), transparent 7%),
    radial-gradient(circle at 85% 70%, rgba(150,255,180,0.30), transparent 9%),
    linear-gradient(135deg, #9bd84f, #3f7d4b, #1f4b35);
  background-size: 220% 220%;
  animation: greenAirParticles 5s ease-in-out infinite;
  opacity: 0.95;
}

.btn-comprar span {
  position: relative;
  z-index: 1;
}

.btn-comprar:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 20px 45px rgba(31, 75, 53, 0.48),
    0 0 35px rgba(120, 184, 63, 0.38);
}

.btn-comprar:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.shipping-info {
  font-size: 0.9rem;
  color: #59675f;
  font-weight: 600;
}

@keyframes liquidButton {
  0%, 100% {
    transform: translateX(-55%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(55%) translateY(8%) scale(1.15);
  }
}

@media (max-width: 768px) {
  .products-cta {
    margin-top: 24px;
  }

  .btn-comprar {
    padding: 15px 28px;
    font-size: 0.86rem;
  }
}

.hero-logo-title {
  width: min(900px, 150vw);
  height: auto;
  display: block;
  object-fit: contain;
}

/* HERO LOGO PRINCIPAL */
.hero-content {
  padding-top: 0px;
  align-items: flex-start;
}

.hero-logo-title {
  width: min(900px, 78vw);
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 8px 8px rgba(0, 0, 0, 0.42))
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24));
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-title {
    width: min(520px, 125vw);
    transform: translateY(-190px);
  }
}

/* =========================
   SOCIAL VIDEOS ULTRA PREMIUM
========================= */
.social-videos-section {
  position: relative;
  z-index: 3;
  margin-top: 130px;
  padding: 0 5%;
}

.social-videos-section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto 0;
  height: 320px;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,128,100,0.22), transparent 32%),
    radial-gradient(circle at 80% 50%, rgba(63,125,75,0.24), transparent 34%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 34%);
  filter: blur(34px);
  pointer-events: none;
  z-index: -1;
}

.social-videos-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.social-videos-header span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #ffb27d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-videos-header h3 {
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.9;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-shadow:
    0 0 28px rgba(255,128,100,0.22),
    0 0 52px rgba(63,125,75,0.18);
}

.social-videos-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.premium-video-wall {
  display: grid;
  grid-template-columns: 0.85fr 1.18fr 0.85fr;
  align-items: center;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  perspective: 1500px;
}

.social-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background: #080808;
  border-radius: 38px;
  isolation: isolate;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.52),
    0 0 38px rgba(255,128,100,0.12),
    inset 0 1px 0 rgba(255,255,255,0.18);

  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
}

.social-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0f0d;

  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05) brightness(0.92);

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease;
}

.video-poster {
  display: none;
}

.main-video {
  height: 640px;
  z-index: 4;
  transform: translateZ(80px) scale(1);
}

.side-video {
  height: 500px;
  opacity: 0.72;
  filter: blur(0.2px);
  transform: translateZ(-70px) scale(0.94);
}

.side-video:first-child {
  transform: translateZ(-70px) rotateY(10deg) scale(0.94);
}

.side-video:last-child {
  transform: translateZ(-70px) rotateY(-10deg) scale(0.94);
}

.social-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.88) 100%),
    radial-gradient(circle at 50% 15%, rgba(255,255,255,0.18), transparent 35%);
  pointer-events: none;
}

.social-video-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 3;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.75),
      rgba(255,128,100,0.35),
      rgba(63,125,75,0.35),
      rgba(255,255,255,0.55)
    );
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.video-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 6;
  padding: 8px 13px;
  border-radius: 999px;

  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-info {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  z-index: 6;
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.video-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffb27d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-info h4 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.video-info p {
  max-height: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.45s ease;
}

/* HOVER PREMIUM */
.social-video-card:hover {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-18px) translateZ(120px) scale(1.08);
  z-index: 10;

  box-shadow:
    0 45px 120px rgba(0,0,0,0.68),
    0 0 45px rgba(255,255,255,0.22),
    0 0 75px rgba(255,128,100,0.26),
    0 0 95px rgba(63,125,75,0.22);
}

.social-video-card:hover video {
  transform: scale(1.14);
  filter: saturate(1.25) contrast(1.1) brightness(1.08);
}

.social-video-card:hover::before {
  opacity: 0.75;
}

.social-video-card:hover .video-info {
  transform: translateY(-10px);
}

.social-video-card:hover .video-info p {
  max-height: 90px;
  opacity: 1;
}

/* RESPONSIVE SOCIAL VIDEOS */
@media (max-width: 900px) {
  .social-videos-section {
    margin-top: 90px;
    padding: 0;
  }

  .premium-video-wall {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .main-video,
  .side-video,
  .side-video:first-child,
  .side-video:last-child {
    width: min(370px, 92vw);
    height: 540px;
    margin: 0 auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .social-video-card:hover {
    transform: translateY(-8px) scale(1.03);
  }
}

@media (max-width: 480px) {
  .main-video,
  .side-video,
  .side-video:first-child,
  .side-video:last-child {
    height: 500px;
    width: min(335px, 92vw);
  }

  .video-info {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
}

.main-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-account-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 20px;
  border-radius: 999px;

  text-decoration: none;
  color: #ffffff;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(255, 128, 100, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.instagram-account-link span {
  color: #ffb27d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.instagram-account-link strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.instagram-account-link:hover {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(255, 128, 100, 0.28),
    0 0 50px rgba(63, 125, 75, 0.20);
}

/* =========================
   PERFIL INSTAGRAM DEBAJO DEL VIDEO CENTRAL
========================= */
.main-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-profile-card {
  position: relative;
  margin-top: 24px;
  width: min(430px, 92vw);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;

  padding: 16px 18px;
  border-radius: 28px;

  text-decoration: none;
  color: #ffffff;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    radial-gradient(circle at 15% 20%, rgba(255,128,100,0.18), transparent 38%),
    radial-gradient(circle at 85% 80%, rgba(63,125,75,0.18), transparent 42%);

  border: 1px solid rgba(255,255,255,0.22);

  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);

  box-shadow:
    0 22px 55px rgba(0,0,0,0.35),
    0 0 38px rgba(255,128,100,0.16),
    inset 0 1px 0 rgba(255,255,255,0.28);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.instagram-profile-card::before {
  content: "";
  position: absolute;
  inset: -80%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.22), transparent 35%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.instagram-profile-card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(255,255,255,0.38);
  box-shadow:
    0 30px 75px rgba(0,0,0,0.48),
    0 0 46px rgba(255,128,100,0.26),
    0 0 55px rgba(63,125,75,0.20);
}

.instagram-profile-card:hover::before {
  opacity: 1;
  animation: profileLightMove 2.8s ease-in-out infinite;
}

.instagram-profile-photo {
  width: 64px;
  height: 64px;
  padding: 3px;
  border-radius: 50%;

  background:
    linear-gradient(135deg, #ff8064, #f28c38, #c66ca4, #725bdc);

  box-shadow:
    0 0 22px rgba(255,128,100,0.32);
}

.instagram-profile-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(10,10,10,0.85);
}

.instagram-profile-info {
  position: relative;
  z-index: 1;
}

.instagram-profile-info span {
  display: block;
  margin-bottom: 4px;
  color: #ffb27d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.instagram-profile-info strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.instagram-profile-info p {
  margin-top: 4px;
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
  line-height: 1.4;
}

.instagram-profile-stats {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.16);
}

.instagram-profile-stats strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
}

.instagram-profile-stats span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
}

@keyframes profileLightMove {
  0%, 100% {
    transform: translateX(-35%) translateY(0);
  }

  50% {
    transform: translateX(35%) translateY(10%);
  }
}

@media (max-width: 480px) {
  .instagram-profile-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 15px;
  }

  .instagram-profile-photo {
    width: 56px;
    height: 56px;
  }

  .instagram-profile-stats {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-left: 0;
    padding-top: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
  }
}


/* =========================
   REDES DE PRODUCTOS
========================= */
.product-social-links {
  width: min(680px, 92vw);
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 60;
}

.product-social-link {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  padding: 13px 18px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  gap: 13px;

  text-decoration: none;
  color: #1f4b35;

  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.12),
    0 0 26px rgba(255, 255, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.product-social-link::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 36%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-social-link:hover {
  transform: translateY(-7px) scale(1.035);
  background: rgba(255, 255, 255, 0.88);
}

.product-social-link:hover::before {
  opacity: 1;
  animation: productSocialLight 2.8s ease-in-out infinite;
}

.product-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    0 10px 24px rgba(0,0,0,0.18);
}

.product-social-icon svg {
  width: 23px;
  height: 23px;
  fill: #ffffff;
}

.product-social-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.product-social-text small {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.68;
}

.product-social-text strong {
  margin-top: 3px;
  font-size: 1.02rem;
  font-weight: 900;
}

.product-whatsapp .product-social-icon {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

.product-instagram .product-social-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.product-whatsapp:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.15),
    0 0 32px rgba(37, 211, 102, 0.24);
}

.product-instagram:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.15),
    0 0 32px rgba(221, 42, 123, 0.22),
    0 0 38px rgba(129, 52, 175, 0.16);
}

@keyframes productSocialLight {
  0%, 100% {
    transform: translateX(-35%) translateY(0);
  }

  50% {
    transform: translateX(35%) translateY(8%);
  }
}

@media (max-width: 768px) {
  .product-social-links {
    margin-top: 34px;
    flex-direction: column;
    gap: 14px;
  }

  .product-social-link {
    width: min(330px, 92vw);
    min-width: 0;
  }
}

/* =========================
   FOOTER FINAL PREMIUM
========================= */
.fancy-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 128, 100, 0.18), transparent 34%),
    radial-gradient(circle at 85% 40%, rgba(63, 125, 75, 0.22), transparent 36%),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  color: #ffffff;
  isolation: isolate;
}

.footer-glow {
  position: absolute;
  inset: -35%;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(242, 140, 56, 0.18), transparent 30%),
    radial-gradient(circle at 70% 45%, rgba(63, 125, 75, 0.20), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 34%);
  filter: blur(70px);
  animation: footerGlowMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 55px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-rating {
  position: relative;
  padding: 26px;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-contact p,
.footer-rating p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-rating h4 {
  margin-bottom: 18px;
  color: #ffb27d;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a,
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 999px;

  text-decoration: none;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;

  background:
    linear-gradient(135deg, rgba(63, 125, 75, 0.95), rgba(31, 75, 53, 0.95));

  box-shadow:
    0 14px 35px rgba(31, 75, 53, 0.30),
    0 0 22px rgba(63, 125, 75, 0.22);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.footer-socials a:hover,
.footer-whatsapp-btn:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, #f28c38, #3f7d4b);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(242, 140, 56, 0.25);
}

.footer-whatsapp-btn {
  margin-top: 20px;
}

.footer-rating .rating {
  margin-top: 18px;
}

.footer-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);

  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.footer-bottom span {
  color: rgba(255, 178, 125, 0.78);
  font-weight: 800;
}

.footer-text-bg {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 0.82;
  pointer-events: none;
  user-select: none;
  margin-top: 10px;
}

.footer-text-bg span {
  display: block;
  font-size: clamp(3.1rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  opacity: 0.75;
}

@keyframes footerGlowMove {
  from {
    transform: translateX(-3%) translateY(0) scale(1);
  }

  to {
    transform: translateX(3%) translateY(-2%) scale(1.08);
  }
}

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .fancy-footer {
    padding-top: 70px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-rating {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-text-bg span {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }
}



/* =========================
   FOOTER PREMIUM
========================= */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 120, 60, 0.18), transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(45, 180, 90, 0.16), transparent 35%),
    linear-gradient(135deg, #0b0f0d 0%, #111714 50%, #0a0f0d 100%);
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.footer-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 26px 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-title-brand {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffb16e;
  margin-bottom: 18px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.small-text {
  margin-bottom: 16px;
}

/* BOTONES REDES */
.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2f9d4a, #3ab95c);
  box-shadow:
    0 10px 24px rgba(50, 156, 79, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(50, 156, 79, 0.35),
    0 0 18px rgba(72, 230, 120, 0.18);
  filter: brightness(1.05);
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

/* NAVEGACIÓN */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* BOTÓN PEDIDO */
.footer-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #2b8c45, #48b865);
  box-shadow:
    0 12px 24px rgba(53, 165, 86, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-order-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(53, 165, 86, 0.35),
    0 0 18px rgba(72, 230, 120, 0.18);
}

/* BADGE DELIVERY */
.footer-delivery-badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(81, 193, 107, 0.12);
  border: 1px solid rgba(81, 193, 107, 0.22);
  color: #dff7e4;
  font-size: 0.96rem;
  font-weight: 700;
}

.delivery-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: #7bf09b;
}

.delivery-icon svg {
  width: 100%;
  height: 100%;
}

/* RATING */
.footer-rating {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-star {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 2.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-star:hover {
  color: #ffc36d;
  transform: scale(1.1);
}

/* FOOTER BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1200px;
  margin: 44px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
}

.footer-highlight {
  color: #ffb16e !important;
  font-weight: 700;
}

/* GLOWS */
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.footer-glow-1 {
  width: 340px;
  height: 340px;
  left: -80px;
  top: 20px;
  background: rgba(255, 107, 53, 0.22);
}

.footer-glow-2 {
  width: 320px;
  height: 320px;
  right: -60px;
  top: 30px;
  background: rgba(52, 210, 95, 0.18);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-title-brand {
    font-size: 1.6rem;
  }

  .footer-card-title {
    font-size: 1.25rem;
  }

  .footer-socials {
    flex-direction: column;
  }

  .footer-social-btn,
  .footer-order-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    gap: 12px;
  }
}

/* =========================================
   FOOTER SOCIALS - MÁS GRANDES Y SIN CONTORNO
========================================= */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  color: #fffaf2;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.035);
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer-social-label {
  line-height: 1;
  color: #fffaf2;
}

.footer-social-label--instagram {
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-icon--whatsapp {
  width: 44px;
  height: 44px;
  color: #25D366;
  filter:
    drop-shadow(0 0 8px rgba(37, 211, 102, 0.45))
    drop-shadow(0 0 18px rgba(37, 211, 102, 0.22));
}

.footer-icon--instagram {
  width: 44px;
  height: 44px;
  filter:
    drop-shadow(0 0 10px rgba(214, 41, 118, 0.30))
    drop-shadow(0 0 18px rgba(79, 91, 213, 0.22));
}

/* =========================================
   DELIVERY MÁS GRANDE
========================================= */
.footer-delivery-badge--premium {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.delivery-icon--large {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffb347;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 179, 71, 0.42))
    drop-shadow(0 0 22px rgba(255, 179, 71, 0.22));
}

.delivery-icon--large svg {
  width: 100%;
  height: 100%;
  display: block;
}

.delivery-text {
  color: #fffaf2;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* =========================================
   ESTRELLAS CON 5 PUNTITOS AMARILLOS
========================================= */
.rating {
  margin-top: 18px;
}

.rating__stars {
  gap: 7px;
  padding-bottom: 1.8em;
}

.rating__label {
  position: relative;
  padding: 0.15em;
}

.rating__star {
  width: 2.35em;
  height: 2.35em;
}

/* Quitamos las líneas para que visualmente se parezcan más a tu imagen */
.rating__star-line {
  display: none;
}

/* Color general amarillo */
.rating__star-ring,
.rating__star-fill,
.rating__star-stroke {
  stroke: #f5b425 !important;
}

.rating__star-fill {
  fill: #f5b425 !important;
}

.rating__star-stroke {
  stroke-width: 2.2;
}

/* 5 puntitos amarillos dentro de cada estrella */
.rating__label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -42%);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 0 5px rgba(245, 180, 37, 0.55));
  background:
    radial-gradient(circle, #f5b425 0 1.6px, transparent 2px) 50% 0 / 6px 6px no-repeat,
    radial-gradient(circle, #f5b425 0 1.6px, transparent 2px) 100% 36% / 6px 6px no-repeat,
    radial-gradient(circle, #f5b425 0 1.6px, transparent 2px) 78% 100% / 6px 6px no-repeat,
    radial-gradient(circle, #f5b425 0 1.6px, transparent 2px) 22% 100% / 6px 6px no-repeat,
    radial-gradient(circle, #f5b425 0 1.6px, transparent 2px) 0 36% / 6px 6px no-repeat;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.rating__label:hover::after {
  transform: translate(-50%, -42%) scale(1.08);
}

/* display de texto */
.rating__display {
  color: #ffb86b;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* un poco más de presencia al seleccionar */
.rating__input-1:checked ~ .rating__label:first-of-type::after,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2)::after,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3)::after,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4)::after,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5)::after {
  opacity: 1;
  transform: translate(-50%, -42%) scale(1.1);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .footer-socials {
    gap: 20px;
  }

  .footer-icon--whatsapp,
  .footer-icon--instagram {
    width: 40px;
    height: 40px;
  }

  .delivery-icon--large {
    width: 44px;
    height: 44px;
  }

  .delivery-text {
    font-size: 0.95rem;
  }

  .rating__star {
    width: 2.1em;
    height: 2.1em;
  }
}

/* =====================================================
   INSTAGRAM - BOTÓN MÁS DIFERENTE Y MÁS BONITO
===================================================== */
.footer-social-btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #8b6a2f 0%,
    #7d7d35 35%,
    #5b8b45 70%,
    #4ba35a 100%
  );
  box-shadow:
    0 10px 24px rgba(78, 127, 69, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.footer-social-btn--instagram:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 16px 34px rgba(78, 127, 69, 0.32),
    0 0 20px rgba(214, 41, 118, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.08);
}

.footer-icon--instagram {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon--instagram svg {
  width: 100%;
  height: 100%;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(214, 41, 118, 0.18))
    drop-shadow(0 0 14px rgba(79, 91, 213, 0.14));
}

.footer-social-label--instagram {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #ffb347 0%,
    #ff8a3d 20%,
    #ff4b7d 45%,
    #d94fff 70%,
    #7b61ff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


/* =====================================================
   ESTRELLAS - AJUSTE DE PUNTITOS
===================================================== */

/* contenedor */
.rating__stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* cada label */
.rating__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* tamaño estrella */
.rating__star {
  width: 2.45em;
  height: 2.45em;
}

/* color de la estrella */
.rating__star-stroke,
.rating__star-fill,
.rating__star-ring {
  stroke: #f5b425 !important;
}

.rating__star-fill {
  fill: transparent !important;
}

.rating__star-line {
  display: none;
}

/* puntitos internos bien centrados */
.rating__label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -44%);
  pointer-events: none;
  opacity: 0.98;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(circle, #f5b425 0 1.2px, transparent 1.4px),
    radial-gradient(circle, #f5b425 0 1.2px, transparent 1.4px),
    radial-gradient(circle, #f5b425 0 1.2px, transparent 1.4px),
    radial-gradient(circle, #f5b425 0 1.2px, transparent 1.4px),
    radial-gradient(circle, #f5b425 0 1.2px, transparent 1.4px);
  background-size: 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px;
  background-position:
    50% 0%,
    100% 34%,
    78% 100%,
    22% 100%,
    0% 34%;
  filter:
    drop-shadow(0 0 2px rgba(245, 180, 37, 0.45))
    drop-shadow(0 0 4px rgba(245, 180, 37, 0.2));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* leve reacción al hover */
.rating__label:hover::after {
  transform: translate(-50%, -44%) scale(1.08);
}

/* texto inferior */
.rating__display {
  margin-top: 12px;
  color: #ffb86b;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* responsive */
@media (max-width: 768px) {
  .footer-social-btn--instagram {
    padding: 12px 20px;
    gap: 12px;
  }

  .footer-icon--instagram {
    width: 30px;
    height: 30px;
  }

  .footer-social-label--instagram {
    font-size: 0.95rem;
  }

  .rating__star {
    width: 2.2em;
    height: 2.2em;
  }

  .rating__label::after {
    width: 12px;
    height: 12px;
    background-size: 3.5px 3.5px, 3.5px 3.5px, 3.5px 3.5px, 3.5px 3.5px, 3.5px 3.5px;
  }
}

/* =========================================
   CORRECCIÓN FINAL BOTÓN INSTAGRAM FOOTER
========================================= */
.footer-social-btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 999px;

  background:
    linear-gradient(135deg, #f28c38 0%, #b36b42 28%, #6f8f45 62%, #3f7d4b 100%);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.20),
    0 0 24px rgba(242, 140, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  border: none;
  text-decoration: none;
}

.footer-social-btn--instagram:hover {
  transform: translateY(-3px) scale(1.04);
  background:
    linear-gradient(135deg, #ff9b45 0%, #d86b62 34%, #9b4fc9 66%, #3f7d4b 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(214, 41, 118, 0.22);
}

.footer-icon--instagram {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icon--instagram svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-social-label--instagram {
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* =========================================
   CORRECCIÓN FINAL PUNTITOS ESTRELLAS
========================================= */
.rating__stars {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 1.8em;
}

.rating__label {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rating__star {
  width: 42px;
  height: 42px;
}

.rating__star-line {
  display: none !important;
}

.rating__star-stroke {
  stroke: #f5b425 !important;
  stroke-width: 2.2px !important;
}

.rating__star-fill {
  fill: transparent !important;
  stroke: #f5b425 !important;
}

.rating__star-ring {
  stroke: #f5b425 !important;
}

.rating__label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 15px;
  height: 15px;

  transform: translate(-50%, -43%);
  pointer-events: none;

  background-image:
    radial-gradient(circle, #f5b425 0 1.35px, transparent 1.55px),
    radial-gradient(circle, #f5b425 0 1.35px, transparent 1.55px),
    radial-gradient(circle, #f5b425 0 1.35px, transparent 1.55px),
    radial-gradient(circle, #f5b425 0 1.35px, transparent 1.55px),
    radial-gradient(circle, #f5b425 0 1.35px, transparent 1.55px);

  background-repeat: no-repeat;
  background-size:
    4px 4px,
    4px 4px,
    4px 4px,
    4px 4px,
    4px 4px;

  background-position:
    50% 0%,
    100% 37%,
    80% 100%,
    20% 100%,
    0% 37%;

  filter: drop-shadow(0 0 3px rgba(245, 180, 37, 0.45));
}

.rating__label:hover::after {
  transform: translate(-50%, -43%) scale(1.08);
}

.rating__input-1:checked ~ .rating__label:first-of-type::after,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2)::after,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3)::after,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4)::after,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5)::after {
  transform: translate(-50%, -43%) scale(1.12);
}

/* =====================================================
   FIX FINAL: ESTRELLAS GRISES + HOVER AMARILLO + PUNTITOS
   Mantiene la animación original
===================================================== */

/* Contenedor de estrellas */
.rating__stars {
  display: flex;
  position: relative;
  align-items: center;
  gap: 4px;
  padding-bottom: 1.7em;
}

/* Cada estrella */
.rating__label {
  position: relative;
  cursor: pointer;
  padding: 0.125em;
}

/* Tamaño original/limpio */
.rating__star {
  display: block;
  overflow: visible;
  pointer-events: none;
  width: 2em;
  height: 2em;
}

/* IMPORTANTE: volver a mostrar las líneas de la animación */
.rating__star-line {
  display: block !important;
  stroke: var(--yellow) !important;
  stroke-dasharray: 12 13;
  stroke-dashoffset: -13;
}

/* Círculo de explosión amarillo */
.rating__star-ring {
  stroke: var(--yellow) !important;
}

/* Relleno amarillo, pero oculto hasta seleccionar */
.rating__star-fill {
  fill: var(--yellow) !important;
  stroke: var(--yellow) !important;
  transform: scale(0);
}

/* Estado normal: estrella gris */
.rating__star-stroke {
  stroke: hsl(223, 10%, 36%) !important;
  stroke-width: 2px !important;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

/* Hover: estrellas anteriores y actual en amarillo */
.rating__input-1:hover ~ .rating__label:first-of-type .rating__star-stroke,
.rating__input-2:hover ~ .rating__label:nth-of-type(-n + 2) .rating__star-stroke,
.rating__input-3:hover ~ .rating__label:nth-of-type(-n + 3) .rating__star-stroke,
.rating__input-4:hover ~ .rating__label:nth-of-type(-n + 4) .rating__star-stroke,
.rating__input-5:hover ~ .rating__label:nth-of-type(-n + 5) .rating__star-stroke {
  stroke: var(--yellow) !important;
}

/* Seleccionadas: mantener animación original */
.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-ring,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-ring,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-ring,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-ring,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-ring {
  animation-name: starRing;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-stroke,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-stroke,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-stroke,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-stroke,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-stroke {
  animation-name: starStroke;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-line,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-line,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-line,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-line,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-line {
  animation-name: starLine;
}

.rating__input-1:checked ~ .rating__label:first-of-type .rating__star-fill,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2) .rating__star-fill,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3) .rating__star-fill,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4) .rating__star-fill,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5) .rating__star-fill {
  animation-name: starFill;
}

/* =========================
   PUNTITOS INTERNOS
========================= */

/* Puntos grises cuando la estrella está normal */
.rating__label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 14px;
  height: 14px;

  transform: translate(-50%, -43%);
  pointer-events: none;

  color: hsl(223, 10%, 36%);

  background-image:
    radial-gradient(circle, currentColor 0 1.25px, transparent 1.45px),
    radial-gradient(circle, currentColor 0 1.25px, transparent 1.45px),
    radial-gradient(circle, currentColor 0 1.25px, transparent 1.45px),
    radial-gradient(circle, currentColor 0 1.25px, transparent 1.45px),
    radial-gradient(circle, currentColor 0 1.25px, transparent 1.45px);

  background-repeat: no-repeat;

  background-size:
    4px 4px,
    4px 4px,
    4px 4px,
    4px 4px,
    4px 4px;

  background-position:
    50% 0%,
    100% 38%,
    78% 100%,
    22% 100%,
    0% 38%;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Puntos amarillos al pasar hover */
.rating__input-1:hover ~ .rating__label:first-of-type::after,
.rating__input-2:hover ~ .rating__label:nth-of-type(-n + 2)::after,
.rating__input-3:hover ~ .rating__label:nth-of-type(-n + 3)::after,
.rating__input-4:hover ~ .rating__label:nth-of-type(-n + 4)::after,
.rating__input-5:hover ~ .rating__label:nth-of-type(-n + 5)::after {
  color: var(--yellow);
  filter: drop-shadow(0 0 4px rgba(245, 180, 37, 0.55));
}

/* Puntos amarillos cuando quedan seleccionadas */
.rating__input-1:checked ~ .rating__label:first-of-type::after,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2)::after,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3)::after,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4)::after,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5)::after {
  color: var(--yellow);
  transform: translate(-50%, -43%) scale(1.08);
  filter: drop-shadow(0 0 5px rgba(245, 180, 37, 0.55));
}

/* Puntos vuelven a gris si no están seleccionados */
.rating__input:not(:checked) ~ .rating__label::after {
  color: hsl(223, 10%, 36%);
}

/* Texto inferior */
.rating__display {
  color: #ffb16e;
  font-weight: 800;
}

/* =========================================
   AJUSTE FINAL: PUNTITOS MÁS PEQUEÑOS
========================================= */
.rating__label::after {
  width: 12px;
  height: 12px;

  transform: translate(-50%, -43%);

  background-image:
    radial-gradient(circle, currentColor 0 1px, transparent 1.15px),
    radial-gradient(circle, currentColor 0 1px, transparent 1.15px),
    radial-gradient(circle, currentColor 0 1px, transparent 1.15px),
    radial-gradient(circle, currentColor 0 1px, transparent 1.15px),
    radial-gradient(circle, currentColor 0 1px, transparent 1.15px);

  background-size:
    3.4px 3.4px,
    3.4px 3.4px,
    3.4px 3.4px,
    3.4px 3.4px,
    3.4px 3.4px;

  background-position:
    50% 0%,
    92% 36%,
    75% 92%,
    25% 92%,
    8% 36%;
}

.rating__label:hover::after {
  transform: translate(-50%, -43%) scale(1.04);
}

.rating__input-1:checked ~ .rating__label:first-of-type::after,
.rating__input-2:checked ~ .rating__label:nth-of-type(-n + 2)::after,
.rating__input-3:checked ~ .rating__label:nth-of-type(-n + 3)::after,
.rating__input-4:checked ~ .rating__label:nth-of-type(-n + 4)::after,
.rating__input-5:checked ~ .rating__label:nth-of-type(-n + 5)::after {
  transform: translate(-50%, -43%) scale(1.04);
}

/* =========================================
   BOTÓN INSTAGRAM FOOTER - COLOR PREMIUM
========================================= */
.footer-social-btn--instagram {
  background:
    linear-gradient(135deg,
      #feda75 0%,
      #fa7e1e 22%,
      #d62976 48%,
      #962fbf 72%,
      #4f5bd5 100%
    ) !important;

  color: #ffffff !important;
  border: none !important;

  box-shadow:
    0 16px 34px rgba(214, 41, 118, 0.28),
    0 0 26px rgba(150, 47, 191, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.footer-social-btn--instagram:hover {
  transform: translateY(-4px) scale(1.04);
  background:
    linear-gradient(135deg,
      #ffdf8a 0%,
      #ff8a2a 20%,
      #e03584 48%,
      #a341d0 72%,
      #5f6cff 100%
    ) !important;

  box-shadow:
    0 20px 44px rgba(214, 41, 118, 0.38),
    0 0 34px rgba(150, 47, 191, 0.30),
    0 0 44px rgba(79, 91, 213, 0.20) !important;
}

.footer-social-btn--instagram .footer-social-label,
.footer-social-label--instagram {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.footer-icon--instagram {
  color: #ffffff !important;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.30))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.18));
}

.brand-showcase-header {
  position: relative;
  z-index: 2;
  width: min(900px, 90vw);
  margin: 0 auto 42px;
  text-align: center;
}

.brand-showcase-header span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(242, 140, 56, 0.12);
  color: #bd6220;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-showcase-header h2 {
  color: #1f4b35;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}









/*========================================================*/

/* =====================================================
   FIX RESPONSIVE GENERAL - KEFIR DEL VALLE
   Pegar al final del archivo
===================================================== */

/* Evita desbordes horizontales raros */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

/* HEADER / MENÚ RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 14px 0;
  }

  .nav-container {
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .logo-image img {
    height: 34px;
  }

  .menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1200;
  }

  .nav {
    position: absolute !important;
    top: 64px;
    right: 0;
    width: min(300px, 92vw);
    padding: 16px;
    border-radius: 26px;

    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.96);
    transition: 0.28s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    color: #1f4b35 !important;
    text-align: center;
    padding: 13px 16px;
    font-weight: 800;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* HERO EN CELULAR */
@media (max-width: 768px) {
  .hero {
    min-height: 650px;
    height: 100svh;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    padding-top: 150px;
    align-items: flex-start;
  }

  .hero-logo-title {
    width: min(390px, 90vw);
    height: auto;
    transform: translateX(0) !important;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 145px;
  }

  .hero-logo-title {
    width: min(340px, 88vw);
  }
}

/* PRODUCTOS RESPONSIVE */
@media (max-width: 768px) {
  .about-preview {
    padding: 80px 0 45px;
  }

  .products-carousel-section {
    padding: 70px 0 95px;
  }

  .products-header {
    margin-bottom: 38px;
  }

  .products-header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.95;
  }

  .product-slider {
    min-height: 520px;
    overflow: visible;
  }

  .slider-stage {
    width: 100%;
    height: 470px;
  }

  .product-card {
    width: min(315px, 84vw);
    height: 450px;
  }

  .product-card.active {
    transform: translateX(-50%) translateZ(60px) rotateY(0deg) scale(1);
  }

  .product-card.prev {
    opacity: 0.24;
    filter: blur(2px) brightness(0.78);
    transform: translateX(-74%) translateZ(-120px) rotateY(20deg) scale(0.66);
  }

  .product-card.next {
    opacity: 0.24;
    filter: blur(2px) brightness(0.78);
    transform: translateX(-26%) translateZ(-120px) rotateY(-20deg) scale(0.66);
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 2.1rem;
  }

  .products-cta {
    margin-top: 20px;
  }

  .btn-comprar {
    width: min(330px, 92vw);
    justify-content: center;
  }

  .product-social-links {
    width: min(340px, 92vw);
    margin: 36px auto -12px;
    flex-direction: column;
    gap: 14px;
  }

  .product-social-link {
    width: 100%;
    min-width: 0;
  }
}

/* CONSUMO Y BENEFICIOS EN CELULAR */
@media (max-width: 768px) {
  .consumo-section {
    padding: 85px 0 95px;
  }

  .consumo-intro {
    margin-bottom: 44px;
  }

  .consumo-intro h2 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .consumo-info-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .consumo-info-grid article {
    min-height: auto;
    padding: 28px 22px;
  }

  .consumo-info-grid article:hover {
    min-height: auto;
    transform: translateY(-4px) scale(1.01);
  }

  .consumo-info-grid article::after {
    position: relative;
    display: block;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    opacity: 1;
    transform: none;
    text-align: center;
  }

  .benefits-block {
    margin-top: 80px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/* VIDEOS SOCIALES RESPONSIVE */
@media (max-width: 900px) {
  .social-videos-section {
    margin-top: 90px;
    padding: 0 4%;
  }

  .premium-video-wall {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }

  .main-video-wrap {
    width: min(370px, 92vw);
    margin: 0 auto;
  }

  .main-video,
  .side-video,
  .side-video:first-child,
  .side-video:last-child {
    width: min(370px, 92vw);
    height: 520px;
    margin: 0 auto;
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .social-video-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
  }

  .instagram-profile-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .main-video,
  .side-video,
  .side-video:first-child,
  .side-video:last-child {
    width: min(335px, 92vw);
    height: 490px;
  }
}

/* BRAND SHOWCASE RESPONSIVE */
@media (max-width: 768px) {
  .brand-showcase {
    padding: 70px 0;
  }

  .brand-showcase-header {
    margin-bottom: 28px;
  }

  .brand-showcase-header h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .brand-showcase-inner {
    width: min(94vw, 520px);
    border-radius: 24px;
  }

  .brand-showcase-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* FOOTER RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 64px 0 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .footer-card {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-title-brand {
    font-size: 1.45rem;
  }

  .footer-card-title {
    font-size: 1.15rem;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-social-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-delivery-badge--premium {
    justify-content: center;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* =========================================
   FIX RESPONSIVE BRAND SHOWCASE / IM11
========================================= */
.brand-showcase {
  position: relative;
  width: 100%;
  padding: 90px 0;
  overflow: hidden;
}

.brand-showcase-header {
  width: min(900px, 90vw);
  margin: 0 auto 42px;
  text-align: center;
}

.brand-showcase-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
}

.brand-showcase-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* TABLET */
@media (max-width: 900px) {
  .brand-showcase {
    padding: 75px 0;
  }

  .brand-showcase-header {
    width: min(92vw, 680px);
    margin-bottom: 32px;
  }

  .brand-showcase-inner {
    width: 94vw;
    border-radius: 26px;
  }

  .brand-showcase-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* CELULAR */
@media (max-width: 600px) {
  .brand-showcase {
    padding: 58px 0;
  }

  .brand-showcase-header {
    width: min(92vw, 420px);
    margin-bottom: 24px;
  }

  .brand-showcase-header span {
    font-size: 0.68rem;
    padding: 8px 14px;
  }

  .brand-showcase-header h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .brand-showcase-inner {
    width: 92vw;
    border-radius: 22px;
  }

  .brand-showcase-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}


/* =====================================================
   FIX DEFINITIVO: QUITAR LÍNEA DOBLE EN CONSUMO MÓVIL
   La línea salía porque consumo-section::before tenía height fijo
===================================================== */

@media (max-width: 768px) {
  .consumo-section::before {
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;

    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.24) 0%,
        rgba(5, 5, 5, 0.34) 45%,
        rgba(5, 5, 5, 0.42) 100%
      ),
      radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 55%),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px) !important;

    background-size:
      100% 100%,
      100% 100%,
      48px 48px,
      48px 48px !important;
  }

  .consumo-section::after {
    inset: -40% !important;
    height: auto !important;
    min-height: 140% !important;
  }

  .consumo-container {
    position: relative;
    z-index: 2 !important;
  }
}


/*h1 onlyu*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* =========================
   OPTIMIZACIÓN MÓVIL
   Reduce el costo de backdrop-filter y blurs grandes
   en pantallas táctiles para mantener 60fps en scroll.
   El look "cristal" se preserva con fondos más opacos.
========================= */
@media (max-width: 900px) {

  .header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav a {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .video-badge {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .social-videos-header span {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .instagram-profile-card,
  .product-social-link,
  .footer-card,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-rating {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .instagram-profile-card,
  .product-social-link {
    background: rgba(255, 255, 255, 0.92);
  }

  .footer-card,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-rating {
    background: rgba(255, 255, 255, 0.10);
  }

  .footer-glow {
    filter: blur(18px);
  }

  .consumo-section::after {
    display: none !important;
  }

  .consumo-section::before {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.18), rgba(5,5,5,0.62)),
      radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 55%);
    background-size: 100% 100%;
  }

  .social-videos-section::before {
    display: none !important;
  }

  .scroll-video {
    will-change: auto;
    background: #0a0f0d;
  }

  .consumo-section *,
  .consumo-section *::before,
  .consumo-section *::after,
  .site-footer *,
  .site-footer *::before,
  .site-footer *::after,
  .about-bg,
  .about-bg *,
  .nav a::before,
  .footer-glow,
  .scroll-video {
    animation: none !important;
  }

  .footer-glow {
    display: none !important;
  }

  .about-squares {
    display: none !important;
  }

  .hero-bg,
  .hero-overlay {
    will-change: auto;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  .slider-btn,
  .product-card,
  .menu-toggle,
  .nav a,
  .btn-comprar,
  .product-social-link,
  .footer-social-btn,
  .footer-order-btn,
  .back-link,
  .product-whatsapp,
  .social-video-card,
  .instagram-profile-card,
  .rating__label {
    touch-action: manipulation;
  }

  .product-slider {
    perspective: none;
    min-height: 520px;
  }

  .slider-stage {
    transform-style: flat;
    height: 480px;
  }

  .product-card {
    transform-style: flat;
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.45),
      0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .product-card img {
    transform: none;
  }

  .product-card-content {
    transform: none;
  }

  .product-card.active {
    transform: translateX(-50%) scale(1);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.85),
      0 22px 50px rgba(0, 0, 0, 0.3);
  }

  .product-card.prev {
    transform: translateX(-92%) scale(0.7);
    filter: brightness(0.7);
    opacity: 0.35;
  }

  .product-card.next {
    transform: translateX(-8%) scale(0.7);
    filter: brightness(0.7);
    opacity: 0.35;
  }

  .product-card.hidden-card {
    transform: translateX(-50%) scale(0.55);
    filter: none;
    opacity: 0;
  }

  .reveal-zoom {
    transform: translateY(20px);
    filter: none;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .reveal-zoom.is-visible {
    transform: translateY(0);
    filter: none;
  }

  .consumo-info-grid article::before {
    display: none !important;
  }

  .consumo-info-grid article {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  /* === Doble-tap zoom: eliminado de raíz === */
  html,
  body,
  body * {
    touch-action: manipulation;
  }

  /* === Videos reemplazados por imágenes poster en móvil === */
  .scroll-video {
    display: none !important;
  }

  .video-poster {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .social-video-card {
    background: #0a0f0d;
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .social-video-card::before {
    display: none !important;
  }

  .social-video-card::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
  }

  .side-video,
  .main-video {
    filter: none;
    opacity: 1;
    transform: none !important;
  }

  .social-video-card .play-icon-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    z-index: 5;
    display: grid;
    place-items: center;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.45),
      0 0 0 8px rgba(255, 255, 255, 0.18);
    pointer-events: none;
  }

  .social-video-card .play-icon-mobile::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #1a1a1a;
    margin-left: 4px;
  }

  /* === Eliminar todos los backdrop-filter restantes en móvil === */
  *,
  *::before,
  *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* === Reducir transiciones costosas (box-shadow, filter) === */
  .product-card,
  .consumo-info-grid article,
  .social-video-card,
  .product-social-link,
  .footer-card,
  .instagram-profile-card {
    transition-property: transform, opacity !important;
  }

  /* === Cap de blurs grandes para móvil === */
  .hero-bg,
  .hero-overlay,
  .about-bg,
  .brand-showcase-inner {
    filter: none !important;
  }

  /* === Aceleración de imágenes === */
  img {
    image-rendering: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
