/* ============================================================
   Comedogs · Colitas del Distrito
   Landing page styles
   ============================================================ */

:root {
  /* Paleta base — light mode cálido */
  --c-bg:        #ffe0e9;   /* rosa pálido principal */
  --c-bg-2:      #fff5fa;   /* off-white para secciones alternas */
  --c-card:      #fff5fa;   /* fondo de tarjetas */
  --c-ink:       #2a2a2a;   /* texto principal */
  --c-ink-soft:  #555557;   /* texto secundario */
  --c-ink-mute:  #8a8a8d;   /* texto apagado */
  --c-line:      rgba(42,42,42,.08); /* bordes suaves */

  /* Acentos vibrantes (del logo y la publicación) */
  --c-lime:      #cfff0a;   /* verde lima neón */
  --c-lime-2:    #b8eb00;
  --c-magenta:   #ee00a3;   /* fucsia de marca */
  --c-magenta-2: #ff3eb5;
  --c-red:       #ff3b6a;   /* rojo del logo (acento cálido) */
  --c-red-2:     #ff5b85;
  --c-pink:      #ffd1e6;   /* rosa suave de las publicaciones */
  --c-pink-2:    #ff8fc5;
  --c-wa:        #25d366;   /* verde WhatsApp oficial */
  --c-wa-2:      #20bd5a;

  /* Tipografía */
  --f-display: "Nunito", "Quicksand", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body:    "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-1: 0 4px 18px rgba(238,0,163,.08);
  --shadow-2: 0 24px 60px rgba(238,0,163,.18);
  --shadow-3: 0 12px 36px rgba(207,255,10,.35);

  --t-fast: .25s cubic-bezier(.2,.7,.2,1);
  --t-med:  .5s  cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--c-magenta); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,224,233,.72);
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast), padding var(--t-fast);
  will-change: backdrop-filter, background-color;
}
.nav.is-stuck {
  background: rgba(255,245,250,.92);
  border-bottom-color: rgba(238,0,163,.12);
  padding-top: 10px; padding-bottom: 10px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  display: inline-block;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow:
    0 0 0 2px var(--c-lime),
    0 0 0 5px var(--c-magenta),
    0 6px 18px rgba(238,0,163,.25);
  transition: transform var(--t-fast);
}
.nav__logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nav__brand:hover .nav__logo { transform: rotate(-6deg) scale(1.05); }
.nav__name { display: flex; flex-direction: column; line-height: 1.05; }
.nav__name strong { font-weight: 900; font-size: 1.05rem; color: var(--c-ink); }
.nav__name small { color: var(--c-ink-mute); font-size: .72rem; letter-spacing: .04em; }

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-weight: 700; font-size: .95rem;
  color: var(--c-ink-soft);
  position: relative; padding: 6px 0;
  transition: color var(--t-fast);
}
.nav__links a::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-magenta);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.nav__links a:hover { color: var(--c-magenta); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; background: transparent; border: 0; padding: 6px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--c-ink);
  margin: 5px 0; transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--c-magenta);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800; font-size: .95rem;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(238,0,163,.35); }
.btn--primary { --bg: var(--c-magenta); --fg: #fff; }
.btn--primary:hover { --bg: var(--c-magenta-2); }

.btn--lime { --bg: var(--c-lime); --fg: var(--c-ink); }
.btn--lime:hover { --bg: var(--c-lime-2); box-shadow: 0 10px 30px rgba(207,255,10,.5); }

.btn--wa { --bg: var(--c-wa); --fg: #fff; }
.btn--wa:hover { --bg: var(--c-wa-2); box-shadow: 0 10px 30px rgba(37,211,102,.45); }

.btn--ghost {
  --bg: #fff;
  --fg: var(--c-magenta);
  border-color: var(--c-magenta);
  font-weight: 800;
}
.btn--ghost:hover { background: var(--c-magenta); border-color: var(--c-magenta); color: #fff; box-shadow: 0 10px 30px rgba(238,0,163,.35); }

.btn__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-wa); box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* WhatsApp icon chip — used inside CTA buttons */
.wa-ic {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}
.wa-ic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn--wa { gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px clamp(16px, 4vw, 48px) 80px;
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-bg);
}

.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at top, #ffd6e3 0%, var(--c-bg) 60%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  opacity: .35; mix-blend-mode: multiply;
  animation: drift 18s ease-in-out infinite alternate;
}
.blob--lime    { width: 480px; height: 480px; background: var(--c-lime);    top: -120px; left: -120px; opacity: .5; }
.blob--magenta { width: 520px; height: 520px; background: var(--c-magenta); top: 20%;    right: -160px; animation-delay: -4s; opacity: .25; }
.blob--red     { width: 380px; height: 380px; background: var(--c-pink-2);  bottom: -100px; left: 30%;   animation-delay: -8s; opacity: .35; }
@keyframes drift {
  0%   { transform: translate(0,0)    scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.08); }
  100% { transform: translate(-30px,40px) scale(.95); }
}
.grain { display: none; }
.paws { position: absolute; inset: 0; pointer-events: none; opacity: 0; }

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.hero__copy { max-width: 620px; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1.5px solid var(--c-magenta);
  font-size: .85rem; font-weight: 700;
  color: var(--c-magenta);
  box-shadow: 0 4px 14px rgba(238,0,163,.18);
}
.chip__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-magenta);
  box-shadow: 0 0 0 3px rgba(238,0,163,.25);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 22px 0 18px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; will-change: transform; }
