/* =========================================================
   DML VEGETABLES
   Primera versión: navegación, hero y sección informativa.
   ========================================================= */

:root {
  --brown-950: #130f07;
  --brown-900: #20170b;
  --brown-850: #2a1e10;
  --brown-800: #342311;
  --brown-700: #51391e;
  --green-600: #70a91f;
  --green-500: #8ec62b;
  --green-400: #a7d84a;
  --cream-100: #fbf8ef;
  --cream-200: #f2ecdd;
  --white: #ffffff;
  --mango: #e69a22;
  --text-dark: #241c12;
  --text-soft: #675c4d;
  --shadow-lg: 0 26px 70px rgba(36, 26, 11, 0.16);
  --shadow-md: 0 18px 42px rgba(36, 26, 11, 0.13);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --page-gap: clamp(10px, 1.25vw, 18px);
  --content-width: 1420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-100);
  color: var(--text-dark);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

svg {
  display: block;
}

.page-shell {
  padding: var(--page-gap) var(--page-gap) 0;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--content-width));
  min-height: clamp(680px, 78vh, 850px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brown-950);
  box-shadow: var(--shadow-lg);
}

.hero__slides,
.hero__slide,
.hero__slide img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1.25s ease,
    transform 6.5s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(18, 13, 5, 0.96) 0%,
      rgba(22, 16, 7, 0.9) 26%,
      rgba(24, 17, 8, 0.59) 49%,
      rgba(20, 14, 6, 0.2) 74%,
      rgba(17, 12, 5, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 11, 5, 0.5) 0%,
      rgba(15, 11, 5, 0.02) 45%,
      rgba(18, 13, 6, 0.2) 100%
    );
  pointer-events: none;
}

/*
  SVG fluido para una curva limpia y continua.
  El corte empieza antes y su zona superior cubre toda el área de las cards.
*/
.hero__cutout {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: -3px;
  width: 75%;
  height: clamp(156px, 12vw, 190px);
  overflow: visible;
  color: var(--cream-100);
  pointer-events: none;
}

.hero__cutout path {
  fill: currentColor;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: clamp(18px, 2.3vw, 34px) clamp(22px, 4.2vw, 64px);
}

.brand {
  flex: 0 0 auto;
  width: clamp(118px, 11vw, 160px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
  width: min(78%, 920px);
  min-height: 68px;
  padding: 8px 12px 8px clamp(22px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  background: rgba(33, 27, 15, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 44px);
  flex: 1;
}

.main-nav a {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 590;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: var(--green-400);
  content: "";
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--green-400);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 100%;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch > span {
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.17);
}

.language-switch__button {
  min-width: 48px;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.language-switch__button:hover,
.language-switch__button:focus-visible {
  color: var(--white);
}

.language-switch__button.is-active {
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(112, 169, 31, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* =========================================================
   HERO COPY
   ========================================================= */

.hero__content {
  position: relative;
  z-index: 3;
  width: min(55%, 720px);
  padding: clamp(100px, 13vh, 150px) 0 160px clamp(26px, 5vw, 78px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 23px;
  color: var(--green-400);
  font-size: clamp(0.7rem, 0.85vw, 0.84rem);
  font-weight: 750;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(167, 216, 74, 0.62);
  border-radius: 50%;
}

.eyebrow__icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.3rem, 6.1vw, 6.3rem);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.hero__accent {
  margin-top: 0.06em;
  color: var(--green-400);
}

.hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  margin-top: 34px;
  padding: 9px 20px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 720;
  box-shadow: 0 18px 35px rgba(97, 151, 23, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 22px 44px rgba(97, 151, 23, 0.32);
}

.primary-button__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.primary-button__icon svg,
.primary-button__arrow {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.primary-button__arrow {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.primary-button:hover .primary-button__arrow,
.primary-button:focus-visible .primary-button__arrow {
  transform: translateX(4px);
}

.hero-pagination {
  position: absolute;
  z-index: 6;
  bottom: 56px;
  left: clamp(26px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  border-color: var(--green-400);
  background: var(--green-400);
}

/* =========================================================
   AJUSTE V7: unión hero + segunda sección
   Reduce el espacio crema superior sin modificar la curva
   ni la alineación inferior de ambas columnas.
   ========================================================= */

/* =========================================================
   COMPANY SECTION
   ========================================================= */

.company-section {
  position: relative;
  margin: -3px calc(var(--page-gap) * -1) 0;
  padding-inline: var(--page-gap);
  background: var(--cream-100);
}

.company-section__inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1.24fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: end;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding:
    clamp(20px, 2.2vw, 34px)
    clamp(24px, 4.2vw, 64px)
    clamp(56px, 5vw, 76px);
}

.company-copy {
  align-self: end;
  max-width: 640px;
  margin-bottom: 66px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-600);
}

.section-heading__icon svg {
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.section-heading h2 {
  max-width: 640px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(2.25rem, 2.8vw, 3.05rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading__line {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--mango);
}

.company-copy > p {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.68;
}

/* =========================================================
   FEATURE CAROUSEL
   ========================================================= */

.feature-carousel {
  position: relative;
  align-self: end;
  min-width: 0;
  width: 100%;
  justify-self: end;
  margin-top: clamp(-210px, -12.5vw, -170px);
}

.feature-carousel__footer {
  display: flex;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
}

.feature-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(81, 57, 30, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown-800);
  cursor: pointer;
  box-shadow: 0 9px 23px rgba(52, 35, 17, 0.08);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-500);
  color: var(--white);
}

.carousel-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}

.feature-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 20px) / 2);
  flex-direction: column;
  min-width: 0;
  min-height: clamp(500px, 31vw, 535px);
  overflow: hidden;
  border: 1px solid rgba(67, 45, 21, 0.08);
  border-radius: var(--radius-lg);
  background: var(--brown-900);
  box-shadow: var(--shadow-md);
}

.feature-card__media {
  position: relative;
  height: clamp(225px, 16vw, 260px);
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--brown-800);
}

.feature-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(30, 20, 9, 0.48));
  content: "";
  pointer-events: none;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.055);
}

.feature-card__media--avocado img {
  object-position: 53% center;
}

.feature-card__media--lemons img {
  object-position: center 58%;
}

.feature-card__media--packages img {
  object-position: 63% center;
}

.feature-card__body {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 46px 30px 29px;
  background:
    radial-gradient(circle at 100% 0%, rgba(141, 198, 43, 0.12), transparent 38%),
    linear-gradient(145deg, var(--brown-800), var(--brown-950));
  color: var(--white);
}

.feature-card__icon {
  position: absolute;
  top: -35px;
  left: 28px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 6px solid var(--brown-800);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(65, 103, 12, 0.28);
}

.feature-card__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.feature-card__line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 17px 0;
  border-radius: 99px;
  background: var(--mango);
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.58;
}

.feature-card__media--logistics {
  background:
    radial-gradient(circle at 72% 20%, rgba(230, 154, 34, 0.82), transparent 24%),
    linear-gradient(160deg, #64745c 0%, #324231 48%, #182419 100%);
}

.feature-card__media--logistics::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10, 17, 10, 0.65)),
    repeating-linear-gradient(
      90deg,
      transparent 0 44px,
      rgba(255, 255, 255, 0.025) 45px 46px
    );
  content: "";
}

.route-graphic {
  position: absolute;
  inset: 0;
}

.route-graphic__sun {
  position: absolute;
  top: 26px;
  right: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 192, 91, 0.82);
  box-shadow: 0 0 54px rgba(255, 192, 91, 0.46);
}

.route-graphic__line {
  position: absolute;
  top: 49%;
  left: 7%;
  width: 52%;
  height: 70px;
  border-top: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.route-graphic svg {
  position: absolute;
  right: 13%;
  bottom: 25px;
  width: 44%;
  fill: rgba(14, 23, 14, 0.68);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.anchor-target {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(167, 216, 74, 0.72);
  outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .header-panel {
    width: min(82%, 880px);
    gap: 16px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero__content {
    width: min(66%, 700px);
  }

  .company-section__inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.18fr);
    gap: 34px;
  }

  .company-copy {
    margin-bottom: 62px;
  }

  .section-heading__icon {
    width: 60px;
    height: 60px;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 3.4vw, 2.75rem);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .site-header {
    align-items: flex-start;
  }

  .header-panel {
    position: relative;
    width: auto;
    min-height: 58px;
    padding: 6px;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .language-switch {
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 40px));
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: rgba(27, 20, 10, 0.96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    backdrop-filter: blur(18px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: rgba(142, 198, 43, 0.12);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__content {
    width: min(74%, 680px);
    padding-top: 130px;
  }

  .hero__cutout {
    width: 76%;
    height: 142px;
  }

  .company-section__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 30px;
  }

  .company-copy {
    max-width: 720px;
    margin-bottom: 0;
  }

  .feature-carousel {
    width: 100%;
    margin-top: 0;
  }

  .feature-carousel__footer {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-xl: 25px;
    --radius-lg: 22px;
  }

  .page-shell {
    padding-right: 8px;
    padding-left: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__slide img {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        90deg,
        rgba(18, 13, 5, 0.96) 0%,
        rgba(22, 16, 7, 0.81) 66%,
        rgba(18, 13, 5, 0.48) 100%
      ),
      linear-gradient(
        180deg,
        rgba(18, 13, 5, 0.42) 0%,
        rgba(18, 13, 5, 0.08) 45%,
        rgba(18, 13, 5, 0.34) 100%
      );
  }

  .site-header {
    padding: 18px;
  }

  .brand {
    width: 105px;
  }

  .header-panel {
    gap: 5px;
  }

  .language-switch__button {
    min-width: 41px;
    min-height: 38px;
    padding: 0 9px;
    font-size: 0.82rem;
  }

  .hero__content {
    width: 100%;
    padding: 145px 24px 170px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .hero__lead {
    max-width: 500px;
    font-size: 1rem;
  }

  .hero__cutout {
    width: 94%;
    height: 104px;
  }

  .hero-pagination {
    bottom: 42px;
    left: 24px;
  }

  .company-section__inner {
    gap: 38px;
    padding: 28px 18px 70px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .company-copy > p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .feature-carousel {
    width: 100%;
    margin-top: 0;
  }

  .feature-card {
    flex-basis: 100%;
    min-height: 520px;
  }

  .feature-card__media {
    height: clamp(225px, 62vw, 310px);
  }

  .feature-card__body {
    min-height: 0;
    padding: 45px 25px 28px;
  }

  .feature-carousel__footer {
    justify-content: center;
  }

  .feature-carousel__controls {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 735px;
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    width: 92px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .language-switch__button {
    min-width: 35px;
    min-height: 34px;
    padding: 0 7px;
    font-size: 0.75rem;
  }

  .language-switch > span {
    height: 17px;
  }

  .hero__content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.62rem;
    letter-spacing: 0.19em;
  }

  .eyebrow__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13.2vw, 3.7rem);
  }

  .primary-button {
    width: 100%;
    justify-content: center;
    padding-right: 16px;
    padding-left: 10px;
    font-size: 0.9rem;
  }

  .company-section__inner {
    padding-right: 13px;
    padding-left: 13px;
  }


  .carousel-button {
    width: 41px;
    height: 41px;
  }
}



/* =========================================================
   PRODUCTOS DESTACADOS
   ========================================================= */

.products-showcase {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--content-width));
  min-height: 700px;
  margin: clamp(12px, 1.6vw, 22px) auto var(--page-gap);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brown-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.products-showcase__background,
.products-showcase__overlay {
  position: absolute;
  inset: 0;
}

.products-showcase__background {
  z-index: -3;
  background:
    url("../media/hero-frutas.png")
    center 48% / cover no-repeat;
  transform: scale(1.035);
}

.products-showcase__overlay {
  z-index: -2;
  background:
    radial-gradient(
      circle at 80% 14%,
      rgba(0, 0, 0, 0.12),
      transparent 29%
    ),
    linear-gradient(
      105deg,
      rgba(7, 6, 3, 0.96) 0%,
      rgba(14, 10, 5, 0.91) 46%,
      rgba(9, 8, 4, 0.87) 100%
    );
}

.products-showcase__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding:
    clamp(58px, 6vw, 86px)
    clamp(54px, 6vw, 92px)
    clamp(58px, 5.5vw, 82px);
}

