/* ============================================
   POWER MILK · Stylesheet
   Aesthetic: vibrante · juvenil · campesino moderno
   ============================================ */

:root {
  /* Brand palette · CYAN dominante + AMARILLO LIMA acento */
  --pm-cyan: #42A2C2;            /* CYAN PRINCIPAL */
  --pm-cyan-dark: #2D8AA8;       /* cyan oscuro para hovers */
  --pm-cyan-deep: #1F6B85;       /* cyan profundo */
  --pm-cyan-light: #79BED2;      /* cyan claro */
  --pm-cyan-soft: #C8E4ED;       /* cyan muy suave para fondos */
  --pm-cyan-mist: #EAF5F9;       /* cyan vapor para fondos sutiles */

  --pm-lime: #D9DA41;            /* AMARILLO LIMA acento */
  --pm-lime-dark: #B8B82E;       /* lima oscuro */
  --pm-lime-soft: #F0F1B8;       /* lima muy suave */

  /* Alias para compatibilidad con el resto del CSS */
  --pm-blue: var(--pm-cyan);
  --pm-blue-dark: var(--pm-cyan-dark);
  --pm-blue-deep: var(--pm-cyan-deep);
  --pm-green: var(--pm-lime);
  --pm-green-dark: var(--pm-lime-dark);
  --pm-green-deep: var(--pm-cyan-deep);
  --pm-yellow: var(--pm-lime);

  /* Neutros claros y luminosos (no negros) */
  --pm-cream: #FFFCEC;
  --pm-cream-2: #F7F3DE;
  --pm-ink: #1F4A5C;             /* navy cyan en vez de negro */
  --pm-ink-soft: #3D6A7E;
  --pm-grey: #6F8A98;
  --pm-grey-soft: #A5BBC5;
  --pm-line: #E2EDF1;
  --pm-white: #FFFFFF;
  --pm-bg: #FFFFFF;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-soft: 0 8px 30px rgba(31, 74, 92, 0.08);
  --shadow-med: 0 16px 48px rgba(31, 74, 92, 0.12);
  --shadow-strong: 0 24px 64px rgba(31, 74, 92, 0.18);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--pm-ink);
  background: var(--pm-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 160px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.28));
  transition: transform 0.3s, height 0.3s;
}
.nav.scrolled .nav-logo img {
  height: 70px;
}
.nav-logo:hover img { transform: scale(1.05) rotate(-2deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--pm-ink);
  position: relative;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--pm-ink); }