.accent { font-style: italic; }
.accent--lime {
  color: var(--c-ink);
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, var(--c-lime) 60%);
  padding: 0 .12em;
}

.hero__lede {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  color: var(--c-ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
  font-weight: 500;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  border-top: 1.5px dashed rgba(238,0,163,.25);
  padding-top: 22px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--c-magenta);
  line-height: 1;
}
.hero__stats span { color: var(--c-ink-mute); font-size: .85rem; margin-top: 4px; font-weight: 600; }

/* Hero media */
.hero__media {
  position: relative;
  display: grid; place-items: center;
  min-height: 380px;
}
.logo-frame {
  position: relative;
  width: min(520px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
  display: grid; place-items: center;
  isolation: isolate;
}
.logo-frame__glow {
  position: absolute; inset: -10%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--c-magenta), var(--c-lime), var(--c-magenta));
  filter: blur(40px);
  opacity: .4;
  animation: spin 14s linear infinite;
  z-index: -2;
}
.logo-frame__ring {
  position: absolute; inset: -4%;
  border-radius: 50%;
  border: 3px dashed rgba(238,0,163,.4);
  animation: spin 30s linear infinite reverse;
  z-index: -1;
}
.logo-frame img {
  width: 92%; height: 92%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 18px 50px rgba(238,0,163,.25);
  will-change: transform;
}
@keyframes spin { to { transform: rotate(360deg); } }

.badge {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-weight: 800; font-size: .88rem;
  letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(238,0,163,.2);
  z-index: 2;
  white-space: nowrap;
  border: 2px solid #fff;
  will-change: transform;
}
.badge img {
  width: 22px; height: 22px;
  object-fit: contain;
  display: block;
  /* the source PNGs have transparent bg, keep them as-is */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
.badge--magenta { background: var(--c-magenta); color: #fff;       top: 2%;  left: -6%;  transform: rotate(-7deg); }
.badge--lime    { background: var(--c-lime);    color: var(--c-ink); top: 28%; right: -8%; transform: rotate(5deg); }
.badge--red     { background: var(--c-red);     color: #fff;         bottom: 22%; left: -10%; transform: rotate(-4deg); }
.badge--pink    { background: var(--c-pink);    color: var(--c-magenta); bottom: 2%; right: -4%;  transform: rotate(8deg); }
.badge {
  box-shadow:
    0 1px 0 rgba(0,0,0,.08),
    0 6px 16px rgba(0,0,0,.15);
}

/* Hero collage stickers: dog, since-date, WhatsApp */
.hero__sticker {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 2px solid var(--c-ink);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  animation: bobble 3s ease-in-out infinite;
}
.hero__sticker--since {
  top: -2%;
  right: 4%;
  padding: 10px 16px;
  border-radius: var(--r-md);
  text-align: center;
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-magenta);
  transform: rotate(6deg);
  font-family: var(--f-display);
  line-height: 1;
}
.hero__sticker--since span { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; opacity: .8; }
.hero__sticker--since strong { display: block; font-size: 1.6rem; font-weight: 900; margin: 2px 0; color: var(--c-lime); }
.hero__sticker--since small { display: block; font-size: .7rem; font-weight: 600; opacity: .8; }

/* Scroll hint */
.hero__scroll {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-magenta); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 700;
  animation: bobble 2.4s ease-in-out infinite;
}
.hero__scroll span {
  display: block; width: 1px; height: 30px;
  background: linear-gradient(to bottom, transparent, var(--c-magenta));
}
@keyframes bobble { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) clamp(16px, 4vw, 48px);
}
.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.section__head--center { text-align: center; }
.section__head--center .eyebrow { display: inline-block; }