.products-showcase__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(38px, 4.2vw, 58px);
  text-align: center;
}

.products-showcase h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 3.7vw, 4.25rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.products-showcase__title-line {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--mango);
}

.products-carousel {
  position: relative;
  padding-inline: 62px;
}

.products-carousel__viewport {
  overflow: hidden;
}

.products-carousel__track {
  display: flex;
  gap: clamp(28px, 3vw, 46px);
  will-change: transform;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}

.product-preview-card {
  --product-accent: var(--green-500);

  display: flex;
  flex: 0 0 calc((100% - (clamp(28px, 3vw, 46px) * 2)) / 3);
  min-width: 0;
  flex-direction: column;
  background: transparent;
  color: var(--white);
}

.product-preview-card--lemon {
  --product-accent: #c5d642;
}

.product-preview-card--mango {
  --product-accent: var(--mango);
}

.product-preview-card--avocado {
  --product-accent: var(--green-400);
}

.product-preview-card--orange {
  --product-accent: #e28b35;
}

.product-preview-card__media {
  position: relative;
  height: clamp(260px, 23vw, 340px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.product-preview-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 12px;
  border: 1px dashed color-mix(in srgb, var(--product-accent) 68%, white);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--product-accent) 12%, transparent),
      rgba(255, 255, 255, 0.025)
    );
  color: var(--product-accent);
  text-align: center;
  backdrop-filter: blur(5px);
}

.product-image-placeholder__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(16, 12, 6, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.product-image-placeholder__icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-image-placeholder > span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-preview-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 4px 0;
}

.product-preview-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.product-preview-card__varieties {
  margin: 10px 0 0 !important;
  color: var(--product-accent) !important;
  font-size: 0.76rem !important;
  font-weight: 790;
  letter-spacing: 0.09em;
  line-height: 1.45 !important;
  text-transform: uppercase;
}

.product-preview-card__body > p:not(.product-preview-card__varieties) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.62;
}

.product-preview-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: max-content;
  min-width: 146px;
  min-height: 43px;
  margin-top: 23px;
  padding: 9px 15px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 740;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.product-preview-card__link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

.product-preview-card__link:hover,
.product-preview-card__link:focus-visible {
  border-color: var(--product-accent);
  background: var(--product-accent);
  color: var(--brown-950);
  transform: translateY(-2px);
}

.product-preview-card__link:hover svg,
.product-preview-card__link:focus-visible svg {
  transform: translateX(4px);
}

.products-carousel__button,
.products-carousel__mobile-button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(8, 7, 4, 0.58);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.products-carousel__button {
  position: absolute;
  z-index: 4;
  top: 34%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.products-carousel__button--prev {
  left: 0;
}

.products-carousel__button--next {
  right: 0;
}

.products-carousel__button:hover,
.products-carousel__button:focus-visible,
.products-carousel__mobile-button:hover,
.products-carousel__mobile-button:focus-visible {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--brown-950);
}

.products-carousel__button--prev:hover,
.products-carousel__button--prev:focus-visible {
  transform: translateY(-50%) translateX(-3px);
}

.products-carousel__button--next:hover,
.products-carousel__button--next:focus-visible {
  transform: translateY(-50%) translateX(3px);
}

.products-carousel__button svg,
.products-carousel__mobile-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.products-carousel__mobile-controls {
  display: none;
}

@supports not (color: color-mix(in srgb, red 50%, white)) {
  .product-image-placeholder {
    border-color: var(--green-400);
    color: var(--green-400);
  }
}

@media (max-width: 1080px) {
  .product-preview-card {
    flex-basis: calc((100% - clamp(28px, 3vw, 46px)) / 2);
  }

  .product-preview-card__media {
    height: clamp(270px, 34vw, 360px);
  }
}

@media (max-width: 760px) {
  .products-showcase {
    min-height: auto;
  }

  .products-showcase__inner {
    padding: 56px 20px 54px;
  }

  .products-showcase h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .products-showcase__header {
    margin-bottom: 34px;
  }

  .products-carousel {
    padding-inline: 0;
  }

  .product-preview-card {
    flex-basis: 100%;
  }

  .product-preview-card__media {
    height: clamp(260px, 76vw, 360px);
  }

  .products-carousel__button {
    display: none;
  }

  .products-carousel__mobile-controls {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 28px;
  }

  .products-carousel__mobile-button {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .products-showcase__inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-preview-card__body {
    padding-top: 21px;
  }

  .product-preview-card__media {
    height: 280px;
  }
}



/* =========================================================
   CALIDAD Y PROCESOS
   ========================================================= */

.quality-section {
  width: min(100%, var(--content-width));
  margin: clamp(20px, 2vw, 28px) auto var(--page-gap);
}

.quality-section__inner {
  display: grid;
  grid-template-columns: minmax(390px, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 4.5vw, 78px);
  align-items: center;
  padding:
    clamp(38px, 4.3vw, 62px)
    clamp(24px, 4vw, 48px)
    clamp(34px, 4vw, 56px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream-100) 100%);
  box-shadow: 0 16px 44px rgba(36, 26, 11, 0.07);
}

.quality-gallery {
  position: relative;
  width: 100%;
  max-width: 660px;
  min-height: 640px;
  margin-inline: auto;
}

.quality-gallery__item {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(145deg, #f4efe3, #f7f1e6);
  box-shadow: 0 18px 40px rgba(36, 26, 11, 0.11);
}

.quality-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-gallery__item--tall {
  z-index: 1;
  top: 26px;
  left: 0;
  width: 40%;
  height: 570px;
  border-radius: 54px;
}

.quality-gallery__item--small {
  z-index: 1;
  top: 0;
  right: 2%;
  width: 34%;
  height: 535px;
  border-radius: 104px 104px 42px 42px;
}

.quality-gallery__item--portrait {
  z-index: 3;
  bottom: 0;
  left: 30%;
  width: 43%;
  height: 455px;
  border: 8px solid var(--cream-100);
  border-radius: 40px;
  box-shadow: 0 24px 48px rgba(36, 26, 11, 0.18);
}

.quality-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px dashed rgba(112, 169, 31, 0.55);
  background:
    radial-gradient(circle at 80% 18%, rgba(230, 154, 34, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(242,236,221,0.88));
  color: var(--green-600);
  text-align: center;
}

.quality-placeholder__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.84);
  color: var(--green-600);
  box-shadow: 0 12px 24px rgba(36, 26, 11, 0.09);
}

