/* ============================================
   GOURMEXA — Sistema de diseño v2
   Paleta corporativa: Negro · Blanco · Verde #275317
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --black: #0F0F0F;
  --black-soft: #1A1A1A;
  --ink: #2A2A2A;
  --ink-soft: #555555;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --gray-bg: #F7F7F5;
  --gray-bg-soft: #FAFAFA;
  --line: #E8E8E6;
  --white: #FFFFFF;
  --green: #275317;
  --green-deep: #1A3A0F;
  --green-darker: #0F2207;
  --green-light: #3A7A23;
  --green-lighter: #4F9A2E;
  --green-soft: #E9F1E5;
  --whatsapp: #25D366;
  --whatsapp-deep: #128C7E;
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container: 1400px;
  --container-narrow: 1100px;
  --ease: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  --ease-out: cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); font-weight: 350; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 380; letter-spacing: -0.022em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 420; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 0.78rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); }
.italic-display, .it { font-style: italic; font-weight: 350; color: var(--green); }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--green);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.02em;
  transition: opacity 0.2s var(--ease);
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo img { height: 38px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-bg-soft);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.nav-menu li a {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.nav-menu li a:hover {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-menu li a.active {
  background: var(--black);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 12px -4px rgba(39, 83, 23, 0.4);
}
.nav-cta:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(39, 83, 23, 0.5);
}
.nav-cta .btn-arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.nav-cta:hover .btn-arrow { transform: translateX(3px); }

.nav-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: all 0.2s var(--ease);
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav.mobile-open { background: var(--white); }
  .nav.mobile-open .nav-menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--line);
    padding: 1rem 2rem 2rem;
    gap: 0.2rem;
  }
  .nav.mobile-open .nav-menu li { width: 100%; }
  .nav.mobile-open .nav-menu li a {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    font-family: var(--font-display);
    border-radius: 4px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 12px -4px rgba(39, 83, 23, 0.35); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--black); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.82rem; }

/* ===== HERO ===== */
.hero { padding: 9rem 0 6rem; position: relative; overflow: hidden; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: center; }
.hero h1 { font-size: clamp(3rem, 7.5vw, 6.8rem); letter-spacing: -0.03em; line-height: 0.97; margin-bottom: 2rem; font-weight: 350; }
.hero h1 .it { color: var(--green); }
.hero-lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 2.5rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-img { position: relative; aspect-ratio: 4/5; background: var(--gray-bg); border-radius: 8px; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease-out; }
.hero-img:hover img { transform: scale(1.05); }
.hero-img-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hero-deco {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 300;
  color: var(--green);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: -1;
  bottom: -3rem; right: -2rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  padding-left: 4rem;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 350;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item::after { content: '✦'; color: var(--green-lighter); font-style: normal; font-size: 0.8rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CATEGORIES ===== */
.categories { padding: 6rem 0 5rem; background: var(--white); }
.categories-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.categories-head h2 { max-width: 720px; }
.categories-head .sub { color: var(--ink-soft); max-width: 360px; font-size: 1rem; }
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.category-card {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid var(--line);
}
.category-card:hover { background: var(--black); color: var(--white); transform: translateY(-4px); }
.category-card:hover h3 { color: var(--white); }
.category-card:hover .category-card-meta { color: var(--gray-light); }
.category-card-img { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 0.4s var(--ease); }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card:hover .category-card-img { opacity: 0.4; }
.category-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}
.category-card > * { position: relative; z-index: 1; }
.category-card-num { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); }
.category-card:hover .category-card-num { color: var(--green-lighter); }
.category-card h3 { margin-top: auto; font-size: 2.4rem; margin-bottom: 0.6rem; font-weight: 380; letter-spacing: -0.02em; }
.category-card-meta { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.category-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; }
.category-card-soon { background: var(--gray-bg-soft); cursor: default; border: 1px dashed var(--gray-light); }
.category-card-soon:hover { background: var(--gray-bg-soft); color: inherit; transform: none; }
.category-card-soon h3 { color: var(--gray); }
.category-card-soon:hover h3 { color: var(--gray); }
@media (max-width: 800px) { .categories-grid { grid-template-columns: 1fr; } }

/* ===== VALUE PROPS ===== */
.value-props { background: var(--black); color: var(--white); padding: 6rem 0; }
.value-props .eyebrow { color: var(--green-lighter); }
.value-props .eyebrow::before { background: var(--green-lighter); }
.value-props h2 { color: var(--white); margin: 1.5rem 0 4rem; max-width: 900px; }
.value-props h2 .it { color: var(--green-lighter); }
.value-props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.value-item { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
.value-item-num { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; font-weight: 300; color: var(--green-lighter); display: block; margin-bottom: 1rem; }
.value-item h4 { color: var(--white); margin-bottom: 0.7rem; font-family: var(--font-display); font-weight: 450; font-size: 1.3rem; letter-spacing: -0.01em; }
.value-item p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
@media (max-width: 800px) { .value-props-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 500px) { .value-props-grid { grid-template-columns: 1fr; } }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: block;
  color: inherit;
}
.product-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(39, 83, 23, 0.15); }
.product-card-img { aspect-ratio: 1/1; background: var(--gray-bg); overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card-body { padding: 1.5rem 1.5rem 1.6rem; }
.product-card-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); display: block; margin-bottom: 0.6rem; }
.product-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; font-weight: 420; letter-spacing: -0.015em; }
.product-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1rem; }
.product-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--gray); margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.product-card-actions .btn-sm { padding: 0.65rem 0.5rem; font-size: 0.78rem; text-align: center; justify-content: center; }
.product-card-actions .btn-wa {
  grid-column: 1 / -1;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.product-card-actions .btn-wa:hover { background: var(--whatsapp-deep); }
.product-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--black); margin-top: 0.5rem; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .product-grid { grid-template-columns: 1fr; } }