.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 14px;
}
.section__lede {
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin: 18px auto 0;
  font-weight: 500;
  font-size: 1.05rem;
}

.section__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.section__title em { font-style: italic; color: var(--c-magenta); }
.section__title span { display: block; overflow: hidden; }
.section__title span > span { display: inline-block; }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.section--who { background: var(--c-bg-2); }

.who {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who__card {
  position: relative;
  padding: 30px 28px 32px;
  background: #fff;
  border: 1.5px solid rgba(238,0,163,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 6px 20px rgba(238,0,163,.05);
  will-change: transform;
}
.who__card:hover { transform: translateY(-6px); border-color: var(--c-magenta); box-shadow: 0 16px 40px rgba(238,0,163,.15); }
.who__card::after {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(238,0,163,.12), transparent 50%);
  opacity: 0; transition: opacity var(--t-med);
  pointer-events: none;
}
.who__card:hover::after { opacity: 1; }
.who__mark {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2.4rem; line-height: 1;
  color: rgba(238,0,163,.12);
}
.who__card h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.55rem; margin: 0 0 12px;
  letter-spacing: -.01em;
}
.who__card p { color: var(--c-ink-soft); margin: 0 0 12px; font-weight: 500; }
.who__card strong { color: var(--c-magenta); }
.who__card em { color: var(--c-magenta); font-style: normal; font-weight: 800; }
.who__card--story h3 { color: var(--c-magenta); }
.who__card--where h3 { color: var(--c-magenta); }
.who__card--why   h3 { color: var(--c-magenta); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tags li {
  font-size: .78rem; font-weight: 700;
  padding: 6px 10px;
  background: var(--c-bg);
  border: 1.5px solid rgba(238,0,163,.2);
  border-radius: 999px;
  color: var(--c-magenta);
}

/* ============================================================
   MISIÓN / PILLARS
   ============================================================ */
.mission {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.mission__lede { color: var(--c-ink-soft); max-width: 36ch; font-weight: 500; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pillar {
  position: relative;
  padding: 32px 28px 36px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1.5px solid var(--c-line);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 4px 18px rgba(238,0,163,.04);
  will-change: transform;
}
.pillar::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--c), transparent 60%);
  opacity: .08; z-index: -1;
}
.pillar::after {
  content:""; position: absolute; top: -50%; right: -30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--c);
  filter: blur(80px); opacity: .25;
  z-index: -1;
  transition: opacity var(--t-med);
}
.pillar:hover { transform: translateY(-6px); border-color: var(--c); box-shadow: 0 16px 40px rgba(238,0,163,.15); }
.pillar:hover::after { opacity: .45; }

.pillar--lime    { --c: var(--c-lime); }
.pillar--magenta { --c: var(--c-magenta); }
.pillar--red     { --c: var(--c-red); }
.pillar--pink    { --c: var(--c-pink-2); }

.pillar__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: #fff;
  border: 1.5px solid var(--c);
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(238,0,163,.1);
}
.pillar__icon img {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
}
.pillar h3 {
  font-family: var(--f-display);
  font-weight: 900; font-size: 1.55rem;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  color: var(--c-magenta);
}
.pillar p { color: var(--c-ink-soft); margin: 0; font-weight: 500; }
.pillar__meta {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 14px;
  background: var(--c-bg);
  border: 1.5px dashed rgba(238,0,163,.35);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-magenta);
}
.pillar__meta strong {
  color: var(--c-ink);
  font-weight: 800;
}

/* ============================================================
   PRODUCTOS
   ============================================================ */
.section--productos { background: var(--c-bg); }

.products {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 6px 20px rgba(238,0,163,.05);
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--c-magenta);
  box-shadow: 0 18px 40px rgba(238,0,163,.18);
}

