/* ===== Base ===== */
:root {
  /* ===== Marca Foodbox ===== */
  --ink: #08020b;          /* Texto & highlight (casi negro) */
  --bg: #fffaf0;           /* Fondo principal (crema cálido) */
  --bg-alt: #eef4fb;       /* Secciones alternas (azul muy suave de marca) */
  --cream: #fffaf0;
  --yellow: #ffeda1;       /* Soporte (amarillo suave) */
  --blue: #c8d9e6;         /* Pantone 277C */
  --blue-brand: #94afdb;   /* Pantone 7451C */
  --blue-light: #eef4fb;
  --pink: #fba2ca;         /* Pantone 1905C — rosa de marca (rellenos) */
  --pink-soft: #f9cddd;    /* Pantone 699C — rosa suave */
  --pink-deep: #ec6f9c;    /* rosa intenso para texto/acentos sobre fondo claro */
  --pink-bg: #fdeef3;      /* panel rosa muy claro */
  --gray: #e3e7ee;
  --muted: #6b6470;        /* texto secundario sobre crema */
  --radius: 18px;
  --shadow: 0 18px 40px rgba(8, 2, 11, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; }

/* Anclas: que el nav fijo no tape el inicio de cada sección */
[id] { scroll-margin-top: 92px; }

::selection { background: var(--pink-soft); color: var(--ink); }

:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 3px; border-radius: 4px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--pink); color: var(--ink); box-shadow: 0 10px 24px rgba(251,162,202,.5); }
.btn--primary:hover { background: var(--pink-deep); color: #fff; }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--soft { background: var(--pink); color: var(--ink); padding: 11px 22px; box-shadow: 0 8px 20px rgba(251,162,202,.4); }
.btn--soft:hover { background: var(--pink-deep); color: #fff; box-shadow: 0 12px 26px rgba(236,111,156,.4); }
.btn--cta {
  background: var(--ink);
  color: var(--cream);
  padding: 17px 40px;
  font-size: 1.05rem;
  box-shadow: 0 14px 30px rgba(8,2,11,.25);
}
.btn--cta:hover { background: var(--pink-deep); color: #fff; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,240,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8,2,11,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 52px; width: auto; display: block; transition: transform .25s ease; }
.logo:hover img { transform: scale(1.05); }
.footer .logo img { height: 46px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-weight: 500; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--pink-deep); }

/* ===== Hero ===== */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
/* Dos blobs suaves de marca para dar calidez (sin gradientes de relleno) */
.hero::before {
  content: "";
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,162,202,.22) 0%, transparent 65%);
  top: -260px; left: -180px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148,175,219,.20) 0%, transparent 65%);
  bottom: -120px; right: 5%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero__brand {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: .8rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero h1 .hl { color: var(--pink-deep); }
.hero__lead { color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero__lead strong { color: var(--ink); font-weight: 700; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(8,2,11,.08);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.hero__badge svg { color: var(--pink-deep); }

.hero__media { position: relative; }
.hero__img {
  height: 520px;
  border-radius: 24px;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8,2,11,.22);
}
.hero__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ===== Stats strip ===== */
.stats-strip {
  background: var(--ink);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,250,240,.14);
}
.stat__num {
  display: block;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.stat__label {
  display: block;
  color: rgba(255,250,240,.62);
  font-size: .88rem;
  font-weight: 500;
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 48px;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  width: 52px; height: 3px;
  background: var(--pink-deep);
  border-radius: 3px;
  margin: 14px auto 0;
  transition: width .8s .35s cubic-bezier(.2,.7,.2,1);
}
.section__title.reveal::after { width: 0; }
.section__title.is-visible::after { width: 52px; }

/* ===== Cards grids ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* Credenciales */
.cred {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  background-clip: padding-box;
}
.cred:hover { border-top-color: var(--pink-deep); }
.cred__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: var(--ink);
}
.cred__icon--yellow { background: var(--yellow); }
.cred__icon--pink { background: var(--pink-soft); }
.cred__icon--blue { background: var(--blue); }
.cred h3 { font-size: 1.12rem; margin-bottom: 10px; }
.cred p { color: var(--muted); font-size: .95rem; }

/* ===== Accordion / Diferenciadores ===== */
.accordion { display: flex; flex-direction: column; gap: 16px; max-width: 920px; margin: 0 auto; }
.acc__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
}
.acc__item.is-open { border-left-color: var(--pink-deep); }
.acc__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 30px;
  cursor: pointer;
  font-family: inherit;
}
.acc__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  flex: none;
}
.acc__icon--blue { background: var(--blue); }
.acc__icon--gray { background: var(--gray); }
.acc__text strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.acc__text span {
  color: var(--muted);
  font-size: .95rem;
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: max-height .35s ease, margin .35s ease, opacity .3s ease;
  opacity: 0;
}
.acc__item.is-open .acc__text span { max-height: 200px; opacity: 1; }
.faq .acc__item.is-open .acc__text span { max-height: 360px; }
.faq .section__title { margin-top: 6px; }
.acc__toggle {
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1;
  transition: transform .3s ease;
}
.acc__item.is-open .acc__toggle { transform: rotate(45deg); color: var(--pink-deep); }

