/* ============================================================
   MENÚS GO — Procesamiento y empaque de alimentos
   Paleta: crema cálida + naranja del logo + azul acento
   ============================================================ */

:root {
  --cream: #fff8ec;
  --cream-2: #f7ecd4;
  --cream-3: #ebdcb5;
  --ink: #2a1c14;
  --ink-2: #543d2c;
  --ink-3: #86695a;
  --orange: #f28c1f;
  --orange-deep: #c96700;
  --blue: #1e6dbb;
  --blue-deep: #144d85;
  --yellow: #f5b400;
  --line: rgba(42,28,20,0.14);
  --line-soft: rgba(42,28,20,0.06);

  --pad: clamp(1.2rem, 4vw, 4rem);
  --maxw: 1320px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400; line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* SPLASH */
.splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transform: scale(1.02); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-logo {
  width: clamp(160px, 30vw, 240px);
  animation: fadeUp .9s var(--ease) both;
}
.splash-tag {
  margin-top: 1.4rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-deep);
  animation: fadeUp .9s var(--ease) .15s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  transition: background .3s var(--ease), padding .25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,248,236,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: 0.7rem;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--ink);
}
.nav-logo { height: 42px; width: auto; transition: height .3s var(--ease); }
.nav.is-scrolled .nav-logo { height: 34px; }
.brand-txt { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links a {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-2);
}
.nav-links a:not(.nav-cta):hover { color: var(--orange-deep); }
.nav-cta {
  background: var(--orange); color: white;
  padding: 0.6rem 1.2rem; border-radius: 4px;
  font-weight: 700;
  transition: background .2s var(--ease), transform .2s var(--ease);
  box-shadow: 0 4px 12px rgba(242,140,31,0.30);
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-2px); color: white; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* HERO - dos columnas con foto real */
.hero {
  padding: 7rem var(--pad) 4rem;
  background:
    radial-gradient(60% 40% at 90% 30%, rgba(242,140,31,0.10), transparent 60%),
    var(--cream);
}
.hero-cols {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-pill {
  display: inline-block;
  background: white;
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink); margin-bottom: 1.6rem;
}
.hero-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero-h em {
  color: var(--orange); font-style: italic; font-weight: 800;
  background: linear-gradient(180deg, transparent 62%, rgba(245,180,0,0.35) 62%);
  padding: 0 0.15em;
}
.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--ink-2); max-width: 48ch;
  margin-bottom: 1.8rem;
}
.hero-desc strong { color: var(--orange-deep); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.9rem 1.6rem; border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn-orange { background: var(--orange); color: white; box-shadow: 0 6px 16px rgba(242,140,31,0.35); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); color: white; }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--blue); color: var(--blue); background: transparent; transform: translateY(-2px); }
.hero-note { color: var(--ink-3); font-size: 0.88rem; font-weight: 600; }

/* HERO PHOTO - real */
.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/5;
  border: 6px solid white;
  box-shadow: 0 20px 50px -20px rgba(42,28,20,0.30);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(42,28,20,0.85);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cap-tag {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.25rem;
}
.cap-txt {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500; font-size: 0.9rem;
}

@media (max-width: 820px) {
  .hero-cols { grid-template-columns: 1fr; }
  .hero-photo { max-width: 480px; margin-inline: auto; }
}