.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ffd1e6 0%, #ffe0e9 60%, #fff5fa 100%);
}
.product__media--arroz     { background: linear-gradient(135deg, #ffb8d6 0%, #ffd1e6 100%); }
.product__media--mugs      { background: linear-gradient(135deg, #ffe0e9 0%, #fff5fa 100%); }
.product__media--medias    { background: linear-gradient(135deg, #fff5fa 0%, #ffe0e9 100%); }
.product__media--plaquitas { background: linear-gradient(135deg, #ffe0e9 0%, #ffc8d8 100%); }

.product__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--t-med);
}
.product:hover .product__media img { transform: scale(1.04); }

.product__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--c-magenta);
  color: #fff;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(238,0,163,.4);
}
.product:nth-child(2) .product__tag { background: var(--c-ink); box-shadow: 0 4px 12px rgba(42,42,42,.3); }
.product:nth-child(3) .product__tag { background: var(--c-magenta); }
.product:nth-child(4) .product__tag { background: var(--c-red); box-shadow: 0 4px 12px rgba(225,29,72,.35); }

.product__chip {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  background: #fff;
  border: 2px solid var(--c-ink);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  text-align: center;
  font-family: var(--f-display);
}
.product__chip--date {
  bottom: 14px; right: 14px;
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-lime);
  transform: rotate(4deg);
  line-height: 1;
}
.product__chip--date strong { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.product__chip--date span { display: block; font-size: .92rem; font-weight: 900; margin-top: 3px; color: var(--c-lime); }

.product__chip--stock {
  bottom: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-ink);
  border-color: var(--c-magenta);
  transform: rotate(-4deg);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product__chip--stock strong { font-weight: 800; }
.product__chip--stock.chip--alt { border-color: var(--c-ink); background: var(--c-lime); color: var(--c-ink); transform: rotate(3deg); }

.product__body {
  padding: 24px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.product__body h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--c-ink);
  margin: 0;
  letter-spacing: -.01em;
}
.product__desc {
  color: var(--c-ink-soft);
  font-weight: 500;
  margin: 0;
  font-size: .96rem;
}
.product__meta {
  display: flex; flex-direction: column; gap: 4px;
  margin: 4px 0 10px;
  padding: 12px 14px;
  background: var(--c-bg);
  border-radius: var(--r-md);
}
.product__price {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--c-magenta);
  letter-spacing: -.01em;
}
.product__price small {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .82rem;
  color: var(--c-ink-mute);
  letter-spacing: 0;
}
.product__note {
  font-size: .82rem;
  color: var(--c-ink-mute);
  font-weight: 600;
}
.product__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 13px 18px;
  font-size: .92rem;
}

.products__footnote {
  max-width: var(--maxw);
  margin: 36px auto 0;
  text-align: center;
  color: var(--c-ink-soft);
  font-weight: 500;
  font-size: 1rem;
}
.products__footnote a {
  color: var(--c-magenta);
  font-weight: 800;
  border-bottom: 1.5px dashed currentColor;
}
.products__footnote a:hover { color: var(--c-magenta-2); }

/* ---- Producto: galerías de fotos (mugs / medias / plaquitas) ---- */
.product__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 84%;
  height: 78%;
  align-self: center;
}
.product__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow:
    0 6px 14px rgba(0,0,0,.12),
    0 2px 4px rgba(238,0,163,.18);
  background: #fff;
}

/* Stack gallery: 3 photos stacked vertically, each taking equal space */
.product__gallery--stack {
  display: flex;
  flex-direction: column;
  width: 84%;
  height: 82%;
  align-self: center;
  gap: 6px;
}
.product__gallery--stack img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  object-fit: cover;
}

/* Single photo gallery: fill the card, anchor subject on the left */
.product__gallery--single {
  width: 100%;
  height: 100%;
  align-self: center;
  overflow: hidden;
  border-radius: 14px;
}
.product__gallery--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* ============================================================
   RESCATADITOS
   ============================================================ */
.section--rescataditos { background: var(--c-bg-2); }

.rescatadita {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 2px solid var(--c-magenta);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 18px 50px rgba(238,0,163,.15);
  position: relative;
  overflow: hidden;
  transform: rotate(-0.4deg);
}
.rescatadita::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 320px; height: 320px;
  background: var(--c-magenta);
  border-radius: 50%;
  filter: blur(80px); opacity: .25;
  pointer-events: none;
}
.rescatadita__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(238,0,163,.2);
  border: 3px solid #fff;
  transform: rotate(3deg);
}
.rescatadita__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rescatadita__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--c-ink);
  color: #fff;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(42,42,42,.25);
}
.rescatadita__heart {
  position: absolute; top: 14px; right: 14px;
  font-size: 1.6rem;
  color: var(--c-magenta);
  filter: drop-shadow(0 4px 8px rgba(238,0,163,.5));
  animation: bobble 2.4s ease-in-out infinite;
}