/* ===== PRODUCTS PAGE - Masonry ===== */
.products-hero { padding: 8rem 0 4rem; background: var(--white); position: relative; overflow: hidden; }
.products-hero h1 { font-size: clamp(3rem, 8vw, 7rem); margin: 1rem 0 2rem; letter-spacing: -0.03em; line-height: 0.96; }
.products-hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; line-height: 1.55; }

.masonry-section { padding: 4rem 0 6rem; background: var(--white); }
.masonry { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 110px; gap: 1.2rem; }
.tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-bg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.15); }
.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.tile img.is-active { opacity: 1; }
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.tile-overlay { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: var(--white); }
.tile-overlay .cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--green);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.tile-overlay h3 { color: var(--white); font-size: 1.3rem; font-weight: 420; margin: 0; line-height: 1.1; letter-spacing: -0.015em; }
.tile-overlay h3 .it { color: var(--green-lighter); }
.tile-overlay .meta { font-size: 0.78rem; font-weight: 500; margin-top: 0.4rem; opacity: 0.85; letter-spacing: 0.02em; }
.tile-overlay .arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s var(--ease);
}
.tile:hover .tile-overlay .arrow { background: var(--green); color: var(--white); transform: rotate(-45deg); }

.tile-1 { grid-column: span 7; grid-row: span 5; }
.tile-2 { grid-column: span 5; grid-row: span 3; }
.tile-3 { grid-column: span 5; grid-row: span 3; }
.tile-4 { grid-column: span 4; grid-row: span 4; }
.tile-5 { grid-column: span 4; grid-row: span 4; }
.tile-6 { grid-column: span 4; grid-row: span 4; }

.tile-quote {
  background: var(--black);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: default;
}
.tile-quote::after { display: none; }
.tile-quote:hover { transform: none; box-shadow: none; }
.tile-quote .q-eyebrow { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--green-lighter); margin-bottom: 1rem; }
.tile-quote h3 { color: var(--white); font-size: 1.7rem; font-weight: 380; letter-spacing: -0.015em; line-height: 1.2; }
.tile-quote h3 .it { color: var(--green-lighter); }

@media (max-width: 980px) {
  .masonry { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .tile-1 { grid-column: span 6; grid-row: span 5; }
  .tile-2 { grid-column: span 6; grid-row: span 3; }
  .tile-3 { grid-column: span 6; grid-row: span 3; }
  .tile-4 { grid-column: span 3; grid-row: span 4; }
  .tile-5 { grid-column: span 3; grid-row: span 4; }
  .tile-6 { grid-column: span 6; grid-row: span 3; }
}
@media (max-width: 600px) {
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tile-1, .tile-2, .tile-3, .tile-4, .tile-5, .tile-6 { grid-column: 1; grid-row: span 1; }
  .tile-1 { grid-row: span 2; }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 9rem 0 5rem; background: var(--white); }
.product-detail-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 5rem; margin-bottom: 5rem; }
.gallery { position: sticky; top: 100px; height: fit-content; }
.gallery-main { aspect-ratio: 1/1; background: var(--gray-bg); border-radius: 8px; overflow: hidden; margin-bottom: 1rem; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.gallery-thumbs .thumb {
  aspect-ratio: 1/1;
  background: var(--gray-bg);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s var(--ease);
  padding: 0;
}
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .thumb.active { border-color: var(--green); }
.gallery-thumbs .thumb:hover { border-color: var(--green-light); }

.product-info { padding-top: 1rem; }
.product-info .eyebrow { margin-bottom: 1.5rem; }
.product-info h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: -0.025em; line-height: 1; margin-bottom: 1.5rem; font-weight: 350; }
.product-info h1 .it { font-style: italic; color: var(--green); }
.product-lead { font-size: 1.1rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 2rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.product-tag { background: var(--green-soft); color: var(--green-deep); font-size: 0.78rem; padding: 0.5rem 0.9rem; border-radius: 999px; letter-spacing: 0.02em; font-weight: 600; }

.spec-table { border-top: 1px solid var(--line); margin: 2rem 0 2.5rem; }
.spec-row { display: grid; grid-template-columns: 0.6fr 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.spec-row .spec-label { color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; font-weight: 700; }
.spec-row .spec-value { color: var(--ink); font-weight: 500; line-height: 1.5; }

.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 2.5rem; }
.product-actions .btn-wa {
  grid-column: 1 / -1;
  background: var(--whatsapp);
  color: white;
  padding: 1.15rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}
.product-actions .btn-wa:hover { background: var(--whatsapp-deep); }
.product-actions .btn-wa svg { fill: currentColor; }

.notice-box {
  background: var(--gray-bg);
  border-left: 3px solid var(--green);
  padding: 1.3rem 1.6rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.applications { margin-top: 3rem; }
.applications h3 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 420; }
.app-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.app-tag {
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease);
}
.app-tag:hover { background: var(--green); }
.applications-note { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-top: 1.5rem; font-style: italic; }
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; } .gallery { position: relative; top: 0; } }