/* ===== Portafolio ===== */
.prod {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.prod__img {
  height: 270px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.prod__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,2,11,.45) 0%, rgba(8,2,11,.05) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.prod__img--a { background-image: url("138.webp"); }
.prod__img--b { background-image: url("553.webp"); }
.prod__tag {
  position: absolute;
  top: 16px; left: 16px;
  width: 42px; height: 42px;
  background: rgba(255,250,240,.92);
  backdrop-filter: blur(6px);
  color: var(--pink-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(8,2,11,.2);
}
.prod__body { padding: 26px 30px 34px; }
.prod__name { color: var(--pink-deep); font-size: 1.5rem; margin-bottom: 4px; }
.prod__sub { color: var(--pink-deep); font-style: italic; font-size: .92rem; margin-bottom: 16px; opacity: .85; }
.prod__body p:last-child { color: var(--muted); font-size: .93rem; }

/* ===== Bienestar ===== */
.welfare {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 380px;
}
.welfare__img {
  background:
    linear-gradient(180deg, rgba(8,2,11,.05), rgba(8,2,11,.3)),
    url("22190.webp");
  background-size: cover;
  background-position: center;
}
.welfare__panel {
  background: var(--pink-bg);
  padding: 60px clamp(30px, 5vw, 80px);
  position: relative;
}
.welfare__brand { width: 140px; height: auto; display: block; margin-bottom: 18px; }
.welfare__panel h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 22px; }
.welfare__quote { position: relative; margin-bottom: 22px; padding-left: 40px; max-width: 480px; }
.welfare__mark {
  position: absolute;
  left: 0; top: -10px;
  font-size: 3rem;
  color: var(--pink-deep);
  font-weight: 700;
  line-height: 1;
}
.welfare__quote em { color: var(--ink); font-weight: 500; }
.welfare__panel p { color: var(--muted); max-width: 520px; font-size: .95rem; }

/* ===== Experiencia gastronómica ===== */
.gastro {
  padding: 88px 0;
  background: var(--blue-light);
}
.gastro__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gastro__copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  margin: 14px 0 20px;
  max-width: 460px;
}
.gastro__copy p { color: var(--muted); max-width: 480px; margin-bottom: 28px; }
.gastro__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.gastro__tags span {
  background: #fff;
  border: 1px solid var(--blue-brand);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(148,175,219,.22);
}
.gastro__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(8,2,11,.18);
  aspect-ratio: 4 / 3;
}
.gastro__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Perfil / CTA ===== */
.profile {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
}
.profile:hover { border-top-color: var(--pink-deep); }
.cards-3--profile .profile .cred__icon { margin: 0 0 16px; }
.profile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.profile p { color: var(--muted); font-size: .92rem; }
.cta-wrap { text-align: center; margin-top: 48px; }

/* ===== Angus / Picanha exploded view ===== */
.angus {
  /* Fondo sólido de marca (Texto & highlight). El color lo aportan
     los destellos animados rosa/azul de la secuencia. */
  background: var(--ink);
  color: #fff;
  position: relative;
  height: 300vh;            /* margen de scroll para reproducir la secuencia */
  overflow: clip;
}
.angus__inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-content: center;
  align-items: center;
  padding: 60px 0;
}
.angus__copy .eyebrow { color: var(--pink); }
.angus__copy .eyebrow::before { background: var(--pink); }
.angus__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.angus__copy p { color: rgba(255,255,255,.7); max-width: 460px; margin-bottom: 26px; }
.angus__copy p strong { color: #fff; font-weight: 700; }
.angus__points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.angus__points li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.85); font-size: .95rem; }
.angus__points svg { color: var(--blue-brand); flex: none; margin-top: 3px; }

.angus__stage { position: relative; }
.angus__scene {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}
/* Las dos reses se apilan: la de piel y la de músculos hacen crossfade */
.angus__cow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 580px;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)) brightness(.92);
}
/* El crossfade y el desprendimiento se controlan con scroll desde JS */
.angus__cow--anatomy { opacity: 0; }

/* El corte arranca sobre el cuarto trasero (lado izquierdo) y se desprende.
   Ajusta left/top para alinearlo con la cadera de tu imagen. */
.angus__cut {
  position: absolute;
  left: 26%;
  top: 44%;
  width: clamp(120px, 17vw, 185px);
  height: auto;
  opacity: 0;
  transform-origin: center;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.8));
  will-change: transform, opacity;
}
/* Destello en el punto de extracción. Tinte de marca Foodbox: núcleo rosa (1905C)
   con halo azul (7451C). */