.nav:not(.scrolled) .nav-links a {
  color: var(--pm-white);
  text-shadow: 0 1px 8px rgba(31, 74, 92, 0.5);
}
.nav:not(.scrolled) .nav-burger span {
  background: var(--pm-white);
}
.nav:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: var(--pm-lime); }
.nav:not(.scrolled) .nav-links a:not(.nav-cta)::after { background: var(--pm-lime); }
.nav-links a:not(.nav-cta):hover { color: var(--pm-cyan-dark); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pm-cyan);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--pm-cyan);
  color: var(--pm-white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--pm-lime);
  color: var(--pm-ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 218, 65, 0.5);
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  width: 24px;
  height: 2.5px;
  background: var(--pm-ink);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--pm-white);
  padding: 24px;
  gap: 8px;
  border-top: 1px solid var(--pm-line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--pm-cream); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top right, rgba(217, 218, 65, 0.35), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(66, 162, 194, 0.4), transparent 60%),
    linear-gradient(135deg, #C8E4ED 0%, #79BED2 30%, #42A2C2 75%, #2D8AA8 100%);
  padding: 220px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.splash {
  position: absolute;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.splash-1 {
  width: 600px;
  top: -100px;
  right: -150px;
  animation-delay: 0s;
}
.splash-2 {
  width: 300px;
  bottom: 50px;
  left: -50px;
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: heroFadeUp 1s 0.2s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--pm-ink);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.bolt {
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(255, 217, 61, 0.6));
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--pm-white);
  margin-bottom: 28px;
  text-shadow: 0 2px 0 rgba(31, 74, 92, 0.25);
}
.hl-green {
  display: inline-block;
  color: var(--pm-ink);
  position: relative;
  transform: rotate(-2deg);
}
.hl-green::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: -4%;
  right: -4%;
  height: 30%;
  background: var(--pm-lime);
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1deg);
}
.hl-blue {
  display: inline-block;
  color: var(--pm-white);
  position: relative;
  text-shadow: 0 2px 0 rgba(31, 74, 92, 0.2);
}
.hl-blue::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--pm-lime);
  border-radius: 100px;
  transform: scaleX(0.9);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pm-cyan);
  color: var(--pm-white);
  box-shadow: 0 10px 30px rgba(66, 162, 194, 0.4);
}
.btn-primary:hover {
  background: var(--pm-cyan-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(45, 138, 168, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--pm-cyan-deep);
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(31, 74, 92, 0.12);
}
.btn-ghost:hover {
  background: var(--pm-white);
  transform: translateY(-3px);
  border-color: var(--pm-lime);
}
.btn-whats {
  background: #25D366;
  color: var(--pm-white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.btn-whats:hover {
  background: #1FB855;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--pm-lime);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFadeIn 1.2s 0.4s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-cow-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.hero-cow {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(30, 50, 14, 0.25));
  transform-origin: center bottom;
  animation: cowFloat 4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}
@keyframes cowFloat {
  0%   { transform: translateY(0)     rotate(-1deg)  scaleX(1)    scaleY(1);    }
  8%   { transform: translateY(3px)   rotate(-1deg)  scaleX(1.07) scaleY(0.93); }
  22%  { transform: translateY(-26px) rotate(-3deg)  scaleX(0.96) scaleY(1.05); }
  38%  { transform: translateY(-33px) rotate(1deg)   scaleX(1)    scaleY(1);    }
  52%  { transform: translateY(-22px) rotate(3deg)   scaleX(0.97) scaleY(1.04); }
  65%  { transform: translateY(3px)   rotate(0deg)   scaleX(1.08) scaleY(0.92); }
  74%  { transform: translateY(-10px) rotate(-1.5deg) scaleX(0.99) scaleY(1.02); }
  83%  { transform: translateY(0)     rotate(0.5deg) scaleX(1.03) scaleY(0.97); }
  91%  { transform: translateY(-4px)  rotate(-0.5deg) scaleX(1)   scaleY(1);    }
  100% { transform: translateY(0)     rotate(-1deg)  scaleX(1)    scaleY(1);    }
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--pm-white);
  padding: 12px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(30, 50, 14, 0.2);
  animation: badgeFloat 5s ease-in-out infinite;
}
.hero-badge span { font-size: 22px; }
.hero-badge small { font-size: 13px; color: var(--pm-ink); }
.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
.badge-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: -1.5s;
}
.badge-3 {
  top: 50%;
  right: -5%;
  animation-delay: -3s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background:
    linear-gradient(var(--pm-lime), var(--pm-lime)) 30px 0 / calc(100% - 60px) 4px no-repeat,
    linear-gradient(var(--pm-lime), var(--pm-lime)) 30px 100% / calc(100% - 60px) 4px no-repeat,
    var(--pm-ink);
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  background: white;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; }
.marquee::after  { right: 0; }
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: default;
}
.marquee-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid rgba(217, 218, 65, 0.3);
  transition: transform 0.3s, border-color 0.3s;
  display: block;
}
.marquee-item:hover img {
  transform: scale(1.06);
  border-color: var(--pm-lime);
}
.marquee-item span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.3px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pm-cyan-deep);
  background: var(--pm-cyan-soft);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow-light {
  color: var(--pm-lime);
  background: rgba(217, 218, 65, 0.18);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--pm-ink);
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: italic;
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--pm-cyan);
  font-size: 1.15em;
  line-height: 0.9;
}
.section-sub {
  font-size: 17px;
  color: var(--pm-grey);
  line-height: 1.7;
}

/* ============================================
   NOSOTROS
   ============================================ */
.nosotros {
  padding: 120px 0 80px;
  background: var(--pm-bg);
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.nosotros-text .lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--pm-ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.nosotros-text .lead strong {
  color: var(--pm-cyan);
  font-weight: 700;
}
.nosotros-text p {
  font-size: 16px;
  color: var(--pm-ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.nosotros-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pm-cyan) 0%, var(--pm-cyan-dark) 100%);
  color: var(--pm-white);
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(66, 162, 194, 0.35);
}
.nosotros-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--pm-lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pm-lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.nosotros-card {
  background: linear-gradient(180deg, var(--pm-cyan-mist) 0%, var(--pm-cyan-soft) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.nosotros-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--pm-lime), transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.card-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.card-cow {
  width: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transform-origin: center bottom;
  animation: cowSway 3s ease-in-out infinite;
}
@keyframes cowSway {
  0%, 100% { transform: rotate(-5deg) translateY(0) scale(1); }
  30%       { transform: rotate(4deg)  translateY(-7px) scale(1.04); }
  60%       { transform: rotate(-3deg) translateY(-3px) scale(1.02); }
}
.card-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--pm-ink);
}
.card-header p {
  font-size: 15px;
  color: var(--pm-ink-soft);
  line-height: 1.55;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.feat {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
}
.feat span:first-child {
  grid-row: span 2;
  font-size: 28px;
}
.feat b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--pm-ink);
}
.feat small {
  font-size: 13px;
  color: var(--pm-ink-soft);
}