/* ===== CROSS-SELL CAROUSEL ===== */
.cross-sell { background: var(--gray-bg-soft); padding: 5rem 0; border-top: 1px solid var(--line); }
.cross-sell-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.cross-sell-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cross-sell-controls { display: flex; gap: 0.5rem; }
.cs-arrow {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s var(--ease);
  color: var(--black);
}
.cs-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.cs-arrow:disabled { opacity: 0.4; cursor: not-allowed; }
.cs-track-wrap { position: relative; margin: 0 -2.5rem; padding: 0 2.5rem; }
.cs-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.cs-track::-webkit-scrollbar { display: none; }
.cs-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.cs-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(39, 83, 23, 0.18); }
.cs-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-bg); position: relative; }
.cs-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cs-card:hover .cs-card-img img { transform: scale(1.05); }
.cs-card-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cs-card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.cs-card-cat { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); }
.cs-card h3 { font-size: 1.2rem; font-weight: 420; letter-spacing: -0.01em; line-height: 1.15; }
.cs-card p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.4rem;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  align-self: flex-start;
}
.cs-btn:hover { background: var(--green); transform: translateX(2px); }
.cs-btn .btn-arrow { transition: transform 0.2s var(--ease); }
.cs-btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== ABOUT ===== */
.about-hero { padding: 9rem 0 5rem; background: var(--white); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 5rem; align-items: center; }
.about-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.025em; line-height: 1; margin-bottom: 1.5rem; font-weight: 350; }
.about-lead { font-size: 1.15rem; line-height: 1.55; color: var(--ink-soft); max-width: 460px; }
.about-img { aspect-ratio: 4/5; background: var(--gray-bg); border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; } }

.manifesto { background: var(--black); color: var(--white); padding: 7rem 0; }
.manifesto h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); font-weight: 380; color: var(--white); letter-spacing: -0.015em; line-height: 1.2; }
.manifesto h2 .it { color: var(--green-lighter); }
.manifesto-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 5rem; padding-top: 4rem; border-top: 1px solid rgba(255,255,255,0.15); }
.manifesto-stats .stat .num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-style: italic; font-weight: 300; color: var(--green-lighter); display: block; letter-spacing: -0.03em; }
.manifesto-stats .stat .label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

.pillars { padding: 6rem 0; background: var(--white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pillar { padding: 2rem; background: var(--gray-bg); border-radius: 8px; border: 1px solid var(--line); transition: all 0.3s var(--ease); }
.pillar:hover { background: var(--white); border-color: var(--green); transform: translateY(-4px); box-shadow: 0 14px 30px -10px rgba(39, 83, 23, 0.12); }
.pillar-num { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; font-weight: 300; color: var(--green); display: block; margin-bottom: 1rem; }
.pillar h3 { margin-bottom: 0.7rem; font-weight: 420; font-size: 1.4rem; }
.pillar p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 800px) { .manifesto-stats, .pillars-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== CHANNELS ===== */
.channels-hero { padding: 9rem 0 4rem; background: var(--white); }
.channels-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); margin: 1rem 0 1.5rem; letter-spacing: -0.025em; line-height: 1; font-weight: 350; }
.channels-hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 600px; }
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding: 2rem 0 5rem; }
.channel-card { background: var(--gray-bg); border-radius: 8px; padding: 2.2rem; border: 1px solid var(--line); transition: all 0.3s var(--ease); position: relative; overflow: hidden; min-height: 260px; }
.channel-card:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-3px); }
.channel-card:hover h3 { color: var(--white); }
.channel-card:hover p { color: rgba(255,255,255,0.75); }
.channel-card:hover .channel-num { color: var(--green-lighter); }
.channel-num { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; font-weight: 300; color: var(--green); display: block; margin-bottom: 1rem; }
.channel-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; font-weight: 420; }
.channel-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }
.channel-full { grid-column: 1 / -1; background: var(--green); color: var(--white); border-color: var(--green); }
.channel-full h3, .channel-full p { color: var(--white); }
.channel-full p { color: rgba(255,255,255,0.85); }
.channel-full .channel-num { color: rgba(255,255,255,0.6); }
.channel-full:hover { background: var(--green-deep); border-color: var(--green-deep); }
@media (max-width: 900px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .channels-grid { grid-template-columns: 1fr; } }