.quality-placeholder__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.quality-placeholder > span:last-child {
  color: var(--brown-700);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-content h2 {
  margin: 0 0 2px;
  color: var(--text-dark);
  font-size: clamp(2.25rem, 3.4vw, 4.1rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.quality-content__text {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.78;
}

.quality-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.quality-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 18px 24px;
  border: 1px solid rgba(81, 57, 30, 0.14);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.quality-item:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 169, 31, 0.28);
  box-shadow: 0 12px 24px rgba(36, 26, 11, 0.08);
}

.quality-item__number {
  color: var(--green-600);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 380;
  letter-spacing: -0.04em;
}

.quality-item h3 {
  margin: 0;
  color: var(--brown-800);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  font-weight: 670;
  line-height: 1.32;
}

@media (max-width: 1080px) {
  .quality-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quality-gallery {
    max-width: 650px;
    min-height: 610px;
    margin: 0 auto;
    padding-right: 0;
  }

  .quality-content {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .quality-section__inner {
    padding: 24px 18px 28px;
  }

  .quality-gallery {
    max-width: 520px;
    min-height: 500px;
  }

  .quality-gallery__item--tall {
    top: 22px;
    width: 41%;
    height: 438px;
    border-radius: 42px;
  }

  .quality-gallery__item--small {
    right: 1%;
    width: 35%;
    height: 410px;
    border-radius: 82px 82px 32px 32px;
  }

  .quality-gallery__item--portrait {
    left: 29%;
    width: 44%;
    height: 345px;
    border-width: 7px;
    border-radius: 31px;
  }

  .quality-content__text {
    line-height: 1.72;
  }

  .quality-item {
    min-height: 78px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .quality-item h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .quality-section__inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .quality-gallery {
    min-height: 405px;
  }

  .quality-gallery__item--tall {
    top: 18px;
    width: 42%;
    height: 360px;
    border-radius: 36px;
  }

  .quality-gallery__item--small {
    width: 36%;
    height: 336px;
    border-radius: 70px 70px 27px 27px;
  }

  .quality-gallery__item--portrait {
    left: 28%;
    width: 46%;
    height: 285px;
    border-width: 6px;
    border-radius: 27px;
  }

  .quality-placeholder > span:last-child {
    font-size: 0.6rem;
  }

  .quality-placeholder__icon {
    width: 48px;
    height: 48px;
  }

  .quality-content h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .quality-item {
    gap: 14px;
  }

  .quality-item__number {
    font-size: 1.45rem;
  }
}



/* =========================================================
   IMAGEN PANORÁMICA 16:9
   ========================================================= */

.wide-media-section {
  width: min(100%, var(--content-width));
  margin: clamp(20px, 2vw, 28px) auto var(--page-gap);
}

.wide-media-placeholder {
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  place-content: center;
  gap: 14px;
  overflow: hidden;
  border: 1px dashed rgba(112, 169, 31, 0.54);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(17, 13, 6, 0.5), rgba(17, 13, 6, 0.72)),
    url("../media/hero-frutas.png") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.wide-media-placeholder__icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(18, 13, 6, 0.48);
  backdrop-filter: blur(10px);
}

.wide-media-placeholder__icon svg {
  width: 38px;
  fill: none;
  stroke: var(--green-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.wide-media-placeholder strong {
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 740;
  letter-spacing: -0.03em;
}

.wide-media-placeholder > span:last-child {
  max-width: 560px;
  padding-inline: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* =========================================================
   MERCADOS
   ========================================================= */

.markets-section {
  width: min(100%, var(--content-width));
  margin: clamp(20px, 2vw, 28px) auto var(--page-gap);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 12%, rgba(142, 198, 43, 0.18), transparent 25%),
    linear-gradient(125deg, var(--brown-950) 0%, var(--brown-800) 58%, #26351d 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.markets-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(380px, 0.87fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding:
    clamp(64px, 7vw, 106px)
    clamp(32px, 6vw, 92px);
}

.markets-copy__eyebrow {
  margin: 0 0 20px;
  color: var(--green-400);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.markets-copy h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.9rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.markets-copy__text {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.75;
}

.markets-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.market-status-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.market-status-card--current {
  box-shadow: inset 3px 0 0 var(--green-400);
}

.market-status-card--target {
  box-shadow: inset 3px 0 0 var(--mango);
}

.market-status-card__label {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.market-status-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.15;
}

.market-status-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.6;
}

.markets-panel {
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(251, 248, 239, 0.95);
  color: var(--text-dark);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.markets-panel__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(81, 57, 30, 0.13);
}

.markets-panel__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-600);
}

.markets-panel__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.markets-panel__top p {
  margin: 0 0 6px;
  color: var(--green-600);
  font-size: 0.72rem;
  font-weight: 770;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.markets-panel__top h3 {
  margin: 0;
  color: var(--brown-900);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  letter-spacing: -0.03em;
}

.client-types {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.client-types li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 13px 16px;
  border: 1px solid rgba(81, 57, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.client-types span {
  color: var(--green-600);
  font-size: 0.83rem;
  font-weight: 790;
  letter-spacing: 0.1em;
}

.client-types strong {
  color: var(--brown-800);
  font-size: 1.02rem;
}

.markets-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.markets-regions span {
  padding: 9px 13px;
  border: 1px solid rgba(112, 169, 31, 0.24);
  border-radius: 999px;
  background: rgba(142, 198, 43, 0.08);
  color: var(--brown-700);
  font-size: 0.8rem;
  font-weight: 720;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  width: min(100%, var(--content-width));
  margin: clamp(20px, 2vw, 28px) auto var(--page-gap);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 0%, rgba(142, 198, 43, 0.12), transparent 24%),
    var(--brown-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(170px, 0.55fr) minmax(280px, 0.9fr);
  gap: clamp(38px, 6vw, 88px);
  padding:
    clamp(52px, 6vw, 84px)
    clamp(30px, 6vw, 88px);
}

.site-footer__logo {
  display: block;
  width: clamp(130px, 13vw, 180px);
}

.site-footer__logo img {
  width: 100%;
}

.site-footer__brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--green-500);
  color: var(--brown-950);
  font-size: 0.9rem;
  font-weight: 780;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.footer-contact-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__nav h2,
.site-footer__contact h2 {
  margin: 0 0 24px;
  color: var(--green-400);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav a {
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.73);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--white);
  transform: translateX(4px);
}

.site-footer__contact > a {
  color: var(--white);
  font-weight: 680;
  overflow-wrap: anywhere;
}

.site-footer__contact p {
  display: grid;
  gap: 5px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.site-footer__contact strong {
  color: var(--white);
  font-size: 0.92rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(30px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--green-400);
  font-weight: 720;
}

@media (max-width: 1080px) {
  .markets-section__inner {
    grid-template-columns: 1fr;
  }

  .markets-panel {
    max-width: 760px;
  }

  .site-footer__inner {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .wide-media-placeholder {
    min-height: 260px;
  }

  .markets-section__inner {
    padding: 58px 20px;
  }

  .markets-copy h2 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .markets-status {
    grid-template-columns: 1fr;
  }

  .markets-panel {
    padding: 24px 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 22px;
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    padding: 21px 22px;
  }
}

@media (max-width: 480px) {
  .wide-media-placeholder {
    min-height: 220px;
  }

  .wide-media-placeholder__icon {
    width: 64px;
    height: 64px;
  }

  .markets-section__inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .market-status-card {
    min-height: auto;
  }

  .markets-panel__top {
    grid-template-columns: 1fr;
  }

  .site-footer__inner,
  .site-footer__bottom {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* =========================================================
   AJUSTES V4
   ========================================================= */

html,
body {
  background: var(--cream-100);
}

@media (min-width: 981px) {
  .company-section__inner {
    align-items: end;
  }

  .company-copy,
  .feature-carousel {
    align-self: end;
  }
}

/* Reduce animations when the operating system requests it. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   MERCADOS EDITORIAL + GALERÍA V12
   ========================================================= */
.markets-story{width:min(100%,var(--content-width));margin:clamp(20px,2vw,28px) auto var(--page-gap)}
.markets-story__inner{display:grid;grid-template-columns:minmax(420px,.96fr) minmax(420px,1.04fr);gap:clamp(38px,5vw,78px);align-items:center;padding:clamp(38px,4vw,58px);border-radius:var(--radius-xl);background:linear-gradient(180deg,#fffdfa,var(--cream-100));box-shadow:var(--shadow-md)}
.markets-story__visual{position:relative;min-height:590px;overflow:hidden;border-radius:30px;background:var(--brown-900)}
.markets-story__visual img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.markets-story__visual-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,14,6,.05),rgba(20,14,6,.58))}
.markets-story__current{position:absolute;left:26px;bottom:26px;display:grid;gap:4px;padding:17px 20px;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:rgba(25,18,9,.68);color:#fff;backdrop-filter:blur(12px)}
.markets-story__current span{font-size:.69rem;font-weight:760;letter-spacing:.14em;text-transform:uppercase;color:var(--green-400)}
.markets-story__current strong{font-size:1.55rem}
.markets-story__eyebrow,.internal-eyebrow{margin:0 0 14px;color:var(--green-600);font-size:.76rem;font-weight:780;letter-spacing:.2em;text-transform:uppercase}
.markets-story__content h2{margin:0;color:var(--brown-900);font-size:clamp(2.5rem,4vw,4.7rem);font-weight:740;letter-spacing:-.052em;line-height:1;text-wrap:balance}
.markets-story__text{margin:24px 0 0;color:var(--text-soft);font-size:1.04rem;line-height:1.75}
.markets-story__pills{display:flex;flex-wrap:wrap;gap:9px;margin-top:25px}.markets-story__pills span{padding:9px 13px;border-radius:999px;background:var(--cream-200);color:var(--brown-700);font-size:.78rem;font-weight:720}.markets-story__pills span:first-child{background:var(--green-500);color:var(--brown-950)}
.markets-story__details{display:grid;grid-template-columns:170px 1fr;gap:24px;align-items:center;margin-top:28px}.markets-story__small-image{height:155px;overflow:hidden;border-radius:20px}.markets-story__small-image img{width:100%;height:100%;object-fit:cover}.markets-story__checks{display:grid;gap:11px;margin:0;padding:0;list-style:none}.markets-story__checks li{position:relative;padding-left:25px;color:var(--brown-700);font-size:.93rem;line-height:1.4}.markets-story__checks li:before{position:absolute;left:0;top:.15em;display:grid;width:17px;height:17px;place-items:center;border-radius:50%;background:var(--green-500);color:var(--brown-950);content:'✓';font-size:.68rem;font-weight:900}
.markets-story__button{display:inline-flex;align-items:center;gap:15px;margin-top:28px;padding:13px 18px;border-radius:999px;background:var(--brown-900);color:#fff;font-size:.9rem;font-weight:760}.markets-story__button svg{width:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s}.markets-story__button:hover svg{transform:translateX(4px)}
.process-gallery{width:min(100%,var(--content-width));margin:clamp(20px,2vw,28px) auto var(--page-gap);padding:clamp(48px,6vw,86px) clamp(24px,4vw,56px);border-radius:var(--radius-xl);background:#fffdfa;box-shadow:var(--shadow-md)}
.process-gallery__header{text-align:center}.process-gallery__header p{margin:0 0 12px;color:var(--green-600);font-size:.75rem;font-weight:780;letter-spacing:.2em;text-transform:uppercase}.process-gallery__header h2{margin:0;color:var(--brown-900);font-size:clamp(2.35rem,4vw,4.4rem);letter-spacing:-.05em;line-height:1}.process-gallery__header span{display:block;max-width:670px;margin:18px auto 0;color:var(--text-soft);line-height:1.65}
.process-gallery__grid{display:grid;grid-template-columns:repeat(6,1fr);grid-auto-rows:150px;gap:14px;margin-top:38px}.gallery-placeholder{position:relative;display:flex;align-items:flex-end;overflow:hidden;padding:17px;border:1px dashed rgba(112,169,31,.45);border-radius:22px;background:radial-gradient(circle at 80% 15%,rgba(230,154,34,.18),transparent 28%),linear-gradient(145deg,#f8f4e9,#eee6d4);color:var(--brown-800);font-size:.75rem;font-weight:780;letter-spacing:.12em;text-transform:uppercase}.gallery-placeholder:before{position:absolute;inset:14px;border:1px solid rgba(255,255,255,.72);border-radius:15px;content:''}.gallery-placeholder span{position:relative;z-index:1}.gallery-placeholder--tall{grid-row:span 2;grid-column:span 1}.gallery-placeholder--wide{grid-column:span 2}.gallery-placeholder--large{grid-column:span 2;grid-row:span 2}

/* =========================================================
   PÁGINAS INTERNAS V12
   ========================================================= */
.internal-hero{position:relative;isolation:isolate;width:min(100%,var(--content-width));min-height:510px;margin:0 auto;overflow:hidden;border-radius:var(--radius-xl);background-position:center;background-size:cover;box-shadow:var(--shadow-lg)}
.internal-hero:before{position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(18,13,5,.95),rgba(18,13,5,.64) 60%,rgba(18,13,5,.35));content:''}.internal-hero--about{background-image:url('../media/hero-frutas.png')}.internal-hero--products{background-image:url('../media/hero-limones.png')}.internal-hero--markets{background-image:url('../media/hero-paltas.png')}.internal-hero--contact{background-image:url('../media/hero-frutas.png')}
.internal-hero__content{max-width:820px;padding:clamp(80px,10vw,130px) clamp(26px,5vw,76px) 90px;color:#fff}.internal-hero__eyebrow{margin:0 0 18px;color:var(--green-400);font-size:.76rem;font-weight:780;letter-spacing:.22em;text-transform:uppercase}.internal-hero h1{margin:0;font-size:clamp(3rem,5.8vw,6.4rem);font-weight:750;letter-spacing:-.06em;line-height:.95;text-wrap:balance}.internal-hero__content>p:last-child{max-width:650px;margin:26px 0 0;color:rgba(255,255,255,.76);font-size:1.07rem;line-height:1.7}
.internal-section{width:min(100%,var(--content-width));margin:clamp(20px,2vw,28px) auto var(--page-gap);padding:clamp(48px,6vw,82px) clamp(26px,5vw,72px);border-radius:var(--radius-xl);background:#fffdfa;box-shadow:var(--shadow-md)}
.internal-section__header{max-width:780px;margin-bottom:36px}.internal-section__header h2,.about-story__copy h2,.origin-section h2,.packaging-section h2,.market-logistics h2,.expo-section h2,.contact-info h2{margin:0;color:var(--brown-900);font-size:clamp(2.3rem,3.6vw,4rem);letter-spacing:-.05em;line-height:1}.internal-section__header>p:last-child,.about-story__copy>p,.origin-section>div>p:last-child,.packaging-section>div>p:last-child,.market-logistics>div>p:last-child,.expo-section>div>p:last-child{color:var(--text-soft);line-height:1.75}
.about-story{display:grid;grid-template-columns:minmax(360px,.92fr) minmax(380px,1.08fr);gap:clamp(40px,6vw,90px);align-items:center}.about-story__visual{position:relative;min-height:520px}.internal-image-placeholder{display:grid;place-items:center;min-height:330px;border:1px dashed rgba(112,169,31,.48);border-radius:28px;background:radial-gradient(circle at 80% 15%,rgba(230,154,34,.16),transparent 28%),linear-gradient(145deg,#f8f4e9,#ede4d1);color:var(--brown-700);font-size:.72rem;font-weight:780;letter-spacing:.12em;text-transform:uppercase;text-align:center}.about-story__visual .internal-image-placeholder--large{position:absolute;inset:0 24% 0 0;min-height:520px;border-radius:50px}.about-story__visual .internal-image-placeholder--small{position:absolute;right:0;bottom:35px;width:42%;min-height:280px;border:7px solid #fffdfa;border-radius:32px}.about-story__copy p{margin:20px 0 0}
.purpose-section{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;background:transparent;box-shadow:none;padding-inline:0}.purpose-card{min-height:310px;padding:32px;border-radius:28px;background:#fffdfa;box-shadow:var(--shadow-md)}.purpose-card>span{color:var(--green-600);font-size:.8rem;font-weight:800}.purpose-card h2{margin:38px 0 0;font-size:2.2rem;color:var(--brown-900)}.purpose-card p{color:var(--text-soft);line-height:1.7}.purpose-card--dark{background:var(--brown-900);color:#fff}.purpose-card--dark h2{color:#fff}.purpose-card ul{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0 0;padding:0;list-style:none}.purpose-card li{padding:8px 12px;border-radius:999px;background:rgba(142,198,43,.13);color:var(--green-400)}
.origin-section,.packaging-section,.market-logistics,.expo-section{display:grid;grid-template-columns:minmax(320px,.85fr) minmax(420px,1.15fr);gap:clamp(38px,6vw,86px);align-items:center}.origin-grid,.package-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.origin-grid span,.package-grid article{display:grid;min-height:120px;place-items:center;border:1px solid rgba(81,57,30,.12);border-radius:22px;background:var(--cream-100);color:var(--brown-800);font-weight:760}.package-grid article{gap:7px}.package-grid strong{font-size:2rem;color:var(--green-600)}.package-grid span{font-size:.82rem;color:var(--text-soft)}
.catalog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}.catalog-card{display:grid;grid-template-columns:46% 54%;min-height:390px;overflow:hidden;border-radius:28px;background:var(--cream-100);box-shadow:var(--shadow-md)}.catalog-card__image{display:grid;place-items:center;border-right:1px dashed rgba(112,169,31,.45);background:radial-gradient(circle at 70% 15%,rgba(230,154,34,.16),transparent 28%),linear-gradient(145deg,#f6f0e2,#ebe1cd);color:var(--brown-700);font-size:.7rem;font-weight:780;letter-spacing:.12em;text-transform:uppercase}.catalog-card__body{display:flex;flex-direction:column;padding:30px}.catalog-card__body>p{margin:0;color:var(--green-600);font-size:.7rem;font-weight:780;letter-spacing:.13em;text-transform:uppercase}.catalog-card h2{margin:28px 0 0;color:var(--brown-900);font-size:2rem;letter-spacing:-.04em}.catalog-card strong{margin-top:10px;color:var(--mango);font-size:.78rem;text-transform:uppercase}.catalog-card__body>span:last-child{margin-top:20px;color:var(--text-soft);line-height:1.7}
.internal-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;width:min(100%,var(--content-width));margin:clamp(20px,2vw,28px) auto var(--page-gap);padding:40px clamp(28px,5vw,70px);border-radius:var(--radius-xl);background:var(--brown-900);color:#fff}.internal-cta h2{margin:0;font-size:clamp(2rem,3vw,3.2rem)}.internal-cta a{padding:13px 20px;border-radius:999px;background:var(--green-500);color:var(--brown-950);font-weight:780}
.market-overview{display:grid;grid-template-columns:1fr 1fr;gap:20px;background:transparent;box-shadow:none;padding-inline:0}.market-overview article{min-height:340px;padding:38px;border-radius:30px;box-shadow:var(--shadow-md)}.market-overview__current{background:var(--brown-900);color:#fff}.market-overview__target{background:#fffdfa}.market-overview p{color:var(--green-500);font-size:.76rem;font-weight:780;letter-spacing:.15em;text-transform:uppercase}.market-overview h2{margin:70px 0 18px;font-size:clamp(2.6rem,4vw,4.5rem);letter-spacing:-.05em}.market-overview__target h2{color:var(--brown-900)}.market-overview span{color:inherit;opacity:.68;line-height:1.65}.clients-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.clients-grid article{padding:28px;border:1px solid rgba(81,57,30,.12);border-radius:24px;background:var(--cream-100)}.clients-grid span{color:var(--green-600);font-size:.8rem;font-weight:800}.clients-grid h3{margin:35px 0 0;color:var(--brown-800);font-size:1.45rem}.market-logistics .internal-image-placeholder{min-height:430px}.expo-section{background:linear-gradient(135deg,var(--brown-900),#314126);color:#fff}.expo-section h2{color:#fff}.expo-section p{color:rgba(255,255,255,.7)!important}.expo-date{display:grid;place-items:center;min-height:230px;border:1px solid rgba(255,255,255,.16);border-radius:28px;background:rgba(255,255,255,.06)}.expo-date strong{font-size:clamp(3rem,6vw,6rem);color:var(--green-400)}.expo-date span{color:rgba(255,255,255,.72)}
.contact-layout{display:grid;grid-template-columns:minmax(330px,.82fr) minmax(450px,1.18fr);gap:clamp(40px,6vw,90px);align-items:start}.contact-info dl{display:grid;gap:18px;margin-top:36px}.contact-info dl>div{padding:20px 0;border-bottom:1px solid rgba(81,57,30,.12)}.contact-info dt{color:var(--green-600);font-size:.7rem;font-weight:780;letter-spacing:.12em;text-transform:uppercase}.contact-info dd{margin:8px 0 0;color:var(--brown-800);line-height:1.6;overflow-wrap:anywhere}.contact-form{padding:34px;border-radius:28px;background:var(--brown-900);color:#fff}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.contact-form label{display:grid;gap:8px;margin-bottom:18px}.contact-form label span{font-size:.78rem;font-weight:720;color:rgba(255,255,255,.72)}.contact-form input,.contact-form select,.contact-form textarea{width:100%;padding:13px 14px;border:1px solid rgba(255,255,255,.14);border-radius:13px;background:rgba(255,255,255,.08);color:#fff;font:inherit}.contact-form select option{color:#111}.contact-form button{display:inline-flex;align-items:center;gap:13px;padding:13px 18px;border:0;border-radius:999px;background:var(--green-500);color:var(--brown-950);font-weight:780;cursor:pointer}.contact-form button svg{width:18px;fill:none;stroke:currentColor;stroke-width:1.8}.contact-form__status{min-height:1.4em;margin:16px 0 0;color:var(--green-400);font-size:.85rem}.office-placeholder{display:grid;min-height:360px;place-items:center;border:1px dashed rgba(112,169,31,.48);color:var(--brown-700);font-size:.75rem;font-weight:780;letter-spacing:.12em;text-transform:uppercase}
@media(max-width:1080px){.markets-story__inner,.about-story,.origin-section,.packaging-section,.market-logistics,.expo-section,.contact-layout{grid-template-columns:1fr}.markets-story__visual{min-height:500px}.process-gallery__grid{grid-template-columns:repeat(4,1fr)}.purpose-section{grid-template-columns:1fr 1fr}.purpose-card--dark{grid-column:1/-1}.catalog-grid{grid-template-columns:1fr}.market-overview{grid-template-columns:1fr}.clients-grid{grid-template-columns:1fr 1fr}.site-header .header-panel{width:auto}}
@media(max-width:760px){.markets-story__inner{padding:22px}.markets-story__visual{min-height:410px}.markets-story__details{grid-template-columns:1fr}.markets-story__small-image{height:220px}.process-gallery__grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:130px}.gallery-placeholder--wide,.gallery-placeholder--large{grid-column:span 2}.internal-hero{min-height:620px}.internal-hero__content{padding-top:150px}.purpose-section{grid-template-columns:1fr}.purpose-card--dark{grid-column:auto}.origin-grid,.package-grid,.clients-grid{grid-template-columns:1fr}.catalog-card{grid-template-columns:1fr}.catalog-card__image{min-height:260px;border-right:0;border-bottom:1px dashed rgba(112,169,31,.45)}.form-grid{grid-template-columns:1fr}.internal-cta{flex-direction:column;align-items:flex-start}}
@media(max-width:480px){.markets-story__content h2{font-size:2.55rem}.markets-story__visual{min-height:340px}.process-gallery{padding-inline:14px}.process-gallery__grid{gap:10px}.about-story__visual{min-height:420px}.about-story__visual .internal-image-placeholder--large{min-height:420px}.about-story__visual .internal-image-placeholder--small{min-height:225px}.contact-form{padding:24px 18px}}


/* =========================================================
   MERCADOS — CRECIMIENTO COMERCIAL V13
   ========================================================= */

.markets-story--growth {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.markets-story__inner--growth {
  grid-template-columns: minmax(390px, 0.94fr) minmax(430px, 1.06fr);
  gap: clamp(44px, 5.5vw, 86px);
  padding:
    clamp(42px, 4.8vw, 68px)
    clamp(32px, 5vw, 70px);
}

.markets-story__visual--growth {
  min-height: 660px;
  border-radius: 34px;
}

.markets-story__visual--growth .markets-story__visual-overlay {
  background:
    linear-gradient(180deg, rgba(20, 14, 6, 0.04), rgba(20, 14, 6, 0.32)),
    linear-gradient(90deg, rgba(20, 14, 6, 0.12), transparent 54%);
}

.markets-story__content--growth h2 {
  max-width: 720px;
  color: var(--brown-900);
  font-size: clamp(2.9rem, 4.6vw, 5.3rem);
  line-height: 0.98;
}

.markets-story__content--growth .markets-story__text {
  max-width: 780px;
  margin-top: 26px;
}

.markets-story__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.markets-story__regions span {
  padding: 11px 17px;
  border: 1px solid rgba(81, 57, 30, 0.18);
  border-radius: 999px;
  background: rgba(242, 236, 221, 0.84);
  color: var(--brown-800);
  font-size: 0.86rem;
  font-weight: 710;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.markets-story__regions span:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 169, 31, 0.38);
  background: rgba(142, 198, 43, 0.14);
  color: var(--green-600);
}

.markets-story__details--growth {
  grid-template-columns: minmax(190px, 0.74fr) minmax(240px, 1.26fr);
  gap: 25px;
  align-items: stretch;
  margin-top: 30px;
}

.markets-story__route-map {
  display: grid;
  min-height: 188px;
  place-content: center;
  gap: 12px;
  padding: 20px;
  overflow: hidden;
  border: 1px dashed rgba(112, 169, 31, 0.48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 16%, rgba(230, 154, 34, 0.18), transparent 25%),
    linear-gradient(145deg, #f8f4e9, #eee6d4);
  color: var(--brown-800);
  text-align: center;
}

.markets-story__route-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-600);
  box-shadow: 0 12px 26px rgba(36, 26, 11, 0.09);
}

.markets-story__route-icon svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.markets-story__route-icon .markets-story__route-line {
  stroke: var(--mango);
}

.markets-story__route-map strong {
  color: var(--brown-700);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.markets-story__details--growth .markets-story__checks {
  align-content: center;
  gap: 12px;
}

.markets-story__details--growth .markets-story__checks li {
  padding: 12px 14px 12px 40px;
  border: 1px solid rgba(81, 57, 30, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown-700);
  font-size: 0.9rem;
  line-height: 1.45;
}

.markets-story__details--growth .markets-story__checks li::before {
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.markets-story__content--growth .markets-story__button {
  margin-top: 28px;
  background: var(--green-500);
  color: var(--brown-950);
}

@media (max-width: 1080px) {
  .markets-story__inner--growth {
    grid-template-columns: 1fr;
  }

  .markets-story__visual--growth {
    min-height: 560px;
  }

  .markets-story__content--growth {
    max-width: 840px;
  }
}

@media (max-width: 760px) {
  .markets-story__inner--growth {
    gap: 38px;
    padding: 24px 18px 46px;
  }

  .markets-story__visual--growth {
    min-height: 460px;
  }

  .markets-story__details--growth {
    grid-template-columns: 1fr;
  }

  .markets-story__route-map {
    min-height: 210px;
  }
}

@media (max-width: 480px) {
  .markets-story__inner--growth {
    padding-right: 14px;
    padding-left: 14px;
  }

  .markets-story__visual--growth {
    min-height: 360px;
    border-radius: 25px;
  }

  .markets-story__content--growth h2 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .markets-story__regions span {
    padding: 9px 13px;
    font-size: 0.79rem;
  }
}


/* =========================================================
   AJUSTES GENERALES DEL HOME V14
   Secciones fluidas, títulos más contenidos y galería visual.
   ========================================================= */

body[data-page="home"] .page-shell {
  padding: 0;
}

body[data-page="home"] main {
  width: 100%;
}

body[data-page="home"] .hero,
body[data-page="home"] .products-showcase,
body[data-page="home"] .quality-section,
body[data-page="home"] .wide-media-section,
body[data-page="home"] .markets-story,
body[data-page="home"] .process-gallery,
body[data-page="home"] .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Conservamos el diseño interno, pero liberamos los fondos de sección. */
body[data-page="home"] .products-showcase__inner,
body[data-page="home"] .quality-section__inner,
body[data-page="home"] .markets-story__inner,
body[data-page="home"] .site-footer__inner,
body[data-page="home"] .site-footer__bottom {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

body[data-page="home"] .quality-section {
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream-100) 100%);
}

body[data-page="home"] .quality-section__inner {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .wide-media-placeholder {
  border-radius: 0;
  box-shadow: none;
}

body[data-page="home"] .markets-story {
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream-100) 100%);
}

body[data-page="home"] .markets-story__inner {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .markets-story--growth {
  border-radius: 0;
}

body[data-page="home"] .site-footer {
  border-radius: 0;
}

/* Títulos más sobrios y proporcionados. */
body[data-page="home"] .hero h1 {
  font-size: clamp(3rem, 5.1vw, 5.25rem);
  line-height: 0.97;
}

body[data-page="home"] .section-heading h2 {
  font-size: clamp(2rem, 2.45vw, 2.72rem);
  line-height: 1.05;
}

body[data-page="home"] .products-showcase h2 {
  font-size: clamp(2.05rem, 3vw, 3.25rem);
}

body[data-page="home"] .quality-content h2 {
  font-size: clamp(2.15rem, 2.9vw, 3.35rem);
}

body[data-page="home"] .markets-story__content--growth h2 {
  font-size: clamp(2.45rem, 3.55vw, 4.15rem);
  line-height: 1;
}

/* Galería: 4 columnas x 2 filas, igual a la lógica de la referencia. */
body[data-page="home"] .process-gallery {
  padding: clamp(42px, 5vw, 72px) clamp(20px, 4vw, 54px);
  background: #fffdfa;
}

body[data-page="home"] .process-gallery__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.12fr 1.08fr 0.95fr;
  grid-template-rows: clamp(170px, 15vw, 235px) clamp(190px, 17vw, 260px);
  gap: clamp(10px, 1.1vw, 16px);
  width: min(100%, 1240px);
  margin: 0 auto;
}

body[data-page="home"] .process-gallery__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream-200);
}

body[data-page="home"] .process-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .process-gallery__item:hover img {
  transform: scale(1.045);
}

body[data-page="home"] .process-gallery__item--1 {
  grid-column: 1;
  grid-row: 1;
}

body[data-page="home"] .process-gallery__item--2 {
  grid-column: 1;
  grid-row: 2;
}

body[data-page="home"] .process-gallery__item--3 {
  grid-column: 2;
  grid-row: 1;
}

body[data-page="home"] .process-gallery__item--4 {
  grid-column: 2;
  grid-row: 2;
}

body[data-page="home"] .process-gallery__item--5 {
  grid-column: 3;
  grid-row: 1;
}

body[data-page="home"] .process-gallery__item--6 {
  grid-column: 3;
  grid-row: 2;
}

body[data-page="home"] .process-gallery__item--7 {
  grid-column: 4;
  grid-row: 1;
}

body[data-page="home"] .process-gallery__item--8 {
  grid-column: 4;
  grid-row: 2;
}

/* Footer más compacto. */
body[data-page="home"] .site-footer__inner {
  gap: clamp(30px, 4vw, 62px);
  padding:
    clamp(36px, 4vw, 54px)
    clamp(30px, 6vw, 88px)
    clamp(28px, 3.2vw, 42px);
}

body[data-page="home"] .site-footer__brand p {
  margin-top: 18px;
}

body[data-page="home"] .footer-contact-button {
  margin-top: 20px;
}

body[data-page="home"] .site-footer__contact p {
  margin-top: 16px;
}

body[data-page="home"] .site-footer__bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Animaciones puntuales de desplazamiento. */
body[data-page="home"] .reveal-motion {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body[data-page="home"] .reveal-motion--left {
  transform: translate3d(-28px, 0, 0);
}

body[data-page="home"] .reveal-motion--right {
  transform: translate3d(28px, 0, 0);
}

body[data-page="home"] .reveal-motion.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  body[data-page="home"] .process-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, clamp(170px, 38vw, 260px));
  }

  body[data-page="home"] .process-gallery__item--1 { grid-column: 1; grid-row: 1; }
  body[data-page="home"] .process-gallery__item--2 { grid-column: 2; grid-row: 1; }
  body[data-page="home"] .process-gallery__item--3 { grid-column: 1; grid-row: 2; }
  body[data-page="home"] .process-gallery__item--4 { grid-column: 2; grid-row: 2; }
  body[data-page="home"] .process-gallery__item--5 { grid-column: 1; grid-row: 3; }
  body[data-page="home"] .process-gallery__item--6 { grid-column: 2; grid-row: 3; }
  body[data-page="home"] .process-gallery__item--7 { grid-column: 1; grid-row: 4; }
  body[data-page="home"] .process-gallery__item--8 { grid-column: 2; grid-row: 4; }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .products-showcase h2,
  body[data-page="home"] .quality-content h2,
  body[data-page="home"] .markets-story__content--growth h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  body[data-page="home"] .site-footer__inner {
    padding-top: 38px;
    padding-bottom: 28px;
  }
}

@media (max-width: 520px) {
  body[data-page="home"] .process-gallery {
    padding-right: 12px;
    padding-left: 12px;
  }

  body[data-page="home"] .process-gallery__grid {
    gap: 9px;
    grid-template-rows: repeat(4, 170px);
  }

  body[data-page="home"] .process-gallery__item {
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .reveal-motion {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   NOSOTROS V15
   ========================================================= */

body[data-page="about"] .page-shell {
  padding: 0;
}

body[data-page="about"] main,
body[data-page="about"] .about-hero,
body[data-page="about"] .about-essence,
body[data-page="about"] .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  overflow: hidden;
  background: var(--brown-950);
}

.about-hero__background,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__background {
  z-index: -2;
  background:
    url("../media/hero-frutas.png")
    center 50% / cover no-repeat;
  transform: scale(1.025);
}

.about-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(13, 10, 5, 0.72) 0%,
      rgba(18, 13, 6, 0.54) 48%,
      rgba(17, 12, 5, 0.76) 100%
    ),
    linear-gradient(
      90deg,
      rgba(17, 12, 5, 0.42),
      rgba(17, 12, 5, 0.12) 62%,
      rgba(17, 12, 5, 0.28)
    );
}

.about-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding:
    clamp(115px, 15vh, 170px)
    clamp(28px, 5vw, 76px)
    clamp(90px, 11vh, 130px);
  color: var(--white);
}

.about-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--green-400);
  font-size: 0.74rem;
  font-weight: 790;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-hero__summary {
  padding-top: 92px;
}

.about-hero__summary p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.72;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.about-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 21px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 760;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.about-hero__button:hover,
.about-hero__button:focus-visible {
  transform: translateY(-2px);
}

.about-hero__button--primary {
  border: 1px solid var(--green-500);
  background: var(--green-500);
  color: var(--brown-950);
}

.about-hero__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.about-hero__button--secondary:hover,
.about-hero__button--secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Sección central */
.about-essence {
  padding:
    clamp(72px, 8vw, 118px)
    clamp(26px, 5vw, 78px)
    clamp(80px, 8vw, 120px);
  background: #fffdfa;
}

.about-essence__header {
  width: min(100%, 760px);
  margin: 0 auto clamp(48px, 5vw, 74px);
  text-align: center;
}

.about-essence__header p {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 790;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-essence__header h2 {
  margin: 0;
  color: var(--brown-900);
  font-size: clamp(2.15rem, 3vw, 3.45rem);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.about-essence__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(330px, 1fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.about-essence__column {
  display: grid;
  gap: 34px;
}

.about-principle,
.about-value {
  display: grid;
  align-items: start;
  gap: 18px;
}

.about-principle {
  grid-template-columns: auto 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(81, 57, 30, 0.14);
}

.about-principle:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-principle__icon,
.about-value__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-600);
}

.about-principle__icon svg,
.about-value__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-principle h3,
.about-value h3 {
  margin: 0;
  color: var(--brown-900);
  font-size: clamp(1.28rem, 1.65vw, 1.65rem);
  font-weight: 720;
  letter-spacing: -0.025em;
}

.about-principle p,
.about-value p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.67;
}

.about-essence__image {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--cream-200);
}

.about-essence__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-essence__image:hover img {
  transform: scale(1.035);
}

.about-value {
  grid-template-columns: 1fr auto;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(81, 57, 30, 0.12);
  text-align: right;
}

.about-value:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-value__icon {
  width: 58px;
  height: 58px;
}

.about-value__icon svg {
  width: 31px;
}

/* Footer plano y compacto */
body[data-page="about"] .site-footer {
  background:
    radial-gradient(circle at 86% 0%, rgba(142, 198, 43, 0.12), transparent 24%),
    var(--brown-950);
}

body[data-page="about"] .site-footer__inner,
body[data-page="about"] .site-footer__bottom {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

body[data-page="about"] .site-footer__inner {
  gap: clamp(30px, 4vw, 62px);
  padding:
    clamp(38px, 4vw, 58px)
    clamp(30px, 6vw, 88px)
    clamp(30px, 3vw, 42px);
}

body[data-page="about"] .site-footer__bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Animación sutil */
body[data-page="about"] .about-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--about-delay, 0ms);
  will-change: opacity, transform;
}

body[data-page="about"] .about-reveal--left {
  transform: translate3d(-26px, 0, 0);
}

body[data-page="about"] .about-reveal--right {
  transform: translate3d(26px, 0, 0);
}

body[data-page="about"] .about-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero__summary {
    max-width: 650px;
    padding-top: 0;
  }

  .about-essence__layout {
    grid-template-columns: 1fr 1fr;
  }

  .about-essence__image {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 520px;
  }

  .about-essence__image img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: 720px;
  }

  .about-hero__content {
    padding:
      145px
      22px
      80px;
  }

  .about-hero h1 {
    font-size: clamp(2.75rem, 11vw, 4rem);
  }

  .about-essence {
    padding: 62px 20px 72px;
  }

  .about-essence__header h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .about-essence__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-essence__image {
    grid-column: auto;
    grid-row: auto;
    min-height: 470px;
  }

  .about-essence__image img {
    min-height: 470px;
  }

  .about-value {
    text-align: left;
  }

  .about-value {
    grid-template-columns: auto 1fr;
  }

  .about-value > div {
    grid-column: 2;
  }

  .about-value__icon {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .about-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__button {
    width: 100%;
  }

  .about-essence {
    padding-right: 15px;
    padding-left: 15px;
  }

  .about-principle,
  .about-value {
    gap: 14px;
  }

  .about-principle__icon,
  .about-value__icon {
    width: 54px;
    height: 54px;
  }

  .about-principle__icon svg,
  .about-value__icon svg {
    width: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="about"] .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   PRODUCTOS INTERACTIVOS V16
   ========================================================= */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body[data-page="products"] {
  background: var(--brown-950);
}

body[data-page="products"] .page-shell {
  padding: 0;
}

.product-experience {
  width: 100%;
}

.product-stage {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--brown-950);
  color: var(--white);
}

body[data-page="products"] .site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
}

.product-slides,
.product-slide,
.product-slide__main-image,
.product-slide__shade {
  position: absolute;
  inset: 0;
}

.product-slide {
  --product-accent: var(--green-400);

  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.product-slide--lemon {
  --product-accent: #b7d83d;
}

.product-slide--mango {
  --product-accent: var(--mango);
}

.product-slide--avocado {
  --product-accent: #8fc43d;
}

.product-slide--orange {
  --product-accent: #df8d2f;
}

.product-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.product-slide__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  filter: saturate(0.94);
  transition:
    opacity 0.35s ease,
    transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-slide.is-active .product-slide__main-image {
  transform: scale(1);
}

.product-slide__main-image.is-changing {
  opacity: 0.18;
  transform: scale(1.025);
}

.product-slide__shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(13, 10, 4, 0.94) 0%,
      rgba(18, 13, 5, 0.84) 32%,
      rgba(18, 13, 5, 0.38) 61%,
      rgba(14, 10, 4, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 8, 4, 0.45) 0%,
      rgba(10, 8, 4, 0.03) 45%,
      rgba(10, 8, 4, 0.62) 100%
    );
}

.product-slide__layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: center;
  width: min(100%, var(--content-width));
  min-height: 100svh;
  margin: 0 auto;
  padding:
    clamp(150px, 18vh, 190px)
    clamp(86px, 9vw, 138px)
    clamp(96px, 12vh, 132px);
}

.product-slide__copy {
  max-width: 710px;
}

.product-slide__number {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 360;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.product-slide__eyebrow {
  margin: 0 0 13px;
  color: var(--product-accent);
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-slide h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.product-slide__varieties {
  margin: 17px 0 0;
  color: var(--product-accent);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-slide__description {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.72;
}

.product-slide__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-slide__facts span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  font-weight: 680;
  backdrop-filter: blur(8px);
}

.product-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 13px 18px;
  border: 1px solid var(--product-accent);
  border-radius: 999px;
  background: var(--product-accent);
  color: var(--brown-950);
  font-size: 0.88rem;
  font-weight: 780;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.product-slide__cta:hover,
.product-slide__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.product-slide__cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-slide__variants {
  justify-self: end;
  width: min(100%, 390px);
}

.product-slide__variants > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-variant-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.product-variant {
  position: relative;
  width: min(100%, 242px);
  aspect-ratio: 1.03 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  transition:
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.product-variant:nth-child(2) {
  transform: translateX(-38px);
}

.product-variant:nth-child(3) {
  transform: translateX(-76px);
}

.product-variant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-variant::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(9, 7, 3, 0.86));
  content: "";
}

.product-variant span {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  font-size: 0.86rem;
  font-weight: 740;
  text-align: left;
}

.product-variant:hover,
.product-variant:focus-visible {
  border-color: var(--product-accent);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.product-variant:hover img,
.product-variant:focus-visible img {
  transform: scale(1.055);
}

.product-variant.is-active {
  border-color: var(--product-accent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--product-accent) 28%, transparent),
    0 24px 50px rgba(0, 0, 0, 0.3);
}

.product-rail {
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 22px;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.product-rail__button {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 7px 11px;
  border: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  text-align: left;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.product-rail__button span {
  font-size: 0.72rem;
  font-weight: 720;
}

.product-rail__button strong {
  font-size: 0.78rem;
  font-weight: 680;
}

.product-rail__button:hover,
.product-rail__button:focus-visible,
.product-rail__button.is-active {
  border-color: var(--green-400);
  color: var(--white);
  transform: translateX(4px);
}

.product-stage__controls {
  position: absolute;
  z-index: 30;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
}

.product-stage__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(11, 8, 4, 0.56);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.product-stage__arrow:hover,
.product-stage__arrow:focus-visible {
  background: var(--green-500);
  color: var(--brown-950);
}

.product-stage__arrow--prev:hover,
.product-stage__arrow--prev:focus-visible {
  transform: translateX(-3px);
}

.product-stage__arrow--next:hover,
.product-stage__arrow--next:focus-visible {
  transform: translateX(3px);
}

.product-stage__arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-stage__counter {
  min-width: 62px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.product-stage__current {
  color: var(--white);
}

.product-stage__hint {
  position: absolute;
  z-index: 30;
  right: 30px;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.product-stage__progress {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.product-stage__progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--green-400);
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease;
}

/* Animación del contenido de cada producto. */
.product-slide__copy > *,
.product-slide__variants {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-slide__variants {
  transform: translate3d(30px, 0, 0);
}

.product-slide.is-active .product-slide__copy > *,
.product-slide.is-active .product-slide__variants {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-slide.is-active .product-slide__copy > *:nth-child(1) { transition-delay: 80ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(2) { transition-delay: 120ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(3) { transition-delay: 160ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(4) { transition-delay: 200ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(5) { transition-delay: 240ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(6) { transition-delay: 280ms; }
.product-slide.is-active .product-slide__copy > *:nth-child(7) { transition-delay: 320ms; }
.product-slide.is-active .product-slide__variants { transition-delay: 190ms; }

@supports not (color: color-mix(in srgb, red 50%, white)) {
  .product-variant.is-active {
    box-shadow: 0 0 0 3px rgba(142, 198, 43, 0.24);
  }
}

@media (min-width: 981px) {
  body[data-page="products"] {
    overflow: hidden;
  }
}

@media (max-width: 1180px) {
  .product-slide__layout {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
    gap: 42px;
    padding-right: 54px;
    padding-left: 96px;
  }

  .product-variant {
    width: 205px;
  }
}

@media (max-width: 980px) {
  .product-stage {
    min-height: 940px;
  }

  .product-slide__layout {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 940px;
    padding:
      140px
      28px
      100px;
  }

  .product-slide__copy {
    max-width: 680px;
  }

  .product-slide__variants {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .product-variant-list {
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    padding: 3px 3px 10px;
    scrollbar-width: thin;
  }

  .product-variant,
  .product-variant:nth-child(2),
  .product-variant:nth-child(3) {
    width: 200px;
    min-width: 200px;
    transform: none;
  }

  .product-rail {
    top: auto;
    right: 20px;
    bottom: 92px;
    left: 20px;
    display: flex;
    justify-content: center;
    transform: none;
  }

  .product-rail__button {
    grid-template-columns: 1fr;
    min-width: 48px;
    border-left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.22);
    text-align: center;
  }

  .product-rail__button strong {
    display: none;
  }

  .product-rail__button:hover,
  .product-rail__button:focus-visible,
  .product-rail__button.is-active {
    transform: translateY(-3px);
  }

  .product-stage__controls {
    bottom: 28px;
  }

  .product-stage__hint {
    display: none;
  }
}

@media (max-width: 760px) {
  .product-stage {
    min-height: 900px;
  }

  .product-slide__layout {
    min-height: 900px;
    padding:
      132px
      20px
      118px;
  }

  .product-slide__number {
    margin-bottom: 13px;
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .product-slide h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .product-slide__description {
    line-height: 1.65;
  }

  .product-slide__facts {
    gap: 7px;
  }

  .product-slide__facts span {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .product-variant {
    width: 160px;
    min-width: 160px;
  }

  .product-slide__variants > p {
    margin-bottom: 10px;
  }

  .product-rail {
    bottom: 86px;
  }
}

@media (max-width: 480px) {
  .product-stage {
    min-height: 920px;
  }

  .product-slide__layout {
    min-height: 920px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .product-slide__cta {
    width: 100%;
    justify-content: center;
  }

  .product-slide__facts {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .product-variant {
    width: 145px;
    min-width: 145px;
  }

  .product-stage__arrow {
    width: 41px;
    height: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-slide,
  .product-slide__main-image,
  .product-slide__copy > *,
  .product-slide__variants,
  .product-stage__progress span {
    transition: none !important;
  }

  .product-slide__copy > *,
  .product-slide__variants {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   CONTACTO INTEGRADO V17
   Banner fotográfico que continúa en un fondo sólido.
   ========================================================= */

body[data-page="contact"] {
  --contact-green: #173f20;
  --contact-green-deep: #0f3018;
  --contact-green-soft: #22552a;
  background: var(--contact-green-deep);
}

body[data-page="contact"] .page-shell {
  padding: 0;
}

body[data-page="contact"] main,
body[data-page="contact"] .contact-flow,
body[data-page="contact"] .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-flow {
  position: relative;
  isolation: isolate;
  min-height: 1320px;
  overflow: hidden;
  background: var(--contact-green);
  color: var(--white);
}

.contact-flow__image {
  position: absolute;
  z-index: -3;
  inset: 0 0 auto;
  height: 610px;
  background:
    url("../media/hero-paltas.png")
    center 42% / cover no-repeat;
}

.contact-flow__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(13, 38, 17, 0.4) 0%,
      rgba(14, 50, 22, 0.62) 30%,
      var(--contact-green) 49%,
      var(--contact-green) 100%
    ),
    linear-gradient(
      90deg,
      rgba(9, 28, 13, 0.34),
      rgba(9, 28, 13, 0.12) 54%,
      rgba(9, 28, 13, 0.28)
    );
}

body[data-page="contact"] .site-header {
  position: relative;
  z-index: 10;
}

.contact-flow__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding:
    clamp(82px, 10vh, 118px)
    clamp(28px, 5vw, 74px)
    clamp(82px, 8vw, 116px);
}

.contact-intro {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro__badge {
  display: inline-flex;
  margin: 0 0 23px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--contact-green-deep);
  font-size: 0.75rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 9px 0 rgba(9, 28, 13, 0.2);
  transform: rotate(-2deg);
}

.contact-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-intro__text {
  max-width: 760px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.72;
}

.contact-intro__response {
  margin: 13px 0 0;
  color: var(--green-400);
  font-size: 0.86rem;
  font-weight: 680;
  letter-spacing: 0.025em;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  margin-top: clamp(82px, 9vw, 120px);
}

/* Formulario integrado en el fondo, sin tarjeta exterior. */
.contact-form--integrated {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.contact-form__heading {
  max-width: 650px;
  margin-bottom: 34px;
}

.contact-form__heading p,
.contact-details__heading > p {
  margin: 0 0 12px;
  color: var(--green-400);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form__heading h2,
.contact-details__heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form--integrated label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.contact-form--integrated label > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 710;
}

.contact-form--integrated input,
.contact-form--integrated select,
.contact-form--integrated textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  outline: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brown-900);
  font: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-form--integrated input,
.contact-form--integrated select {
  min-height: 58px;
  padding: 13px 18px;
}

.contact-form--integrated textarea {
  min-height: 166px;
  padding: 17px 18px;
  resize: vertical;
}

.contact-form--integrated input::placeholder,
.contact-form--integrated textarea::placeholder {
  color: rgba(81, 57, 30, 0.45);
}

.contact-form--integrated input:focus,
.contact-form--integrated select:focus,
.contact-form--integrated textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(167, 216, 74, 0.15);
  transform: translateY(-1px);
}

.contact-form--integrated select option {
  color: var(--brown-900);
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
}

.contact-form--integrated button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  background: var(--green-400);
  color: var(--contact-green-deep);
  font-weight: 790;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.contact-form--integrated button:hover,
.contact-form--integrated button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.contact-form--integrated button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form__note {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-form--integrated .contact-form__status {
  min-height: 1.4em;
  margin: 15px 0 0;
  color: var(--green-400);
  font-size: 0.84rem;
}

/* Información de contacto sin contenedor encapsulado. */
.contact-details {
  padding-top: 4px;
}

.contact-details__heading {
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details__heading > span {
  display: block;
  max-width: 520px;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-details__list {
  display: grid;
  margin: 0;
}

.contact-details__list > div {
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-details__list dt {
  color: var(--green-400);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details__list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-details__list a {
  color: var(--white);
  font-weight: 690;
}

.contact-details__market {
  display: grid;
  gap: 8px;
  margin-top: 29px;
  padding-left: 17px;
  border-left: 3px solid var(--mango);
}

.contact-details__market span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details__market strong {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Footer plano y compacto. */
body[data-page="contact"] .site-footer {
  background:
    radial-gradient(circle at 86% 0%, rgba(142, 198, 43, 0.1), transparent 24%),
    var(--brown-950);
}

body[data-page="contact"] .site-footer__inner,
body[data-page="contact"] .site-footer__bottom {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

body[data-page="contact"] .site-footer__inner {
  gap: clamp(30px, 4vw, 62px);
  padding:
    clamp(38px, 4vw, 54px)
    clamp(30px, 6vw, 88px)
    clamp(28px, 3vw, 40px);
}

body[data-page="contact"] .site-footer__bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Animaciones selectivas. */
body[data-page="contact"] .contact-reveal {
  opacity: 0;
  transform: translate3d(0, 23px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--contact-delay, 0ms);
  will-change: opacity, transform;
}

body[data-page="contact"] .contact-reveal--left {
  transform: translate3d(-28px, 0, 0);
}

body[data-page="contact"] .contact-reveal--right {
  transform: translate3d(28px, 0, 0);
}

body[data-page="contact"] .contact-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .contact-flow {
    min-height: 1500px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .contact-details {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .contact-flow {
    min-height: auto;
  }

  .contact-flow__image {
    height: 560px;
  }

  .contact-flow__inner {
    padding:
      105px
      20px
      76px;
  }

  .contact-intro h1 {
    font-size: clamp(2.65rem, 11vw, 3.85rem);
  }

  .contact-content {
    margin-top: 72px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__note {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .contact-flow__inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .contact-intro__badge {
    font-size: 0.66rem;
  }

  .contact-form__heading h2,
  .contact-details__heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .contact-form--integrated input,
  .contact-form--integrated select {
    min-height: 54px;
  }

  .contact-form--integrated button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="contact"] .contact-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   CONTACTO V18 — MARRÓN Y TRANSICIÓN CONTINUA
   ========================================================= */

body[data-page="contact"] {
  --contact-brown: #3a2412;
  --contact-brown-deep: #25160a;
  --contact-brown-soft: #58351c;
  background: var(--contact-brown-deep);
}

body[data-page="contact"] .contact-flow {
  background: var(--contact-brown);
}

body[data-page="contact"] .contact-flow__image {
  height: 820px;
  background: url("../media/hero-paltas.png") center 42% / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.96) 58%,
    rgba(0, 0, 0, 0.64) 76%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.96) 58%,
    rgba(0, 0, 0, 0.64) 76%,
    transparent 100%
  );
}

body[data-page="contact"] .contact-flow__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(44, 26, 12, 0.25) 0%,
      rgba(47, 28, 13, 0.38) 22%,
      rgba(50, 29, 13, 0.57) 42%,
      rgba(54, 31, 14, 0.78) 59%,
      rgba(58, 36, 18, 0.94) 74%,
      var(--contact-brown) 88%,
      var(--contact-brown) 100%
    ),
    linear-gradient(
      90deg,
      rgba(31, 18, 8, 0.34),
      rgba(31, 18, 8, 0.08) 54%,
      rgba(31, 18, 8, 0.28)
    );
}

body[data-page="contact"] .contact-intro {
  padding-top: 20px;
}

body[data-page="contact"] .contact-intro h1 {
  max-width: 920px;
  margin-inline: auto;
}

body[data-page="contact"] .contact-intro__text {
  max-width: 690px;
}

body[data-page="contact"] .contact-form__heading,
body[data-page="contact"] .contact-details__heading {
  padding-bottom: 0;
  border-bottom: 0;
}

body[data-page="contact"] .contact-form__heading {
  margin-bottom: 30px;
}

body[data-page="contact"] .contact-details__heading {
  margin-bottom: 24px;
}

body[data-page="contact"] .contact-details__list {
  display: grid;
  gap: 12px;
}

body[data-page="contact"] .contact-details__list > .contact-details__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 17px;
  row-gap: 5px;
  align-items: center;
  padding: 13px 0;
  border: 0;
}

body[data-page="contact"] .contact-details__item-icon {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 236, 221, 0.12);
  color: var(--green-400);
}

body[data-page="contact"] .contact-details__item--hours .contact-details__item-icon {
  grid-row: 1 / span 3;
}

body[data-page="contact"] .contact-details__item-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

body[data-page="contact"] .contact-details__list dt {
  grid-column: 2;
  margin: 0;
  color: var(--green-400);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body[data-page="contact"] .contact-details__list dt::after {
  content: ":";
}

body[data-page="contact"] .contact-details__list dd {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.55;
}

body[data-page="contact"] .contact-details__list a {
  color: var(--white);
  font-weight: 690;
}

body[data-page="contact"] .contact-form--integrated button {
  color: var(--contact-brown-deep);
}

@media (max-width: 760px) {
  body[data-page="contact"] .contact-flow__image {
    height: 700px;
  }

  body[data-page="contact"] .contact-details__list > .contact-details__item {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
  }

  body[data-page="contact"] .contact-details__item-icon {
    width: 46px;
    height: 46px;
  }

  body[data-page="contact"] .contact-details__item-icon svg {
    width: 24px;
  }
}


/* =========================================================
   MERCADOS V19 — MAPA CENTRAL E INFORMACIÓN INTEGRADA
   ========================================================= */

body[data-page="markets"] {
  background: var(--brown-950);
}

body[data-page="markets"] .page-shell {
  padding: 0;
}

body[data-page="markets"] main,
body[data-page="markets"] .markets-page-hero,
body[data-page="markets"] .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.markets-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(142, 198, 43, 0.09), transparent 34%),
    linear-gradient(180deg, #171007 0%, var(--brown-950) 100%);
  color: var(--white);
}

.markets-page-hero__glow {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 50%;
  width: min(72vw, 1080px);
  aspect-ratio: 1.7 / 1;
  border-radius: 50%;
  background: rgba(142, 198, 43, 0.07);
  filter: blur(95px);
  transform: translateX(-50%);
  pointer-events: none;
}

.markets-page-hero__inner {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding:
    clamp(54px, 5vw, 82px)
    clamp(30px, 5vw, 78px)
    clamp(68px, 6vw, 96px);
}

.markets-page-heading {
  width: min(100%, 810px);
  margin: 0 auto clamp(42px, 4vw, 62px);
  text-align: center;
}

.markets-page-heading h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 4.45rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.markets-page-heading p {
  max-width: 710px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.72;
}

.markets-page-layout {
  display: grid;
  grid-template-columns: minmax(245px, 0.78fr) minmax(520px, 1.72fr) minmax(270px, 0.84fr);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: center;
}

.markets-page-column {
  display: grid;
  gap: clamp(34px, 4vw, 56px);
}

.markets-page-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.markets-page-note__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 216, 74, 0.1);
  color: var(--green-400);
}

.markets-page-note__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.markets-page-note h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.markets-page-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.88rem;
  line-height: 1.62;
}

.markets-page-note ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.markets-page-note li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.45;
}

.markets-page-note li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mango);
  content: "";
  transform: translateY(-50%);
}

.markets-page-map {
  position: relative;
  margin: 0;
}

.markets-page-map::before {
  position: absolute;
  inset: 14% 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(142, 198, 43, 0.08);
  content: "";
  filter: blur(48px);
}

.markets-page-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    saturate(0.92)
    contrast(1.02)
    drop-shadow(0 30px 44px rgba(0, 0, 0, 0.24));
}

.markets-page-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: clamp(38px, 4vw, 58px) auto 0;
  padding: 12px 18px;
  border: 1px solid var(--green-400);
  border-radius: 999px;
  background: var(--green-400);
  color: var(--brown-950);
  font-size: 0.86rem;
  font-weight: 780;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.markets-page-hero__inner > .markets-page-contact {
  display: flex;
  width: max-content;
}

.markets-page-contact:hover,
.markets-page-contact:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.markets-page-contact svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body[data-page="markets"] .site-footer {
  background:
    radial-gradient(circle at 86% 0%, rgba(142, 198, 43, 0.1), transparent 24%),
    var(--brown-950);
}

body[data-page="markets"] .site-footer__inner,
body[data-page="markets"] .site-footer__bottom {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

body[data-page="markets"] .site-footer__inner {
  gap: clamp(30px, 4vw, 62px);
  padding:
    clamp(38px, 4vw, 54px)
    clamp(30px, 6vw, 88px)
    clamp(28px, 3vw, 40px);
}

body[data-page="markets"] .site-footer__bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}

body[data-page="markets"] .markets-page-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.84s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--markets-delay, 0ms);
  will-change: opacity, transform;
}

body[data-page="markets"] .markets-page-reveal--left {
  transform: translate3d(-25px, 0, 0);
}

body[data-page="markets"] .markets-page-reveal--right {
  transform: translate3d(25px, 0, 0);
}

body[data-page="markets"] .markets-page-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .markets-page-layout {
    grid-template-columns: minmax(225px, 0.82fr) minmax(430px, 1.45fr) minmax(235px, 0.82fr);
    gap: 28px;
  }

  .markets-page-note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .markets-page-note__icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 960px) {
  .markets-page-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .markets-page-map {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 840px);
    margin: 0 auto 20px;
  }

  .markets-page-column--left {
    grid-column: 1;
    grid-row: 2;
  }

  .markets-page-column--right {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  .markets-page-hero__inner {
    padding: 46px 17px 64px;
  }

  .markets-page-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .markets-page-layout {
    grid-template-columns: 1fr;
  }

  .markets-page-map,
  .markets-page-column--left,
  .markets-page-column--right {
    grid-column: 1;
    grid-row: auto;
  }

  .markets-page-map {
    grid-row: 1;
    margin-bottom: 12px;
  }

  .markets-page-column {
    gap: 28px;
  }

  .markets-page-note {
    padding-top: 17px;
  }

  .markets-page-contact,
  .markets-page-hero__inner > .markets-page-contact {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="markets"] .markets-page-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   AJUSTES GENERALES V20
   ========================================================= */

/* Más aire en la tipografía y tamaños menos agresivos. */
:is(
  .hero h1,
  .section-heading h2,
  .products-showcase h2,
  .quality-content h2,
  .markets-story__content h2,
  .about-hero h1,
  .about-essence__header h2,
  .product-slide h2,
  .contact-intro h1,
  .contact-form__heading h2,
  .contact-details__heading h2,
  .markets-page-heading h1
) {
  letter-spacing: 0.006em;
}

body[data-page="home"] .hero h1 {
  font-size: clamp(2.75rem, 4.55vw, 4.75rem);
}

body[data-page="home"] .section-heading h2 {
  font-size: clamp(1.92rem, 2.2vw, 2.48rem);
}

body[data-page="home"] .products-showcase h2 {
  font-size: clamp(1.95rem, 2.7vw, 2.9rem);
}

body[data-page="home"] .quality-content h2 {
  font-size: clamp(2rem, 2.55vw, 2.95rem);
}

body[data-page="home"] .markets-story__content--growth h2 {
  font-size: clamp(2.2rem, 3.05vw, 3.55rem);
}

body[data-page="about"] .about-hero h1 {
  font-size: clamp(2.75rem, 4.4vw, 4.65rem);
}

body[data-page="about"] .about-essence__header h2 {
  font-size: clamp(2rem, 2.65vw, 3.05rem);
}

body[data-page="products"] .product-slide h2 {
  font-size: clamp(2.7rem, 4.45vw, 4.8rem);
}

body[data-page="contact"] .contact-intro h1 {
  font-size: clamp(2.6rem, 4.3vw, 4.35rem);
}

body[data-page="markets"] .markets-page-heading h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
}

/* Logos ligeramente más pequeños. */
.brand {
  width: clamp(102px, 9.2vw, 138px);
}

.site-footer__logo {
  width: clamp(112px, 11vw, 150px);
}

/* Botones CTA inspirados en la referencia: doble contorno y círculos laterales. */
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
) {
  position: relative;
  justify-content: center;
  min-height: 46px;
  padding-right: 43px;
  padding-left: 43px;
  border-width: 2px;
  border-style: solid;
  border-radius: 999px;
  box-shadow:
    0 0 0 3px color-mix(in srgb, currentColor 28%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::before,
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::after {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  opacity: 0.8;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::before {
  left: 14px;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::after {
  right: 14px;
}

:is(
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
) > svg {
  display: none;
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
  :is(
    .primary-button,
    .product-preview-card__link,
    .markets-story__button,
    .footer-contact-button,
    .about-hero__button,
    .product-slide__cta,
    .contact-form--integrated button,
    .markets-page-contact
  ) {
    box-shadow: 0 0 0 3px rgba(142, 198, 43, 0.24);
  }
}

/* =========================================================
   INDEX — HERO Y SEGUNDA SECCIÓN
   ========================================================= */

body[data-page="home"] .hero__content {
  padding-top: clamp(108px, 12vw, 160px);
}

body[data-page="home"] .primary-button {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--brown-950);
}

body[data-page="home"] .company-section__inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.36fr);
  gap: clamp(26px, 3.3vw, 48px);
  padding-top: 4px;
  padding-bottom: clamp(48px, 4vw, 62px);
}

body[data-page="home"] .company-copy {
  margin-bottom: 34px;
}

body[data-page="home"] .feature-carousel {
  margin-top: clamp(-228px, -13.4vw, -184px);
}

body[data-page="home"] .feature-carousel__track {
  gap: 16px;
}

body[data-page="home"] .feature-card {
  flex-basis: calc((100% - 16px) / 2);
  min-height: clamp(505px, 31vw, 535px);
}

body[data-page="home"] .feature-card__media {
  height: clamp(330px, 21vw, 368px);
}

body[data-page="home"] .feature-card__body {
  min-height: 0;
  padding: 39px 24px 17px;
}

body[data-page="home"] .feature-card h3 {
  font-size: clamp(1.2rem, 1.48vw, 1.55rem);
  letter-spacing: 0.002em;
}

body[data-page="home"] .feature-card__line {
  width: 34px;
  margin: 12px 0 0;
  background: var(--green-400);
}

body[data-page="home"] .feature-card__icon {
  top: -27px;
  left: 22px;
  width: 54px;
  height: 54px;
  border-width: 4px;
}

body[data-page="home"] .feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

body[data-page="home"] .feature-card p {
  display: none;
}

/* =========================================================
   INDEX — PRODUCTOS SOLO EN VERDE
   ========================================================= */

body[data-page="home"] .products-showcase__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(9, 28, 13, 0.62) 0%,
      rgba(13, 50, 21, 0.84) 48%,
      rgba(7, 25, 11, 0.94) 100%
    );
}

body[data-page="home"] .products-showcase__title-line {
  background: var(--green-400);
}

body[data-page="home"] :is(
  .product-preview-card--lemon,
  .product-preview-card--mango,
  .product-preview-card--avocado,
  .product-preview-card--orange
) {
  --product-accent: var(--green-400);
}

body[data-page="home"] .product-image-placeholder {
  border-color: rgba(167, 216, 74, 0.58);
  background:
    radial-gradient(circle at 84% 18%, rgba(142, 198, 43, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(241, 249, 228, 0.96), rgba(222, 238, 194, 0.92));
  color: var(--green-600);
}

body[data-page="home"] .product-preview-card__varieties {
  color: var(--green-400);
}

body[data-page="home"] .product-preview-card__link:hover,
body[data-page="home"] .product-preview-card__link:focus-visible {
  border-color: var(--green-400);
  background: var(--green-400);
}

/* =========================================================
   INDEX — ESPACIO VISUAL MÁS BAJO
   ========================================================= */

body[data-page="home"] .wide-media-placeholder {
  aspect-ratio: auto;
  min-height: 0;
  height: clamp(260px, 31vw, 430px);
}

/* =========================================================
   INDEX — MERCADOS
   ========================================================= */

/* Etiquetas como la referencia: contorno limpio y punto verde. */
body[data-page="home"] .markets-story__regions {
  gap: 10px;
}

body[data-page="home"] .markets-story__regions span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 17px;
  border: 2px solid rgba(81, 57, 30, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown-800);
  box-shadow: 0 7px 15px rgba(51, 34, 16, 0.05);
}

body[data-page="home"] .markets-story__regions span::before {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

/* Checks como pequeñas etiquetas blancas, sin apariencia de lista genérica. */
body[data-page="home"] .markets-story__details--growth .markets-story__checks {
  gap: 10px;
}

body[data-page="home"] .markets-story__details--growth .markets-story__checks li {
  min-height: 45px;
  padding: 11px 17px 11px 43px;
  border: 2px solid rgba(81, 57, 30, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown-800);
  box-shadow: 0 7px 16px rgba(51, 34, 16, 0.05);
}

body[data-page="home"] .markets-story__details--growth .markets-story__checks li::before {
  top: 50%;
  left: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  color: transparent;
  content: "";
  transform: translateY(-50%);
}

body[data-page="home"] .markets-story__button {
  border-color: var(--green-600);
  background: var(--green-600);
  color: var(--cream-100);
}

/* =========================================================
   INDEX — GALERÍA DE CUATRO IMÁGENES
   ========================================================= */

body[data-page="home"] .process-gallery__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.35fr 0.92fr;
  grid-template-rows:
    clamp(175px, 15vw, 235px)
    clamp(175px, 15vw, 235px);
  gap: clamp(10px, 1.1vw, 16px);
  width: min(100%, 1160px);
}

body[data-page="home"] .process-gallery__item--1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

body[data-page="home"] .process-gallery__item--2 {
  grid-column: 2;
  grid-row: 1;
}

body[data-page="home"] .process-gallery__item--3 {
  grid-column: 2;
  grid-row: 2;
}

body[data-page="home"] .process-gallery__item--4 {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-contact-button {
  color: var(--white);
}

body[data-page="home"] .footer-contact-button {
  color: var(--white);
}

@media (max-width: 980px) {
  body[data-page="home"] .company-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 18px;
  }

  body[data-page="home"] .feature-carousel {
    margin-top: 0;
  }

  body[data-page="home"] .feature-card__media {
    height: clamp(300px, 44vw, 390px);
  }

  body[data-page="home"] .process-gallery__grid {
    grid-template-columns: 0.9fr 1.2fr;
    grid-template-rows: repeat(3, clamp(165px, 28vw, 230px));
  }

  body[data-page="home"] .process-gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  body[data-page="home"] .process-gallery__item--2 {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-page="home"] .process-gallery__item--3 {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-page="home"] .process-gallery__item--4 {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 90px;
  }

  .site-footer__logo {
    width: 112px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.5rem, 10.8vw, 3.65rem);
  }

  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .products-showcase h2,
  body[data-page="home"] .quality-content h2,
  body[data-page="home"] .markets-story__content--growth h2 {
    font-size: clamp(1.85rem, 7.8vw, 2.55rem);
  }

  body[data-page="home"] .feature-card {
    min-height: 485px;
  }

  body[data-page="home"] .feature-card__media {
    height: clamp(305px, 70vw, 350px);
  }

  body[data-page="home"] .wide-media-placeholder {
    height: 245px;
  }

  body[data-page="home"] .process-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 155px);
  }

  body[data-page="home"] .process-gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  body[data-page="home"] .process-gallery__item--2 {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-page="home"] .process-gallery__item--3 {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-page="home"] .process-gallery__item--4 {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  body[data-page="home"] .process-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 190px);
  }

  body[data-page="home"] .process-gallery__item--1,
  body[data-page="home"] .process-gallery__item--2,
  body[data-page="home"] .process-gallery__item--3,
  body[data-page="home"] .process-gallery__item--4 {
    grid-column: 1;
    grid-row: auto;
  }
}


/* =========================================================
   CORRECCIONES V21
   Flechas en CTA y menor superposición de las cards.
   ========================================================= */

/* Los CTA ahora usan una flecha simple, sin círculos laterales. */
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
) {
  gap: 12px;
  padding-right: 21px;
  padding-left: 21px;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::before {
  display: none;
  content: none;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::after {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  opacity: 1;
  transform: none;
  transition: transform 0.25s ease;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):hover::after,
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):focus-visible::after {
  transform: translateX(4px);
}

/* La sección conserva una unión visual con el hero,
   pero las cards ya no invaden tanto la parte superior. */
body[data-page="home"] .feature-carousel {
  margin-top: clamp(-105px, -5vw, -78px);
}

body[data-page="home"] .company-section__inner {
  padding-top: clamp(34px, 3.2vw, 48px);
}

body[data-page="home"] .company-copy {
  margin-bottom: 26px;
}

/* Ajuste fino para que las cards se lean como parte de la segunda sección. */
body[data-page="home"] .feature-carousel__viewport {
  overflow: hidden;
}

@media (max-width: 980px) {
  body[data-page="home"] .feature-carousel {
    margin-top: 0;
  }

  body[data-page="home"] .company-section__inner {
    padding-top: 28px;
  }
}


/* =========================================================
   AJUSTES FINALES V23
   CTA unificados, overlay marrón oscuro y checks reales.
   ========================================================= */

/* Todos los CTA comparten la misma construcción visual del hero.
   Los colores continúan dependiendo de cada sección. */
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 21px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  box-shadow:
    0 0 0 3px color-mix(in srgb, currentColor 23%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::before {
  display: none;
  content: none;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
)::after {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):hover,
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):hover::after,
:is(
  .primary-button,
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
):focus-visible::after {
  transform: translateX(4px);
}

/* Evitar íconos SVG adicionales dentro de los CTA. */
:is(
  .product-preview-card__link,
  .markets-story__button,
  .footer-contact-button,
  .about-hero__button,
  .product-slide__cta,
  .contact-form--integrated button,
  .markets-page-contact
) > svg {
  display: none;
}

/* Nuestra selección: marrón muy oscuro, cercano al negro. */
body[data-page="home"] .products-showcase__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(16, 10, 5, 0.66) 0%,
      rgba(25, 15, 7, 0.86) 48%,
      rgba(10, 7, 4, 0.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(9, 6, 3, 0.36),
      rgba(45, 27, 12, 0.16) 52%,
      rgba(9, 6, 3, 0.4)
    );
}

/* Los checks de mercados usan una marca real, no un punto. */
body[data-page="home"]
.markets-story__details--growth
.markets-story__checks li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--brown-950);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

/* Colores particulares sin alterar la estructura común del CTA. */
body[data-page="home"] .primary-button {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--brown-950);
}

body[data-page="home"] .markets-story__button {
  border-color: var(--green-600);
  background: var(--green-600);
  color: var(--cream-100);
}

.footer-contact-button {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--white);
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
  :is(
    .primary-button,
    .product-preview-card__link,
    .markets-story__button,
    .footer-contact-button,
    .about-hero__button,
    .product-slide__cta,
    .contact-form--integrated button,
    .markets-page-contact
  ) {
    box-shadow:
      0 0 0 3px rgba(142, 198, 43, 0.23),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}


/* =========================================================
   INTEGRACIÓN FINAL DE IMÁGENES
   ========================================================= */

/* Todas las imágenes de las cards llenan correctamente el área disponible. */
body[data-page="home"] .feature-card__media img,
body[data-page="home"] .product-preview-card__media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body[data-page="home"] .feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Imágenes reales en productos destacados. */
body[data-page="home"] .product-preview-card__media {
  overflow: hidden;
}

body[data-page="home"] .product-preview-card__media > img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .product-preview-card:hover .product-preview-card__media > img {
  transform: scale(1.035);
}

/* Imagen panorámica sin texto, overlay ni placeholder. */
body[data-page="home"] .wide-media-section {
  height: clamp(260px, 31vw, 430px);
  overflow: hidden;
  background: transparent;
}

body[data-page="home"] .wide-media-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mapa real en crecimiento comercial. */
body[data-page="home"] .markets-story__route-map {
  padding: 0;
  overflow: hidden;
  border-style: solid;
  background: var(--brown-950);
}

body[data-page="home"] .markets-story__route-map img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  display: block;
  object-fit: contain;
}

/* Banner de nosotros reciclado desde el carrusel principal. */
body[data-page="about"] .about-hero__background {
  background:
    url("../media/hero-limones.png")
    center 48% / cover no-repeat;
}

/* Carrusel central de nosotros. */
body[data-page="about"] .about-essence__image {
  position: relative;
}

body[data-page="about"] .about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: var(--cream-200);
}

body[data-page="about"] .about-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.75s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="about"] .about-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