.angus__pulse {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,162,202,.32) 0%, rgba(148,175,219,.12) 42%, transparent 65%);
  left: 30%; top: 38%;
  opacity: 0;
  pointer-events: none;
}
.angus__video {
  width: 100%;
  height: 440px;
  object-fit: contain;
  border-radius: 24px;
}
.angus__tag {
  position: absolute;
  bottom: 6%; right: 4%;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
/* ===== Marquee ===== */
.marquee-wrap {
  background: var(--ink);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__track span {
  color: rgba(255,250,240,.55);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee__sep { color: var(--pink) !important; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 100;
  width: 62px; height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .2s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12); animation-play-state: paused; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 44px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255,250,240,.75);
  padding: 50px 0 40px;
}
.footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .logo { color: #fff; }
.footer p { font-size: .85rem; }

/* ===== Animations & effects ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* Hero entrance */
.hero__copy > * { animation: fadeUp .7s both; }
.hero__brand { animation-delay: .05s; }
.eyebrow { animation-delay: .15s; }
.hero h1 { animation-delay: .25s; }
.hero__lead { animation-delay: .35s; }
.hero__actions { animation-delay: .45s; }
.hero__badge { animation-delay: .55s; }
.hero__media { animation: fadeUp .9s .3s both; }
.hero__img { animation: floaty 6s ease-in-out 1.2s infinite; }

/* Card hover lifts */
.cred, .profile, .acc__item, .prod { transition: transform .3s ease, box-shadow .3s ease; }
.cred:hover, .profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(8,2,11,.12);
}
.acc__item:hover { box-shadow: 0 22px 44px rgba(8,2,11,.1); }
.prod:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(8,2,11,.18);
}

/* Card icon pop on hover */
.cred__icon, .acc__icon { transition: transform .3s ease; }
.cred:hover .cred__icon,
.profile:hover .cred__icon { transform: scale(1.12) rotate(-6deg); }

/* Product image zoom */
.prod { position: relative; }
.prod__img { transition: transform .5s ease; }
.prod:hover .prod__img { transform: scale(1.06); }

/* Nav links underline grow */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Button shine */
.btn--primary, .btn--cta { position: relative; overflow: hidden; }
.btn--primary::after, .btn--cta::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn--primary:hover::after, .btn--cta:hover::after { left: 130%; }

/* CTA arrow nudge */
.btn--cta svg { transition: transform .25s ease; }
.btn--cta:hover svg { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__copy > *, .hero__media, .hero__img { animation: none; }
  .marquee__track { animation: none; }
  .wa-float { animation: none; }
  .angus__cow--anatomy { opacity: 1; transition: none; }
  .angus__cut { opacity: 1; transform: translate(150px,40px) scale(2); animation: none; }
  .angus__pulse { opacity: .5; animation: none; }
  .section__title::after, .section__title.reveal::after, .section__title.is-visible::after { transition: none; width: 52px; }
}

/* ===== Nav hamburger ===== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255,250,240,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    font-size: 1.4rem;
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    display: flex;
  }
  .nav__links.is-open { opacity: 1; pointer-events: all; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { height: 320px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .welfare { grid-template-columns: 1fr; }
  .welfare__img { min-height: 280px; }
  .gastro__inner { grid-template-columns: 1fr; gap: 32px; }
  .gastro__copy h2, .gastro__copy p { max-width: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid rgba(255,250,240,.12); padding-bottom: 30px; }
  .angus__inner { grid-template-columns: 1fr; gap: 32px; }
  .angus__scene { height: 320px; }
}

/* ===== Formulario de contacto ===== */
.formsec { background: var(--bg); }
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 32px; }
.form-intro .eyebrow { justify-content: center; }
.form-intro p { color: var(--muted); max-width: 540px; margin: 12px auto 0; }
.lead-form {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field legend { font-weight: 600; font-size: .95rem; color: var(--ink); padding: 0; }
.field .req { color: var(--pink-deep); }
.field .opt { color: var(--muted); font-weight: 400; font-size: .85rem; }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-bg);
}
.field--sector { border: 0; padding: 0; margin: 0; min-width: 0; }
.sector-opts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.sector-opt { position: relative; flex: 1 1 140px; }
.sector-opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.sector-opt span {
  display: block;
  text-align: center;
  padding: 13px 10px;
  border: 1px solid var(--gray);
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sector-opt input:checked + span { background: var(--pink-soft); border-color: var(--pink-deep); }
.sector-opt input:focus-visible + span { box-shadow: 0 0 0 3px var(--pink-bg); }
.lead-form__submit { align-self: flex-start; margin-top: 4px; }
.lead-form__submit[disabled] { opacity: .6; cursor: progress; }
.lead-form__status { font-size: .95rem; font-weight: 600; min-height: 1.2em; margin: 0; }
.lead-form__status.is-loading { color: var(--muted); }
.lead-form__status.is-ok { color: #1c7c4a; }
.lead-form__status.is-error { color: #c0392b; }
.lead-form__legal { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }
.lead-form__legal a { color: var(--muted); text-decoration: underline; }
@media (max-width: 520px) {
  .lead-form { padding: 22px; }
  .lead-form__submit { align-self: stretch; justify-content: center; }
}