/* ===== CLIENTS CAROUSEL ===== */
.clients-section { padding: 5rem 0; background: var(--gray-bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.clients-head { text-align: center; margin-bottom: 3rem; }
.clients-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 380; margin-top: 1rem; }
.clients-head .lead { color: var(--ink-soft); max-width: 560px; margin: 1rem auto 0; }
.clients-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
  display: flex;
  gap: 4rem;
  animation: clients-scroll 30s linear infinite;
  width: max-content;
}
.clients-section:hover .clients-track { animation-play-state: paused; }
.client-logo {
  flex-shrink: 0;
  height: 70px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.25s var(--ease);
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo svg { max-height: 56px; width: auto; max-width: 100%; }
@keyframes clients-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2rem)); }
}

/* ===== CONTACT ===== */
.contact-hero { padding: 9rem 0 4rem; background: var(--white); }
.contact-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); margin: 1rem 0 1.5rem; letter-spacing: -0.025em; line-height: 1; font-weight: 350; }
.contact-section { padding: 2rem 0 6rem; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
.contact-info h3 { margin-bottom: 1.5rem; font-weight: 420; font-size: 1.6rem; }
.contact-info-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block .label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 0.7rem; }
.contact-info-block a, .contact-info-block .value { display: block; font-size: 1rem; color: var(--black); margin-bottom: 0.3rem; font-weight: 500; transition: color 0.2s var(--ease); }
.contact-info-block a:hover { color: var(--green); }

.contact-form { background: var(--gray-bg); border-radius: 8px; padding: 2.5rem; border: 1px solid var(--line); }
.contact-form h3 { margin-bottom: 0.5rem; font-weight: 420; font-size: 1.6rem; }
.contact-form .form-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 0.5rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.form-status {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  display: none;
}
.form-status.success { display: block; background: var(--green-soft); color: var(--green-deep); border-left: 3px solid var(--green); }
.form-status.error { display: block; background: #FEE; color: #962; border-left: 3px solid #C44; }
.form-status.loading { display: block; background: var(--gray-bg-soft); color: var(--ink-soft); border-left: 3px solid var(--gray); }

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover { background: var(--green); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } .form-row { grid-template-columns: 1fr; } }

/* ===== CTA Banner ===== */
.cta-banner { background: var(--green); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 2rem; font-weight: 380; letter-spacing: -0.015em; }
.cta-banner h2 .it { font-style: italic; color: var(--green-soft); }
.cta-banner .ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--white); color: var(--green-deep); }
.cta-banner .btn-primary:hover { background: var(--black); color: var(--white); }
.cta-banner .btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 3rem; margin-bottom: 4rem; }
.footer h5 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green-lighter); margin-bottom: 1.2rem; font-weight: 700; }
.footer-brand .logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); }
.footer-brand .logo img { height: 38px; width: auto; filter: invert(1) brightness(2); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.93rem; line-height: 1.55; margin-bottom: 1.5rem; max-width: 320px; font-style: italic; font-family: var(--font-display); font-weight: 350; }

.footer-social-brand { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social-brand a {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social-brand a:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(39, 83, 23, 0.6);
}
.footer-social-brand svg { width: 17px; height: 17px; fill: currentColor; }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.93rem; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--green-lighter); }