/* ============================================
   MISIÓN / VISIÓN
   ============================================ */
.mv {
  padding: 60px 0 120px;
  background: var(--pm-bg);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  position: relative;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s;
}
.mv-card:hover { transform: translateY(-8px); }
.mv-card-mision {
  background: linear-gradient(135deg, var(--pm-cyan) 0%, var(--pm-cyan-dark) 100%);
  color: var(--pm-white);
}
.mv-card-vision {
  background: linear-gradient(135deg, var(--pm-lime) 0%, #C4C530 100%);
  color: var(--pm-ink);
}
.mv-num {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 120px;
  line-height: 0.8;
  opacity: 0.15;
  letter-spacing: -0.05em;
}
.mv-icon {
  font-size: 48px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.mv-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.mv-card-mision p strong { color: var(--pm-lime); font-weight: 700; }
.mv-card-vision p strong { color: var(--pm-cyan-deep); font-weight: 700; }

/* ============================================
   PRODUCTOS
   ============================================ */
.productos {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pm-cyan-mist) 0%, #FFFFFF 100%);
  position: relative;
}
.productos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background:
    radial-gradient(circle at 20% 50%, rgba(66, 162, 194, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(217, 218, 65, 0.1), transparent 50%);
  pointer-events: none;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.producto {
  background: var(--pm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.producto:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}
.producto-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.producto-featured .producto-media { aspect-ratio: auto; min-height: 380px; }
.producto-featured .producto-body { padding: 40px; }
.producto-featured h3 { font-size: 32px; }

.producto-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pm-cream-2);
}
.producto-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.producto:hover .producto-media img { transform: scale(1.05); }

.producto-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pm-white);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.tag-star { background: var(--pm-lime); color: var(--pm-ink); }
.tag-pizza { background: var(--pm-cyan); color: var(--pm-white); }
.tag-new { background: var(--pm-lime); color: var(--pm-ink); }

.producto-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.producto-cat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pm-cyan);
  margin-bottom: 8px;
}
.producto h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pm-ink);
  margin-bottom: 12px;
}
.producto p {
  font-size: 14px;
  color: var(--pm-ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.producto-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--pm-line);
}
.producto-sizes span {
  background: var(--pm-cyan-soft);
  color: var(--pm-cyan-deep);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}

/* ============================================
   CALIDAD
   ============================================ */