/* SECTION */
.section { padding: clamp(4rem, 8vw, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.sec-h { text-align: center; margin-bottom: 3rem; }
.sec-tag {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 0.85rem;
  color: var(--orange-deep); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.sec-h h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05; color: var(--ink);
  letter-spacing: -0.02em;
}
.sec-h h2 em { color: var(--orange); font-style: italic; }
.sec-lead { color: var(--ink-2); max-width: 55ch; margin: 0.8rem auto 0; }

/* LÍNEAS - grid tipo catálogo industrial */
.lineas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.linea {
  background: white;
  padding: 2rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.linea:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -14px rgba(42,28,20,0.18); }
.linea-1 { border-top-color: var(--orange); }
.linea-2 { border-top-color: var(--blue); }
.linea-3 { border-top-color: var(--yellow); }
.linea-4 { border-top-color: var(--orange-deep); }
.linea-num {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 2.6rem;
  color: var(--orange); line-height: 1;
  margin-bottom: 0.4rem;
}
.linea-2 .linea-num { color: var(--blue); }
.linea-3 .linea-num { color: var(--yellow); }
.linea-4 .linea-num { color: var(--orange-deep); }
.linea h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--ink); margin-bottom: 0.8rem;
}
.linea p { color: var(--ink-2); font-size: 0.98rem; margin-bottom: 1.2rem; }
.linea p strong { color: var(--ink); font-weight: 700; }
.linea ul { list-style: none; padding-top: 1rem; border-top: 1px dashed var(--line); }
.linea ul li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  font-size: 0.9rem; color: var(--ink);
  position: relative;
}
.linea ul li::before {
  content: "◈";
  position: absolute; left: 0;
  color: var(--orange);
}
.linea-2 ul li::before { color: var(--blue); }
.linea-3 ul li::before { color: var(--yellow); }
.linea-4 ul li::before { color: var(--orange-deep); }
@media (max-width: 720px) { .lineas-grid { grid-template-columns: 1fr; } }

/* STRIP corriendo */
.strip {
  background: var(--orange);
  color: white;
  overflow: hidden;
  padding: 0.9rem 0;
  margin-block: 2rem;
}
.strip-track {
  display: flex; gap: 2.2rem; align-items: center;
  white-space: nowrap;
  animation: stripSlide 30s linear infinite;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.strip-track .dot { color: var(--yellow); font-size: 0.7em; }
@keyframes stripSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* PLANTA */
.planta-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.planta-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 20px 50px -20px rgba(42,28,20,0.3);
  aspect-ratio: 4/4.6;
}
.planta-photo img { width: 100%; height: 100%; object-fit: cover; }
.planta-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--yellow); color: var(--ink);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 0.85rem;
}
.planta-info .sec-tag { display: inline-block; }
.planta-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05; color: var(--ink);
  margin-bottom: 1.4rem; letter-spacing: -0.02em;
}
.planta-h em { color: var(--orange); font-style: italic; }
.planta-lead { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 46ch; }
.planta-lead strong { color: var(--ink); font-weight: 700; }
.planta-checks { list-style: none; }
.planta-checks li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  border-bottom: 1px dashed var(--line);
  position: relative;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}
.planta-checks li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--orange-deep); font-weight: 900;
}
.planta-checks li:last-child { border-bottom: 0; }
@media (max-width: 820px) { .planta-wrap { grid-template-columns: 1fr; } .planta-photo { max-width: 420px; margin-inline: auto; } }

/* CONTACTO */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}
.cbox {
  padding: 1.6rem 1.4rem;
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 0.4rem;
  min-height: 150px;
  transition: transform .25s var(--ease);
}
a.cbox:hover { transform: translateY(-4px); }
.cbox-orange { background: var(--orange); color: white; }
.cbox-cream { background: white; border: 2px solid var(--line); color: var(--ink); }
.cbox-static { background: var(--cream-2); color: var(--ink); }
.cbox-emoji { font-size: 1.8rem; margin-bottom: 0.3rem; }
.cbox-k {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85;
}
.cbox-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.15rem; line-height: 1.35;
}
.cbox-map {
  grid-column: 1 / -1;
  overflow: hidden; border-radius: 12px;
  min-height: 340px;
  border: 3px solid white;
  box-shadow: 0 10px 30px -12px rgba(42,28,20,0.15);
}
.cbox-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.footer {
  background: var(--ink); color: var(--cream);
  padding: clamp(3rem, 5vw, 4rem) var(--pad) 2rem;
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 2rem; align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,248,236,0.15);
}
.foot-logo { height: 70px; filter: brightness(1.7); }
.foot-info p { color: var(--cream); font-size: 0.92rem; opacity: 0.88; margin-bottom: 0.2rem; }
.foot-info p strong { color: var(--orange); font-weight: 700; }
.foot-legal {
  max-width: var(--maxw); margin: 1.2rem auto 0;
  font-size: 0.85rem; color: var(--cream); opacity: 0.65;
  text-align: center;
}
@media (max-width: 620px) { .foot-inner { grid-template-columns: 1fr; text-align: center; } .foot-logo { margin-inline: auto; } }

/* WA */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #062b13;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(42,28,20,0.3);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