.footer-contact { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s var(--ease); }
.footer-contact a:hover { color: var(--green-lighter); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 1rem; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem 0.85rem 1rem;
  background: var(--whatsapp);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.float-wa svg { width: 22px; height: 22px; fill: currentColor; }
.float-wa:hover { background: var(--whatsapp-deep); transform: translateY(-3px); box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.6); }
@media (max-width: 580px) {
  .float-wa span { display: none; }
  .float-wa { padding: 0.85rem; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 0.82rem; color: var(--gray); letter-spacing: 0.04em; margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-soft); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--black); font-weight: 500; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards; }
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.35s; }
.reveal-delay-4 { animation-delay: 0.5s; }
.reveal-delay-5 { animation-delay: 0.65s; }
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== LEGAL PAGES ===== */
.legal-hero { padding: 9rem 0 3rem; background: var(--white); border-bottom: 1px solid var(--line); }
.legal-hero .breadcrumb { margin-bottom: 2rem; }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 350; letter-spacing: -0.025em; line-height: 1; margin-bottom: 1.5rem; }
.legal-hero h1 .it { font-style: italic; color: var(--green); }
.legal-hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 720px; line-height: 1.55; }
.legal-hero .updated { display: inline-block; margin-top: 1.5rem; padding: 0.5rem 1rem; background: var(--green-soft); color: var(--green-deep); border-radius: 999px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
.legal-body { padding: 4rem 0 6rem; background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 0.32fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.legal-toc { position: sticky; top: 100px; height: fit-content; padding: 1.5rem; background: var(--gray-bg); border-radius: 8px; border: 1px solid var(--line); }
.legal-toc h4 { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 700; margin-bottom: 1rem; }
.legal-toc ol { list-style: none; counter-reset: toc; padding: 0; }
.legal-toc li { counter-increment: toc; padding: 0.5rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--line); }
.legal-toc li:last-child { border-bottom: none; }
.legal-toc li::before { content: counter(toc, decimal-leading-zero); color: var(--green); font-weight: 700; margin-right: 0.6rem; font-size: 0.78rem; }
.legal-toc a { color: var(--ink-soft); transition: color 0.2s var(--ease); }
.legal-toc a:hover { color: var(--green); }
.legal-content { max-width: 720px; }
.legal-content section { margin-bottom: 3rem; scroll-margin-top: 100px; }
.legal-content h2 { font-size: 1.6rem; font-weight: 420; margin-bottom: 1.2rem; letter-spacing: -0.015em; color: var(--black); }
.legal-content h2 .num { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--green); letter-spacing: 0.1em; margin-right: 0.8rem; vertical-align: middle; text-transform: uppercase; }
.legal-content h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--black); margin: 1.5rem 0 0.7rem; letter-spacing: 0; }
.legal-content p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.1rem; }
.legal-content ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.legal-content ul li { position: relative; padding: 0.4rem 0 0.4rem 1.5rem; font-size: 0.97rem; line-height: 1.6; color: var(--ink-soft); }
.legal-content ul li::before { content: '·'; position: absolute; left: 0.4rem; top: 0.35rem; color: var(--green); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.legal-content strong { color: var(--black); font-weight: 600; }
.legal-content a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(39,83,23,0.3); text-underline-offset: 3px; transition: text-decoration-color 0.2s var(--ease); }
.legal-content a:hover { text-decoration-color: var(--green); }
.legal-callout { background: var(--green-soft); border-left: 3px solid var(--green); padding: 1.5rem 1.75rem; border-radius: 0 4px 4px 0; margin: 1.5rem 0; font-size: 0.95rem; line-height: 1.6; color: var(--green-deep); }
.legal-callout strong { display: block; margin-bottom: 0.4rem; color: var(--green-deep); }
.legal-table { border-top: 1px solid var(--line); margin: 1.5rem 0; }
.legal-table-row { display: grid; grid-template-columns: 0.5fr 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.legal-table-row dt { color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; font-weight: 700; }
.legal-table-row dd { color: var(--black); line-height: 1.5; }
@media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr; gap: 2.5rem; } .legal-toc { position: relative; top: 0; } }

/* ===== CATEGORY FILTER ===== */
.cat-filter { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cat-filter button { padding: 0.6rem 1.2rem; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all 0.2s var(--ease); }
.cat-filter button:hover { border-color: var(--green); color: var(--green); }
.cat-filter button.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ============================================
   COMPATIBILIDAD — clases anteriores
   ============================================ */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--white);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 350;
}
.page-header h1 .italic-display { color: var(--green) !important; }
.page-header .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.55;
}

/* Old product card structure (legacy) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  padding: 2rem 0 5rem;
}
.products-grid .product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.products-grid .product-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(39, 83, 23, 0.18);
}
.products-grid .product-card .img-area {
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  overflow: hidden;
  position: relative;
}
.products-grid .product-card .img-area img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.products-grid .product-card:hover .img-area img { transform: scale(1.05); }
.products-grid .product-card .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.products-grid .product-card .badge.spicy { background: var(--black); }
.products-grid .product-card .body { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.products-grid .product-card .body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 420;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.products-grid .product-card .body h3 .it { color: var(--green); }
.products-grid .product-card .body .desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex: 1;
}
.products-grid .product-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--gray);
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.products-grid .product-card .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.products-grid .product-card .actions .btn-sm {
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s var(--ease);
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--green); }
.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.products-grid .product-card .actions .btn-wa {
  grid-column: 1 / -1;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.products-grid .product-card .actions .btn-wa:hover { background: var(--whatsapp-deep); }

@media (max-width: 800px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* WhatsApp button helper */
.btn-wa { background: var(--whatsapp); color: white; }
.btn-wa:hover { background: var(--whatsapp-deep); }

/* Form-group compat (legacy contact form) */
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* The form rows on contacto.html may use a different wrapper */
.contact-form form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 700px) { .contact-form form > div { grid-template-columns: 1fr; } }

/* ============================================
   ANTI-SPAM: honeypot + captcha matemático
   ============================================ */