body[data-page="about"] .about-carousel__controls {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

body[data-page="about"] .about-carousel__arrow,
body[data-page="about"] .about-carousel__dot {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(24, 16, 7, 0.58);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

body[data-page="about"] .about-carousel__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

body[data-page="about"] .about-carousel__arrow:hover,
body[data-page="about"] .about-carousel__arrow:focus-visible {
  background: var(--green-500);
  color: var(--brown-950);
}

body[data-page="about"] .about-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

body[data-page="about"] .about-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

body[data-page="about"] .about-carousel__dot.is-active {
  width: 23px;
  border-radius: 999px;
  background: var(--green-400);
}

/* Banner de contacto reciclado desde el index. */
body[data-page="contact"] .contact-flow__image {
  background:
    url("../media/hero-paltas.png")
    center 42% / cover no-repeat;
}

/* Formulario e información ya dentro de la parte sólida del degradado. */
body[data-page="contact"] .contact-content {
  margin-top: clamp(330px, 27vw, 455px);
}

/* El mapa de mercados conserva su imagen real. */
body[data-page="markets"] .markets-page-map img {
  content: url("../media/mercados/mapa-rutas-comerciales.png");
}

@media (max-width: 1080px) {
  body[data-page="contact"] .contact-content {
    margin-top: clamp(290px, 34vw, 390px);
  }
}

@media (max-width: 760px) {
  body[data-page="about"] .about-carousel,
  body[data-page="about"] .about-carousel__slide {
    min-height: 470px;
  }

  body[data-page="contact"] .contact-content {
    margin-top: 260px;
  }
}

@media (max-width: 480px) {
  body[data-page="contact"] .contact-content {
    margin-top: 220px;
  }
}


/* =========================================================
   AJUSTES FINALES V2
   Panorámica más alta, mapa actualizado y fondos transparentes.
   ========================================================= */

/* La panorámica gana altura para reducir el recorte vertical. */
body[data-page="home"] .wide-media-section {
  height: clamp(320px, 35vw, 520px);
}

body[data-page="home"] .wide-media-image {
  object-position: center 50%;
}

/* Las tres imágenes del carrusel ya tienen fondo transparente. */
body[data-page="about"] .about-essence__image,
body[data-page="about"] .about-carousel {
  background: var(--cream-100);
}

body[data-page="about"] .about-carousel__slide {
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}

@media (max-width: 760px) {
  body[data-page="home"] .wide-media-section {
    height: 285px;
  }
}

@media (max-width: 480px) {
  body[data-page="home"] .wide-media-section {
    height: 245px;
  }
}