.calidad {
  padding: 120px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 218, 65, 0.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4), transparent 50%),
    linear-gradient(135deg, var(--pm-cyan) 0%, var(--pm-cyan-dark) 100%);
  color: var(--pm-white);
  position: relative;
  overflow: hidden;
}
.calidad::before {
  content: '⚡';
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 280px;
  opacity: 0.08;
  line-height: 1;
  color: var(--pm-lime);
}
.calidad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.calidad-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--pm-white);
}
.calidad-text h2 em {
  font-family: var(--font-hand);
  font-style: italic;
  color: var(--pm-lime);
  font-size: 1.15em;
  font-weight: 700;
}
.calidad-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.valor {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.valor:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--pm-lime);
  transform: translateY(-4px);
}
.valor-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pm-lime);
  color: var(--pm-cyan-deep);
  border-radius: 14px;
  margin-bottom: 16px;
}
.valor-icon svg { width: 26px; height: 26px; }
.valor h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--pm-white);
}
.valor p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.ubicacion {
  padding: 120px 0;
  background: var(--pm-bg);
}
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}
.ubicacion-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ubicacion-card {
  background: linear-gradient(180deg, var(--pm-cyan-mist) 0%, #FFFFFF 100%);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pm-line);
  position: relative;
  overflow: hidden;
}
.ubicacion-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pm-cyan), var(--pm-lime));
}
.ubi-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.ubicacion-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--pm-ink);
}
.ubi-address {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pm-ink-soft);
  margin-bottom: 24px;
}
.ubi-address strong { color: var(--pm-ink); }
.ubicacion-card p {
  font-size: 15px;
  color: var(--pm-ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}

.ubicacion-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-med);
  border: 1px solid var(--pm-line);
}
.ubicacion-map iframe {
  display: block;
  filter: saturate(1.1);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 0 0 120px;
}
.cta-card {
  background:
    radial-gradient(circle at top right, rgba(217, 218, 65, 0.3), transparent 50%),
    linear-gradient(135deg, var(--pm-cyan) 0%, var(--pm-cyan-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(66, 162, 194, 0.35);
}
.cta-card::before {
  content: '⚡';
  position: absolute;
  bottom: -50px;
  right: -20px;
  font-size: 280px;
  opacity: 0.12;
  line-height: 1;
  transform: rotate(15deg);
  color: var(--pm-lime);
}
.cta-cow {
  width: 200px;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
  transform-origin: center bottom;
  animation: cowFloat 3.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pm-white);
  margin-bottom: 12px;
}
.cta-content h2 span {
  color: var(--pm-lime);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.05em;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--pm-cyan-deep) 0%, #173E50 100%);
  color: var(--pm-white);
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(1.15);
}
.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 340px;
}
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 218, 65, 0.2);
  color: var(--pm-lime);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--pm-lime);
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pm-lime); }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
}
.footer-tag-mobile {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pm-lime) !important;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: all 0.3s;
  animation: pulseRing 2.5s infinite;
}
.float-whats:hover {
  transform: scale(1.1) rotate(-8deg);
}
@keyframes pulseRing {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   RECETAS CON QUESOS POWER MILK
   ============================================ */
.recetas { padding: 100px 0; background: var(--pm-cream); }
.recetas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.receta-card {
  background: var(--pm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.receta-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.receta-img { height: 220px; overflow: hidden; position: relative; }
.receta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.receta-card:hover .receta-img img { transform: scale(1.06); }
.receta-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--pm-cyan); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.5px; padding: 5px 12px; border-radius: 100px;
}
.receta-body { padding: 24px 28px 28px; }
.receta-queso {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--pm-cyan);
  margin-bottom: 8px; display: block;
}
.receta-body h3 { font-size: 20px; font-weight: 700; color: var(--pm-ink); margin-bottom: 8px; line-height: 1.2; }
.receta-body p { font-size: 14px; color: var(--pm-grey); line-height: 1.65; }

/* ============================================
   PROCESO ARTESANAL
   ============================================ */