/* Honeypot: oculto visualmente pero accesible al DOM (los bots lo llenan) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Captcha matemático visible */
.captcha-field {
  background: var(--green-soft);
  border: 1px solid rgba(39, 83, 23, 0.18);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin-top: 0.5rem;
}
.captcha-field label {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.86rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--green-deep) !important;
  font-weight: 600 !important;
  margin-bottom: 0.7rem !important;
  font-family: var(--font-body);
}
.captcha-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.captcha-num {
  display: inline-block;
  background: var(--white);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05em;
  padding: 0.05rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(39, 83, 23, 0.2);
  min-width: 1.6em;
  text-align: center;
}
.captcha-field input {
  border-color: rgba(39, 83, 23, 0.25) !important;
  background: var(--white) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  max-width: 200px;
}
.captcha-field input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(39, 83, 23, 0.12);
}
.captcha-field.captcha-error {
  background: #FEF2F2;
  border-color: rgba(196, 68, 68, 0.3);
  animation: shake 0.4s var(--ease);
}
.captcha-field.captcha-error label { color: #962 !important; }
.captcha-field.captcha-error .captcha-shield {
  background: #C44;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ============================================
   ACTUALIZACIONES v3 — Logo real y client logos
   ============================================ */

/* Nav: logo más grande ahora que no hay texto al lado */
.nav-logo {
  gap: 0;
}
.nav-logo img {
  height: 48px !important;
  width: auto;
}
@media (max-width: 600px) {
  .nav-logo img { height: 40px !important; }
}

/* Footer: logo blanco real, sin filter */
.footer-brand .logo {
  margin-bottom: 1.4rem;
}
.footer-brand .logo img {
  height: 52px !important;
  width: auto;
  filter: none !important;  /* Anula el invert() anterior */
}

/* Client logos PNG reales */
.client-logo {
  height: 80px !important;
  width: 200px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.client-logo img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s var(--ease);
}
.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* Mercado Libre tiene aspect ratio cuadrado (logo apilado), darle más espacio */
.client-logo.client-ml {
  width: 140px !important;
}
.client-logo.client-ml img { max-height: 78px; }

/* ============================================
   INDEX v3 — Hero rediseñado
   ============================================ */
.hero-v3 {
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-v3-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-v3-text { position: relative; z-index: 2; }
.hero-v3-text h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 1.5rem 0 2rem;
  font-weight: 320;
}
.hero-v3-text h1 .it { color: var(--green); font-style: italic; font-weight: 320; }
.hero-v3-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-v3-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-v3-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-v3-meta-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--green);
  font-weight: 320;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-v3-meta-item .lbl {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  font-weight: 600;
}

.hero-v3-visual {
  position: relative;
  height: 640px;
}
.hero-v3-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-bg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
}
.hero-v3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.hero-v3-img:hover img { transform: scale(1.05); }
.hero-v3-img-main {
  width: 75%;
  height: 75%;
  top: 0;
  right: 0;
  z-index: 1;
}
.hero-v3-img-small {
  width: 52%;
  height: 48%;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 8px solid var(--white);
}
.hero-v3-img-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a3d6b;  /* azul oscuro como la etiqueta Europea */
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.hero-v3-img-tag.tag-green { color: var(--green); }

.hero-v3-deco {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 300;
  color: var(--green);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  bottom: -5rem;
  right: -3rem;
  line-height: 1;
  z-index: 0;
}

@media (max-width: 980px) {
  .hero-v3 { padding: 7rem 0 4rem; }
  .hero-v3-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-v3-visual { height: 480px; }
  .hero-v3-meta { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-v3-meta-item .num { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .hero-v3-visual { height: 380px; }
  .hero-v3-img-main { width: 80%; height: 78%; }
  .hero-v3-img-small { width: 56%; height: 52%; border-width: 6px; }
}

/* ============================================
   INDEX — Featured Products (cards azul / verde)
   ============================================ */
.featured-products {
  padding: 6rem 0 5rem;
  background: var(--white);
}
.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.featured-head h2 { max-width: 600px; }
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.featured-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 540px;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -16px rgba(0, 0, 0, 0.15);
}
.featured-card-blue { background: linear-gradient(180deg, #f4f7fb 0%, #e9eff7 100%); }
.featured-card-green { background: linear-gradient(180deg, #f3f7f0 0%, #e8efe3 100%); }
.featured-card-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 0;
  overflow: hidden;
}
.featured-card-photo img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.18));
  transition: transform 0.5s var(--ease);
}
.featured-card:hover .featured-card-photo img { transform: translateY(-6px) scale(1.03); }
.featured-card-info {
  padding: 2rem 2.5rem 2.5rem;
  background: var(--white);
}
.featured-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--ink-soft);
}
.featured-card-blue .featured-card-tag { background: #1a3d6b; color: var(--white); }
.featured-card-green .featured-card-tag { background: var(--green); color: var(--white); }
.featured-card-info h3 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  line-height: 1.05;
}
.featured-card-blue .featured-card-info h3 .it { color: #1a3d6b; }
.featured-card-info p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.featured-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.featured-card:hover .featured-card-cta { color: var(--green); }
.featured-card:hover .featured-card-cta .btn-arrow { transform: translateX(4px); }
.featured-card-cta .btn-arrow { transition: transform 0.25s var(--ease); }

@media (max-width: 800px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INDEX — Lifestyle Strip Gallery
   ============================================ */
.lifestyle-gallery {
  padding: 5rem 0 0;
  background: var(--white);
}
.lifestyle-head {
  text-align: center;
  margin-bottom: 3rem;
}
.lifestyle-head h2 { font-weight: 350; letter-spacing: -0.025em; }
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  height: 360px;
  overflow: hidden;
}
.lifestyle-tile {
  background-size: cover;
  background-position: center;
  transition: flex-grow 0.6s var(--ease), filter 0.4s var(--ease);
  filter: grayscale(0.15) brightness(0.92);
  cursor: pointer;
  position: relative;
}
.lifestyle-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.lifestyle-tile:hover {
  filter: grayscale(0) brightness(1);
}
.lifestyle-tile:hover::after { opacity: 0; }
@media (max-width: 800px) {
  .lifestyle-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
  .lifestyle-tile { aspect-ratio: 1/1; }
}

/* ============================================
   CONTACTO v2 — rediseño "Cotiza, pregunta, conversemos"
   ============================================ */
.contact-hero-v2 {
  padding: 8rem 0 4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-hero-v2 .eyebrow { color: var(--green); }
.contact-hero-v2 h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 1rem 0 1.5rem;
  font-weight: 320;
}
.contact-hero-v2 h1 .it { color: var(--green); font-style: italic; }
.contact-hero-v2 .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.contact-quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  max-width: 480px;
}
.contact-quick {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--gray-bg);
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.contact-quick:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}
.contact-quick svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--green);
  transition: fill 0.2s var(--ease);
}
.contact-quick:hover svg { fill: var(--white); }

