/* ============================================================
   Cartago Horeca — Static Site Stylesheet
   Primary color: #60804A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --green:        #60804A;
  --green-dark:   #4a6338;
  --green-light:  #7a9b5c;
  --green-bg:     #f0f5ec;
  --white:        #ffffff;
  --off-white:    #f8f8f6;
  --text:         #2d2d2d;
  --text-mid:     #555555;
  --text-light:   #888888;
  --border:       #dedede;
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --radius:       6px;
  --transition:   .25s ease;
  --nav-h:        80px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: .75rem auto 1rem;
  border-radius: 2px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Language dropdown */
.lang-drop {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: .3rem .55rem .3rem .45rem;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.lang-current:hover,
.lang-drop.open .lang-current {
  border-color: var(--green);
  color: var(--green);
}
.lang-current img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
}
.chevron { transition: transform var(--transition); }
.lang-drop.open .chevron { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  min-width: 100px;
  z-index: 200;
  padding: .25rem 0;
}
.lang-drop.open .lang-menu { display: block; }
.lang-menu li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.lang-menu li a:hover { background: var(--green-bg); color: var(--green); }
.lang-menu li a img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; }

/* WhatsApp floating badge in nav */
.nav-wa {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: var(--white) !important;
  padding: .5rem 1rem !important;
  border-radius: 25px;
  font-size: .82rem !important;
}
.nav-wa:hover { background: #1daf55; }
.nav-wa::after { display: none !important; }
.nav-wa img { width: 18px; height: 18px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SLIDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--white);
}
.hero-content h1 {
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 800;
  max-width: 800px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  margin-bottom: 1.8rem;
}
/* Slider nav dots */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.hero-dots button.active { background: var(--white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURED PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.featured-products {
  background: #f6f6f6;
  padding: 5rem 1.5rem 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.featured-col img {
  height: 235px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.producto-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: .4rem;
  margin-bottom: .5rem;
  font-family: 'Raleway', sans-serif;
}
.producto-desc {
  font-size: .95rem;
  color: var(--text-mid);
  min-height: 155px;
  margin-bottom: 1.5rem;
  padding: 0 .25rem;
  line-height: 1.6;
}
.featured-col .btn { margin-bottom: 1.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   QUE HACEMOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hacemos-wrapper {
  background-color: var(--white);
  background-image: url('/img/about/hacemos-bg.png');
  background-repeat: no-repeat;
  background-position: center 125px;
  background-size: 100% auto;
}
.que-hacemos {
  padding: 5rem 0 3rem;
}
.hacemos-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}
.hacemos-text .section-title { color: var(--text); }
.hacemos-text .divider { background: var(--green); margin-left: 0; }
.hacemos-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-top: 1rem;
}
/* About images grid */
.about-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img-item {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
}
.about-img-item:last-child {
  clip-path: inset(0 50% 0 0);
  background-position: left center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POR QUÉ ELEGIRNOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.por-que {
  padding: 5rem 1.5rem;
  background: transparent;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.benefit-item:hover { transform: translateY(-3px); }
.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefit-item h3 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-dark);
  line-height: 1.3;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CERTIFICACIONES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.certifications {
  padding: 5rem 1.5rem;
  background: transparent;
}
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.cert-logos img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition), transform var(--transition);
}
.cert-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACTO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.contact-info .divider { margin-left: 0; }
.contact-info p.intro {
  font-size: .95rem;
  color: var(--text-mid);
  margin: 1rem 0 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.contact-item-text {
  font-size: .9rem;
  color: var(--text-mid);
}
.contact-item-text strong {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green-dark);
  margin-bottom: .2rem;
  font-family: 'Raleway', sans-serif;
}
.contact-item-text a:hover { color: var(--green); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-mid);
  margin-bottom: .4rem;
  font-family: 'Raleway', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(96,128,74,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-status {
  display: none;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-top: 1rem;
}
.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-status.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.65);
  padding: 1.5rem;
  text-align: center;
  font-size: .82rem;
}
.site-footer p { margin: .2rem 0; }
.site-footer a {
  color: var(--green-light);
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--white); }