.proceso {
  padding: 100px 0;
  background: var(--pm-ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.proceso .eyebrow { color: var(--pm-lime); background: rgba(217, 218, 65, 0.15); }
.proceso .section-head h2 { color: white; }
.proceso .section-head h2 em { font-style: italic; color: var(--pm-lime); }
.proceso .section-sub { color: rgba(255, 255, 255, 0.65); }
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, var(--pm-lime), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 64px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) .t-content  { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .t-dot      { grid-column: 2; }
.timeline-item:nth-child(odd) .t-empty    { grid-column: 3; }
.timeline-item:nth-child(even) .t-empty   { grid-column: 1; }
.timeline-item:nth-child(even) .t-dot     { grid-column: 2; }
.timeline-item:nth-child(even) .t-content { grid-column: 3; text-align: left; }
.t-dot {
  width: 56px; height: 56px;
  background: var(--pm-lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--pm-ink);
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(217,218,65,0.15), 0 0 0 16px rgba(217,218,65,0.06);
  position: relative; z-index: 1;
}
.t-time {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pm-lime); margin-bottom: 8px;
}
.t-content h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.2; }
.t-content p  { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================
   DESDE EL CORAZÓN DEL ALTIPLANO
   ============================================ */
.altiplano {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.altiplano-bg {
  position: absolute; inset: 0;
  background-image: url('cumbal-volcan.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.altiplano-inner {
  position: relative; z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.altiplano-inner .eyebrow { color: var(--pm-lime); background: rgba(217,218,65,0.15); }
.altiplano-inner h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.altiplano-inner h2 em { font-style: italic; color: var(--pm-lime); }
.altiplano-inner p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.65; max-width: 560px;
  margin: 0 auto 36px;
}

/* ============================================
   COBERTURA NACIONAL
   ============================================ */
.cobertura { padding: 100px 0; background: var(--pm-cyan-mist); }
.cobertura-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.cob-stat {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--pm-lime);
}
.cob-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--pm-cyan);
  line-height: 1;
  margin-bottom: 10px;
}
.cob-stat-title { font-weight: 700; font-size: 15px; color: var(--pm-ink); margin-bottom: 4px; }
.cob-stat-sub { font-size: 13px; color: var(--pm-grey); line-height: 1.4; }
.cobertura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
}
.cob-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.cob-box h3 { font-size: 18px; font-weight: 700; color: var(--pm-ink); margin-bottom: 20px; }
.cob-box--ciudades {
  background: var(--pm-white);
  border-top: 4px solid var(--pm-cyan);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cob-ciudades-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--pm-ink) !important;
  margin-bottom: 0 !important;
  stroke: var(--pm-cyan);
}
.ciudades-grupo { display: flex; flex-direction: column; gap: 10px; }
.ciudades-grupo-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pm-grey);
  margin: 0;
}
.ciudades-grupo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ciudades-grupo-dot--nariño   { background: var(--pm-cyan); }
.ciudades-grupo-dot--colombia { background: var(--pm-lime-dark); }
.ciudad-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ciudad-tags span {
  background: var(--pm-cyan-soft);
  color: var(--pm-cyan-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: default;
}
.ciudad-tags span:hover { background: var(--pm-cyan); color: white; transform: translateY(-2px); }
.ciudad-tags--colombia span {
  background: var(--pm-lime-soft);
  color: var(--pm-lime-dark);
}
.ciudad-tags--colombia span:hover { background: var(--pm-lime); color: var(--pm-ink); }
.cob-box--servicios { background: var(--pm-ink); }
.cob-servicios-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--pm-white) !important;
  margin-bottom: 20px;
}
.cob-servicios-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pm-lime);
  flex-shrink: 0;
}
.servicio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.servicio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.servicio-item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(217, 218, 65, 0.5);
  transform: translateY(-2px);
}
.servicio-item--highlight {
  grid-column: 1 / -1;
  background: rgba(217, 218, 65, 0.12);
  border-color: rgba(217, 218, 65, 0.4);
  color: var(--pm-lime);
}
.servicio-item--highlight:hover {
  background: rgba(217, 218, 65, 0.2);
  border-color: var(--pm-lime);
}
.servicio-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.cobertura-visual { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-strong); }
.cobertura-visual img { width: 100%; height: 380px; object-fit: cover; display: block; }
.cobertura-cta { text-align: center; }