.rescatadita__body { position: relative; z-index: 1; }
.rescatadita__body h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin: 0 0 12px;
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.rescatadita__desc {
  color: var(--c-ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 18px;
  font-weight: 500;
}
.rescatadita__facts {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.rescatadita__facts li {
  display: flex; flex-direction: column;
  padding: 10px 14px;
  background: var(--c-bg);
  border: 1.5px dashed rgba(238,0,163,.3);
  border-radius: var(--r-md);
  font-family: var(--f-body);
}
.rescatadita__facts span { font-size: .72rem; font-weight: 700; color: var(--c-magenta); letter-spacing: .12em; text-transform: uppercase; }
.rescatadita__facts strong { font-size: .98rem; font-weight: 800; color: var(--c-ink); margin-top: 2px; }
.rescatadita__cta { display: inline-flex; }
.rescatadita__more {
  margin: 14px 0 0;
  color: var(--c-ink-soft);
  font-size: .92rem;
  font-weight: 500;
}
.rescatadita__more a {
  color: var(--c-magenta);
  font-weight: 800;
  border-bottom: 1.5px dashed currentColor;
}

@media (max-width: 720px) {
  .rescatadita { grid-template-columns: 1fr; gap: 24px; padding: 24px; text-align: center; }
  .rescatadita__media { max-width: 280px; margin: 0 auto; }
  .rescatadita__facts { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.section--faq { background: var(--c-bg); }

.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
}
.faq .section__title {
  text-align: center;
  margin-bottom: 36px;
}
.faq .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item:hover { border-color: rgba(238,0,163,.35); }
.faq__item[open] {
  border-color: var(--c-magenta);
  box-shadow: 0 6px 20px rgba(238,0,163,.10);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__chev {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(238,0,163,.12);
  color: var(--c-magenta);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq__item[open] .faq__chev {
  transform: rotate(45deg);
  background: var(--c-magenta);
  color: #fff;
}

.faq__item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--c-ink-soft);
  font-size: .98rem;
  line-height: 1.6;
  /* Animated reveal: JS toggles --h to actual content height */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height .35s cubic-bezier(.2,.7,.3,1.05),
    opacity .28s ease .05s,
    transform .28s ease .05s,
    padding .25s ease;
}
.faq__item[data-open="true"] p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CTA
   ============================================================ */
.section--cta { padding-bottom: clamp(60px, 8vw, 100px); }
.cta {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: clamp(50px, 7vw, 80px) clamp(24px, 5vw, 60px);
  text-align: center;
  border-radius: var(--r-xl);
  background: #fff;
  border: 2px solid var(--c-magenta);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(238,0,163,.18);
  transform: rotate(-0.6deg);
}
.cta__sticker {
  position: absolute; top: 22px; right: 22px;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px var(--c-lime),
    0 8px 22px rgba(0,0,0,.15);
  transform: rotate(12deg);
  z-index: 2;
}
.cta__sticker img { width: 44px; height: 44px; object-fit: contain; }
.cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(238,0,163,.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(207,255,10,.25), transparent 55%);
}
.cta h2 {
  font-family: var(--f-display);
  font-weight: 900;
  color: var(--c-ink);
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 8px 0 18px;
}
.cta h2 em { font-style: italic; color: var(--c-magenta); }
.cta p { color: var(--c-ink-soft); max-width: 50ch; margin: 0 auto 28px; font-weight: 500; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  border-top: 2px solid rgba(238,0,163,.15);
  background: var(--c-bg-2);
  padding: 60px clamp(16px, 4vw, 48px) 24px;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.foot__brand { display: flex; align-items: center; gap: 14px; }
.foot__brand img {
  width: 64px; height: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 3px solid var(--c-lime);
  box-shadow: 0 0 0 3px var(--c-magenta);
  background: #fff;
}
.foot__brand strong { display: block; font-weight: 900; }
.foot__brand small { color: var(--c-ink-mute); }

.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__cols h4 {
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-magenta); margin: 0 0 14px; font-weight: 800;
}
.foot__cols a {
  display: block; color: var(--c-ink-soft);
  padding: 4px 0; font-size: .92rem; font-weight: 600;
  transition: color var(--t-fast);
}
.foot__cols a:hover { color: var(--c-magenta); }

.foot__bot {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1.5px dashed rgba(238,0,163,.2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  color: var(--c-ink-mute);
  font-size: .95rem;
}
.foot__credit {
  font-size: 1rem;
}
.foot__credit a {
  color: var(--c-magenta); font-weight: 800;
  border-bottom: 1.5px dashed currentColor;
}
.foot__paw {
  display: inline-block;
  width: 18px; height: 18px;
  object-fit: contain;
  vertical-align: -3px;
}

/* ============================================================
   REVEAL HELPERS
   ============================================================ */
/* No pre-GSAP opacity:0 here — GSAP's from()/set() owns the
   initial state to avoid the CSS rule re-hiding elements after
   the inline style is cleared at the end of the tween. */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__cta { display: none; }
  .nav__toggle { display: block; }

  /* Mobile menu is always laid out but hidden via opacity/transform
     so it can animate cleanly. The visibility transition uses a delay
     on close to let opacity finish before display-style hidden. */
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column; gap: 0;
    background: rgba(255,245,250,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(238,0,163,.18);
    padding: 8px 24px 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity .28s ease,
      transform .32s cubic-bezier(.2,.7,.3,1.2),
      visibility 0s linear .28s;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity .32s ease,
      transform .38s cubic-bezier(.2,.7,.3,1.2),
      visibility 0s linear 0s;
  }
  .nav__links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(238,0,163,.08);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .26s ease, transform .26s ease;
  }
  .nav__links a::after { display: none; }
  .nav__links.is-open a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .28s ease, transform .32s cubic-bezier(.2,.7,.3,1.2);
  }
  /* Stagger each item in for a soft cascade */
  .nav__links.is-open a:nth-child(1) { transition-delay: .06s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: .11s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: .16s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: .21s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: .26s; }
  .nav__links a:last-child { border-bottom: 0; }

  .hero__inner { grid-template-columns: 1fr; text-align: left; gap: 30px; }
  .hero__media { order: -1; min-height: 320px; }
  .logo-frame { width: min(360px, 80%); }
  .badge--magenta { left: 0%; top: 0; transform: rotate(-7deg); }
  .badge--lime    { right: 0%; top: 22%; transform: rotate(5deg); }
  .badge--red     { left: 0%; bottom: 22%; transform: rotate(-4deg); }
  .badge--pink    { right: 0%; bottom: 0; transform: rotate(8deg); }

  .who { grid-template-columns: 1fr; }
  .mission { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .impact { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding-top: 110px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stats li:nth-child(3) { grid-column: 1 / -1; }
  .impact__story { grid-template-columns: 1fr; gap: 24px; padding: 24px; text-align: center; }
  .impact__story-media { max-width: 240px; margin: 0 auto; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bot { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Cómo ayudar (tabla SEO)
   ============================================================ */
.how-help {
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 245, 250, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(238, 0, 163, 0.15);
}
.how-help__title {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 0.5rem;
  color: #1f1f23;
}
.how-help__lede {
  color: #4a4a55;
  margin-bottom: 1.5rem;
}
.how-help__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.how-help__table th,
.how-help__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.how-help__table thead th {
  background: #ee00a3;
  color: #fff;
  font-weight: 800;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.how-help__table tbody th {
  font-weight: 800;
  color: #1f1f23;
  background: rgba(238, 0, 163, 0.04);
}
.how-help__table tbody tr:last-child th,
.how-help__table tbody tr:last-child td { border-bottom: 0; }
.how-help__table tbody tr:hover { background: rgba(238, 0, 163, 0.04); }

@media (max-width: 720px) {
  .how-help__table { font-size: 0.85rem; }
  .how-help__table th,
  .how-help__table td { padding: 0.6rem 0.5rem; }
}

/* ============================================================
   Testimonios
   ============================================================ */
.section--testimonios {
  background: linear-gradient(180deg, transparent 0%, rgba(238, 0, 163, 0.05) 100%);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  border-top: 4px solid #ee00a3;
}
.testimonial__quote {
  margin: 0 0 1rem 0;
  padding: 0;
}
.testimonial__quote::before {
  content: '“';
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 3rem;
  color: #ee00a3;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 900;
}
.testimonial__quote p {
  margin: 0;
  color: #2a2a32;
  line-height: 1.6;
  font-style: italic;
}
.testimonial__author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial__author strong {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  color: #1f1f23;
  font-size: 1rem;
}
.testimonial__author span {
  color: #6b6b76;
  font-size: 0.875rem;
}