/* ── Floating WhatsApp button ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products-hero {
  background: var(--green);
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  color: var(--white);
  margin-top: var(--nav-h);
}
.products-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.products-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-top: .5rem;
  letter-spacing: .04em;
}

.products-section {
  padding: 4rem 1.5rem;
  background: var(--white);
}
.products-section-inner { max-width: 1200px; margin: 0 auto; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .6rem .9rem;
  border: 2px solid #E7F0E0;
  background: #E7F0E0;
  color: var(--text);
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  cursor: pointer;
  transition: border-color var(--transition);
  background-repeat: no-repeat;
  background-position: left .7rem center;
  background-size: 16px 16px;
}
.filter-btn:hover { border-color: var(--green); }
.filter-btn.active { border-color: var(--green); font-weight: 600; }
/* Filter icons */
.filter-btn[data-filter="arroz"]             { padding-left: 2.2rem; background-image: url('/img/icons/arroz.svg'); }
.filter-btn[data-filter="chia"]              { padding-left: 2.2rem; background-image: url('/img/icons/chia.svg'); }
.filter-btn[data-filter="quinoa"]            { padding-left: 2.2rem; background-image: url('/img/icons/quinoa.svg'); }
.filter-btn[data-filter="sesamo"]            { padding-left: 2.2rem; background-image: url('/img/icons/sesamo.svg'); }
.filter-btn[data-filter="aditivos-naturales"]{ padding-left: 2.2rem; background-image: url('/img/icons/harina.svg'); }
.filter-btn[data-filter="superalimentos"]    { padding-left: 2.2rem; background-image: url('/img/icons/harina.svg'); }
.filter-btn[data-filter="cacao"]             { padding-left: 2.2rem; background-image: url('/img/icons/sesamo.svg'); }
.filter-btn[data-filter="harina"]            { padding-left: 2.2rem; background-image: url('/img/icons/harina.svg'); }
.filter-btn[data-filter="lino"]              { padding-left: 2.2rem; background-image: url('/img/icons/lino.svg'); }
.filter-btn[data-filter="pipas"]             { padding-left: 2.2rem; background-image: url('/img/icons/pipas.svg'); }

/* Product grid on products page */
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.prod-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-4px);
}
.prod-card[data-hidden="true"] { display: none; }

.prod-img {
  aspect-ratio: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.prod-img img:not(.bio-badge) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform .4s ease;
}
.prod-card:hover .prod-img img:not(.bio-badge) { transform: scale(1.06); }
.bio-badge {
  position: absolute;
  top: .5rem; right: .5rem;
  width: 44px;
  height: auto;
  object-fit: contain;
}

/* Product card summary (always visible) */
.prod-summary {
  position: relative;
  padding: .9rem 2.6rem .8rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-summary h3 {
  font-size: .95rem;
  color: var(--green-dark);
  margin: 0;
  text-align: center;
  line-height: 1.35;
}
.prod-toggle {
  position: absolute;
  right: .7rem;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: none;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.prod-toggle:hover,
.prod-card.open .prod-toggle {
  background: var(--green);
  color: var(--white);
}

/* Collapsible product body */
.prod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1.1rem;
}
.prod-card.open .prod-body {
  max-height: 700px;
  padding-bottom: 1.1rem;
}

/* Origin row with flags */
.prod-origin-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.prod-origin-row span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
.origin-flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
}

/* Formats section */
.prod-formats {
  margin-bottom: .75rem;
}
.prod-formats strong {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-mid);
  margin-bottom: .4rem;
  font-family: 'Raleway', sans-serif;
}
.formats-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.format-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.format-item img {
  width: 40px;
  height: 60px;
  object-fit: contain;
}
.format-item span {
  font-size: .65rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
  text-align: center;
}
.prod-nutrition {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.prod-nutrition strong {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-mid);
  margin-bottom: .25rem;
  font-family: 'Raleway', sans-serif;
}
.prod-action {
  margin-top: 1rem;
}
.prod-action a {
  display: block;
  text-align: center;
  padding: .6rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background var(--transition);
}
.prod-action a:hover { background: var(--green-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about-img-grid::-webkit-scrollbar { display: none; }
  .about-img-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 4/3;
  }
  .about-img-item:last-child { clip-path: none; background-position: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links,
  .nav-wa {
    display: none;
    flex-direction: column;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    gap: 1.25rem;
    z-index: 999;
  }
  .hamburger { display: flex; }

  .featured-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .que-hacemos { padding: 3.5rem 0 1.5rem; }
  .por-que, .certifications, .contact, .featured-products {
    padding: 3.5rem 1rem;
  }
}