/* Nosotros photo */
.nosotros-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--shadow-med);
  max-height: 240px;
}
.nosotros-photo img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* Proceso image strip */
.proceso-img-strip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: var(--shadow-strong);
  max-height: 380px;
}
.proceso-img-strip img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* Calidad lab image */
.calidad-lab {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.calidad-lab img { width: 100%; height: 220px; object-fit: cover; display: block; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .recetas-grid { grid-template-columns: repeat(2, 1fr); }
  .cobertura-stats { grid-template-columns: repeat(2, 1fr); }
  .cobertura-grid { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: auto 1fr; gap: 20px; }
  .timeline-item:nth-child(odd) .t-content,
  .timeline-item:nth-child(even) .t-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .t-dot,
  .timeline-item:nth-child(even) .t-dot { grid-column: 1; }
  .t-empty { display: none; }

  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .producto-featured { grid-column: span 2; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero { padding-top: 200px; padding-bottom: 80px; }

  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .calidad-grid { grid-template-columns: 1fr; gap: 50px; }
  .ubicacion-grid { grid-template-columns: 1fr; }
  .ubicacion-map { min-height: 380px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  section { padding: 80px 0 !important; }
  .hero { padding-top: 180px !important; }

  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-sep { display: none; }
  .stat { flex: 1; min-width: 100px; }

  .marquee {
    background:
      linear-gradient(var(--pm-lime), var(--pm-lime)) 20px 0 / calc(100% - 40px) 4px no-repeat,
      linear-gradient(var(--pm-lime), var(--pm-lime)) 20px 100% / calc(100% - 40px) 4px no-repeat,
      var(--pm-ink);
  }
  .marquee::before,
  .marquee::after { width: 20px; }

  .recetas-grid { grid-template-columns: 1fr; }
  .cobertura-stats { grid-template-columns: repeat(2, 1fr); }
  .cobertura-visual img { min-height: 200px; }
  .proceso-img-strip img { height: 220px; }

  .productos-grid { grid-template-columns: 1fr; }
  .producto-featured { grid-template-columns: 1fr; grid-column: span 1; }
  .producto-featured .producto-body { padding: 24px; }
  .producto-featured h3 { font-size: 26px; }

  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 36px 28px; }

  .valores { grid-template-columns: 1fr; }

  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-cow { width: 150px; margin: 0 auto; }
  .cta-content h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
.footer-dev { text-align: center; }

  .hero-badge { padding: 8px 14px; }
  .hero-badge span { font-size: 18px; }
  .hero-badge small { font-size: 11px; }
  .badge-1 { right: 0; }
  .badge-2 { left: 0; }
  .badge-3 { right: 0; }

  .float-whats {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }
  .float-whats svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-head h2 { font-size: 30px; }
  .mv-card h3 { font-size: 28px; }
  .ubicacion-card { padding: 28px 24px; }
  .nosotros-card { padding: 28px 24px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.producto-media img { cursor: zoom-in; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 30, 40, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
  animation: lbFadeIn 0.22s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: min(90vw, 820px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  animation: lbZoomIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
@keyframes lbZoomIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--pm-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--pm-white);
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   TABLAS NUTRICIONALES
   ============================================ */

.nutri-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--pm-cyan-mist);
  border: 1.5px solid var(--pm-cyan-soft);
  border-radius: var(--radius-sm);
}
.nutri-links-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pm-cyan-deep);
  margin-right: 4px;
  white-space: nowrap;
}
.nutri-link {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--pm-white);
  border: 1.5px solid var(--pm-cyan);
  color: var(--pm-cyan-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  white-space: nowrap;
}
.nutri-link:hover {
  background: var(--pm-cyan);
  color: var(--pm-white);
  transform: translateY(-1px);
}

.nutri-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 40, 55, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nutri-modal.open {
  opacity: 1;
  pointer-events: all;
}
.nutri-modal.open .nutri-dialog {
  transform: translateY(0) scale(1);
}

.nutri-dialog {
  background: var(--pm-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-strong);
}

.nutri-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.nutri-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pm-cyan);
  margin-bottom: 4px;
}
.nutri-product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-ink);
  line-height: 1.2;
}
.nutri-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--pm-line);
  color: var(--pm-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nutri-close:hover { background: var(--pm-cyan); color: var(--pm-white); }

.nutri-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.nutri-tab {
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--pm-line);
  background: transparent;
  color: var(--pm-grey);
  cursor: pointer;
  transition: all 0.2s;
}
.nutri-tab.active,
.nutri-tab:hover {
  border-color: var(--pm-cyan);
  background: var(--pm-cyan-mist);
  color: var(--pm-cyan-deep);
}

.nutri-info-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--pm-cyan-mist);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--pm-ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}
.nutri-info-bar b { color: var(--pm-ink); }

.nutri-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #1a1a1a;
  font-size: 13px;
}
.nutri-table thead tr {
  background: var(--pm-ink);
  color: var(--pm-white);
}
.nutri-table th {
  padding: 8px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  letter-spacing: 0.3px;
}
.nutri-table th.nth-label { text-align: left; }
.nutri-table td {
  padding: 5px 10px;
  border-top: 1px solid #d0d0d0;
  text-align: right;
  color: var(--pm-ink);
}
.nutri-table td.nc { text-align: left; }

.nutri-kcal td {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px !important;
  padding: 10px 10px !important;
  background: #f5f5f5;
  border-top: none !important;
  border-bottom: 3px solid #1a1a1a;
}
.nutri-kcal td.nc { font-size: 14px !important; font-weight: 700; }

.nutri-row.l1 td.nc { padding-left: 22px; }
.nutri-row.l2 td.nc { padding-left: 38px; }

.nutri-sep td {
  height: 3px;
  background: #1a1a1a;
  padding: 0 !important;
  border: none !important;
}

.nutri-micro td {
  color: var(--pm-ink-soft);
  font-size: 12px;
  border-top: 1px solid #e0e0e0;
}
.nutri-micro td.nc { color: var(--pm-ink-soft); }

.nutri-footnote {
  font-size: 11px;
  color: var(--pm-grey);
  margin-top: 14px;
  line-height: 1.55;
}

.footer-dev {
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-dev strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

@media (max-width: 480px) {
  .nutri-dialog {
    padding: 20px 16px 20px;
    border-radius: var(--radius-md);
    max-height: 95vh;
  }
  .nutri-product-name { font-size: 17px; }
  .nutri-info-bar { font-size: 12px; gap: 12px; }
  .nutri-table { font-size: 12px; }
  .nutri-table th { font-size: 11px; }
}