.contact-hero-v2-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}
.contact-hero-v2-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-hero-v2-visual .badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Sección de cards "Cotiza, Pregunta, Conversemos" */
.contact-three-cards {
  padding: 4rem 0 5rem;
  background: var(--gray-bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.three-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.three-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.three-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.three-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 36px -14px rgba(39, 83, 23, 0.18);
}
.three-card:hover::before { transform: scaleX(1); }
.three-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s var(--ease);
}
.three-card:hover .three-card-icon { background: var(--green); }
.three-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
  transition: fill 0.3s var(--ease);
}
.three-card:hover .three-card-icon svg { fill: var(--white); }
.three-card-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.three-card h3 {
  font-size: 1.5rem;
  font-weight: 420;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.three-card h3 .it { color: var(--green); }
.three-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.three-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  transition: all 0.2s var(--ease);
}
.three-card:hover .three-card-link { color: var(--green); }
.three-card:hover .three-card-link .btn-arrow { transform: translateX(4px); }
.three-card-link .btn-arrow { transition: transform 0.25s var(--ease); display: inline-block; }

@media (max-width: 900px) {
  .contact-hero-v2-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-hero-v2-visual { aspect-ratio: 16/12; }
  .three-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CLIENT LINKS — clientes con enlace a Maps
   ============================================ */
.client-link {
  cursor: pointer !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.client-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   MOBILE RESPONSIVE — review v4
   ============================================ */

/* Container padding ajustado para móvil */
@media (max-width: 720px) {
  .container { padding: 0 1.25rem; }
}

/* Tipografía - reducir h1 en pantallas muy chicas */
@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 9vw, 3rem) !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem) !important; line-height: 1.1; }
  h3 { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; }
}

/* Hero v3 mobile */
@media (max-width: 720px) {
  .hero-v3 { padding: 6.5rem 0 3rem; }
  .hero-v3-grid { gap: 2rem; }
  .hero-v3-text h1 {
    font-size: clamp(2.5rem, 11vw, 4rem) !important;
    line-height: 1;
  }
  .hero-v3-lead {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-v3-meta {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.6rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .hero-v3-meta-item .num { font-size: 1.4rem; }
  .hero-v3-meta-item .lbl { font-size: 0.62rem; letter-spacing: 0.06em; }
  .hero-v3-visual { height: 360px; }
  .hero-v3-img-main { width: 78%; height: 76%; }
  .hero-v3-img-small { width: 58%; height: 50%; border-width: 5px; }
  .hero-v3-img-tag { font-size: 0.62rem; padding: 0.4rem 0.8rem; }
}
@media (max-width: 480px) {
  .hero-v3-visual { height: 300px; }
  .hero-v3-ctas .btn { padding: 0.85rem 1.3rem; font-size: 0.85rem; }
}

/* Featured cards mobile */
@media (max-width: 720px) {
  .featured-card { min-height: auto; }
  .featured-card-photo { padding: 2rem 1.5rem 0; }
  .featured-card-photo img { max-height: 280px; }
  .featured-card-info { padding: 1.5rem 1.6rem 1.8rem; }
  .featured-card-info h3 { font-size: 1.6rem; }
}

/* Lifestyle gallery mobile */
@media (max-width: 720px) {
  .lifestyle-gallery { padding: 4rem 0 0; }
  .lifestyle-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 4px;
  }
  .lifestyle-tile {
    aspect-ratio: 4/3;
    min-height: 160px;
  }
}

/* Marquee items en mobile */
@media (max-width: 720px) {
  .marquee { padding: 1.1rem 0; }
  .marquee-item {
    font-size: 1.15rem;
    gap: 2.5rem;
  }
  .marquee-track { gap: 2.5rem; padding-left: 2.5rem; }
}

/* Value props en mobile */
@media (max-width: 720px) {
  .value-props { padding: 4rem 0; }
  .value-props h2 { margin: 1rem 0 2.5rem; }
}

/* Featured products head */
@media (max-width: 720px) {
  .featured-products { padding: 4rem 0; }
  .featured-head { margin-bottom: 2.5rem; }
  .featured-head h2 br { display: none; }
}

/* Categories mobile */
@media (max-width: 720px) {
  .categories { padding: 4rem 0 3rem; }
  .categories-head { margin-bottom: 2rem; }
  .category-card { padding: 1.8rem; min-height: 260px; }
  .category-card h3 { font-size: 1.8rem; }
}

/* Productos page (Masonry) mobile */
@media (max-width: 720px) {
  .products-hero { padding: 6.5rem 0 3rem; }
  .masonry-section { padding: 2.5rem 0 4rem; }
  .tile-overlay { padding: 1rem; }
  .tile-overlay h3 { font-size: 1.05rem; }
  .tile-overlay .arrow { width: 36px; height: 36px; top: 1rem; right: 1rem; font-size: 1rem; }
  .tile-overlay .cat { font-size: 0.62rem; padding: 0.25rem 0.6rem; margin-bottom: 0.5rem; }
  .tile-overlay .meta { font-size: 0.7rem; }
  .tile-quote { padding: 1.8rem; }
  .tile-quote h3 { font-size: 1.3rem; }
}

/* Cross-sell mobile */
@media (max-width: 720px) {
  .cross-sell { padding: 4rem 0; }
  .cross-sell-head { margin-bottom: 1.5rem; }
  .cs-track-wrap { margin: 0 -1.25rem; padding: 0 1.25rem; }
  .cs-card { flex: 0 0 240px; }
  .cs-card h3 { font-size: 1.05rem; }
}

/* Channels mobile */
@media (max-width: 720px) {
  .channels-hero { padding: 6.5rem 0 2.5rem; }
  .channels-grid { grid-template-columns: 1fr; gap: 0.8rem; padding: 1.5rem 0 4rem; }
  .channel-card { min-height: auto; padding: 1.7rem; }
  .channel-card h3 { font-size: 1.2rem; }
}

/* Clients carousel mobile */
@media (max-width: 720px) {
  .clients-section { padding: 3.5rem 0; }
  .clients-head { margin-bottom: 2rem; }
  .clients-track { gap: 2.5rem; }
  .client-logo {
    height: 56px !important;
    width: 130px !important;
    padding: 0 0.5rem;
  }
  .client-logo.client-ml { width: 92px !important; }
  .client-logo img { max-height: 48px; }
}

/* Contact page mobile */
@media (max-width: 720px) {
  .contact-hero-v2 { padding: 6.5rem 0 2.5rem; }
  .contact-hero-v2-grid { gap: 2rem; }
  .contact-hero-v2-visual { aspect-ratio: 4/3; }
  .contact-quick-links { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .contact-quick { font-size: 0.82rem; padding: 0.85rem 1rem; }
  .contact-three-cards { padding: 3rem 0 4rem; }
  .three-card { padding: 1.7rem 1.5rem; }
  .three-card h3 { font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .contact-quick-links { grid-template-columns: 1fr; }
}

/* Form mobile */
@media (max-width: 720px) {
  .contact-form { padding: 1.8rem 1.4rem; }
  .form-row { grid-template-columns: 1fr !important; gap: 0.8rem; }
  .contact-form form > div { grid-template-columns: 1fr !important; }
  .captcha-field { padding: 1rem 1.2rem; }
  .captcha-field label { font-size: 0.8rem !important; }
}

/* Footer mobile */
@media (max-width: 720px) {
  .footer { padding: 4rem 0 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; }
  .footer-brand p { max-width: 100%; }
}

/* CTA banner mobile */
@media (max-width: 720px) {
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner h2 br { display: none; }
}

/* Manifesto mobile */
@media (max-width: 720px) {
  .manifesto { padding: 5rem 0; }
  .manifesto h2 { font-size: 1.5rem !important; }
  .manifesto-stats { margin-top: 3rem; padding-top: 2.5rem; gap: 1.5rem; }
}

/* Legal pages mobile */
@media (max-width: 720px) {
  .legal-hero { padding: 6.5rem 0 2.5rem; }
  .legal-content h2 { font-size: 1.35rem; }
}

/* Product detail mobile */
@media (max-width: 720px) {
  .product-detail { padding: 6.5rem 0 3rem; }
  .product-info h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .product-tag { font-size: 0.72rem; padding: 0.4rem 0.7rem; }
  .spec-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 0.85rem 0; }
  .product-actions { grid-template-columns: 1fr; }
}

/* WhatsApp floating mobile - already handled but tighten */
@media (max-width: 480px) {
  .float-wa {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem;
  }
  .float-wa svg { width: 20px; height: 20px; }
}

/* Mobile menu open - asegurar que no se vea con scroll horizontal */
@media (max-width: 980px) {
  body.nav-open { overflow: hidden; }
  .nav.mobile-open .nav-cta {
    display: inline-flex !important;
    margin: 1rem 2rem 0;
    justify-content: center;
  }
}

/* Touch targets mínimo 44x44 */
@media (max-width: 720px) {
  .nav-menu li a,
  .footer-links a,
  .btn-sm,
  .product-card-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Print styles básicos */
@media print {
  .nav, .float-wa, .footer, .cta-banner { display: none !important; }
  body { color: #000; background: #fff; }
}
