:root {
      --crema: #faefdd;
      --verde: #244021;
      --verde-profundo: #19351d;
      --laton: #b17f4a;
      --texto: #28362a;
      --linea: rgba(36, 64, 33, 0.15);
      --max: 1320px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      min-width: 320px;
      background: var(--crema);
      color: var(--texto);
      font-family: "DM Sans", Arial, sans-serif;
    }

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

  .site-shell {
  overflow: hidden;
  border-top: 1px solid rgba(36, 64, 33, 0.18);
}

.header {
  width: min(calc(100% - 96px), var(--max));
  min-height: 132px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

    .header-nav {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 38px;
}

.header-nav--left {
  right: calc(50% + 135px);
}

.header-nav--right {
  left: calc(50% + 135px);
}
    .nav-link {
      position: relative;
      font-family: "DM Mono", monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--verde);
      white-space: nowrap;
      transition: color 160ms ease;
    }

    .nav-link::after {
      position: absolute;
      right: 0;
      bottom: -8px;
      left: 0;
      height: 1px;
      content: "";
      background: var(--laton);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 180ms ease;
    }

    .nav-link:hover { color: var(--laton); }
    .nav-link:hover::after { transform: scaleX(1); }

    .brand {
      width: 154px;
      display: grid;
      justify-items: center;
    }

    .brand img {
      display: block;
      width: 100%;
      height: auto;
    }


.hero {
  width: min(calc(100% - 96px), var(--max));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  border-top: 1px solid var(--linea);

  background-image:
    linear-gradient(
      90deg,
      rgba(250, 239, 221, 0.96) 0%,
      rgba(250, 239, 221, 0.88) 34%,
      rgba(250, 239, 221, 0.48) 58%,
      rgba(250, 239, 221, 0.12) 100%
    ),
    url("assets/campo.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 100px 5.7vw 70px 110px;
}

    .eyebrow {
      margin: 0 0 22px;
      color: var(--laton);
      font-family: "DM Mono", monospace;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      line-height: 1.4;
      text-transform: uppercase;
    }

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--verde);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(56px, 4.8vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 br {
  display: block;
}

 
.section-separator {
  display: block;
  width: 210px;
  height: auto;
  margin: 24px 0 25px 130px;
}


.hero-text {
  max-width: 520px;
  margin: -10px 0 0;
  color: #3d463d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.38;
}

    .hero-cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--laton);
      color: var(--verde);
      font-family: "DM Mono", monospace;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.095em;
      line-height: 1;
      text-transform: uppercase;
    }

    .hero-cta span {
      font-family: Arial, sans-serif;
      font-size: 17px;
      line-height: 0.7;
      transition: transform 160ms ease;
    }

    .hero-cta:hover span { transform: translateX(5px); }


.origin {
  position: relative;
  overflow: hidden;
  background: var(--verde-profundo);
  color: var(--crema);
}

.origin-inner {
  width: min(calc(100% - 96px), var(--max));
  min-height: 670px;
  margin: 0 auto;
  padding: 112px 18px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 110px;
  align-items: center;
}

.origin-copy {
  max-width: 700px;
}

.origin-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.origin-eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--laton);
}

.origin h2 {
  max-width: 650px;
  margin: 0 0 38px;
  color: var(--crema);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(58px, 5.1vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.origin-copy p {
  max-width: 690px;
  margin: 0 0 24px;
  color: rgba(248, 244, 234, 0.88);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.7;
}

.origin-copy p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.origin-side {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.origin-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.origin-location span {
  color: var(--crema);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(42px, 4vw, 44px);
  line-height: 1;
}

.origin-location small {
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.origin-seal {
  width: min(210px, 75%);
  height: auto;
  opacity: 0.92;
  margin: 28px 0 0;
}

.origin-separator {
  display: block;
  width: 210px;
  height: auto;
  margin: 18px 0 14px;
  opacity: 0.9;
}

.catalogo {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 10px 0 0px;
}

.catalogo-image {
  display: block;
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


.beneficios {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 0;
  line-height: 0;
}

.beneficios-image {
  display: block;
  width: 100%;
  height: auto;
}

.distribuidores {
  background: var(--verde-profundo);
  color: var(--crema);
}

.distribuidores-inner {
  width: min(calc(100% - 96px), var(--max));
  min-height: 430px;
  margin: 0 auto;
  padding: 94px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 120px;
  align-items: center;
}

.distribuidores-copy {
  max-width: 760px;
}

.distribuidores-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.distribuidores-eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--laton);
}

.distribuidores h2 {
  max-width: 740px;
  margin: 0;
  color: var(--crema);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(42px, 3.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.distribuidores-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(250, 239, 221, 0.82);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
}

.distribuidores-contacto {
  min-height: 250px;
  padding: 32px 0 28px 34px;
  border-left: 1px solid rgba(177, 127, 74, 0.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contacto-label {
  margin: 0 0 22px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--laton);
  color: var(--crema);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.whatsapp-cta:hover {
  background: var(--laton);
  color: var(--verde-profundo);
}

.whatsapp-cta span {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 0.7;
}

.contacto-aclaracion {
  max-width: 340px;
  margin: 22px 0 14px;
  color: rgba(250, 239, 221, 0.72);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.instagram-link {
  color: var(--crema);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer {
  background: var(--crema);
  color: var(--verde);
}

.footer-inner {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 58px 18px 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.footer-brand img {
  display: block;
  width: 160px;
  height: auto;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 6px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--verde);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.footer-bottom {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 18px;
  border-top: 1px solid rgba(36, 64, 33, 0.18);
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.menu-toggle {
  display: none;
}



    /*
      Espacio reservado para foto / video / ilustración.
      Está vacío a propósito para decidirlo después.
    */
    .hero-media {
      min-height: 100%;
    }

.catalogo-mobile,
.beneficios-mobile {
  display: none;
}




/* =========================================================
   MOBILE — Green Patagonia
   One responsive layout for phones and tablets.
   ========================================================= */
@media (max-width: 820px) {
  .header,
  .origin-inner,
  .catalogo,
  .beneficios,
  .distribuidores-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 40px), var(--max));
  }

  .header {
    min-height: 94px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .header-nav { display: none; }

  .brand {
    width: 132px;
    margin: 0;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--verde);
  }

  .hero {
    width: 100%;
    min-height: 680px;
    grid-template-columns: 1fr;
    background-position: 59% center;
    background-image:
      linear-gradient(
        90deg,
        rgba(250, 239, 221, 0.97) 0%,
        rgba(250, 239, 221, 0.92) 46%,
        rgba(250, 239, 221, 0.64) 73%,
        rgba(250, 239, 221, 0.18) 100%
      ),
      linear-gradient(
        180deg,
        rgba(250, 239, 221, 0.07) 0%,
        rgba(250, 239, 221, 0.22) 100%
      ),
      url("assets/campo.png");
  }

  .hero-copy { padding: 92px 48px 80px; }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(56px, 12.8vw, 76px);
    line-height: 0.95;
  }

  .section-separator {
    width: 170px;
    margin: 32px 0 28px 2px;
  }

  .hero-text {
    max-width: 420px;
    margin: 0;
    font-size: 21px;
    line-height: 1.42;
  }

  .hero-cta {
    margin-top: 36px;
    font-size: 10px;
  }

  .hero-media { display: none; }

  .origin-inner {
    min-height: auto;
    padding: 78px 18px 72px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .origin-copy,
  .origin-copy p,
  .origin-copy p:last-child { max-width: none; }

  .origin-eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
  }

  .origin h2 {
    margin-bottom: 28px;
    font-size: clamp(52px, 11.5vw, 70px);
  }

  .origin-copy p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.58;
  }

  .origin-side {
    min-height: auto;
    align-items: center;
    gap: 40px;
  }

  .origin-seal {
    width: 176px;
    margin: 0;
  }

  .origin-location {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .origin-location span { font-size: clamp(28px, 6.5vw, 36px); }
  .origin-location small { font-size: 11px; }

  .origin-separator {
    width: 178px;
    margin: 16px 0 12px;
  }

  .catalogo { padding: 28px 0 0; }

 .catalogo-image,
.beneficios-image {
  width: 100%;
  height: auto;
}

.catalogo-desktop {
  display: none !important;
}

.catalogo-mobile {
  display: block !important;
}

.beneficios-image {
  display: block;
}

  .beneficios { margin-top: 0; }

  .distribuidores-inner {
    min-height: auto;
    padding: 76px 18px 68px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .distribuidores h2 {
    max-width: 620px;
    font-size: clamp(46px, 10vw, 64px);
    line-height: 0.98;
  }

  .distribuidores-text {
    max-width: 520px;
    margin-top: 22px;
    font-size: 20px;
  }

  .distribuidores-contacto {
    min-height: auto;
    width: 100%;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(177, 127, 74, 0.55);
    align-items: flex-start;
  }

  .contacto-aclaracion { max-width: 440px; }

  .footer-inner {
    padding: 52px 18px 40px;
    flex-direction: column;
    gap: 42px;
  }

  .footer-brand img { width: 150px; }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 64px;
  }

  .footer-links a { font-size: 19px; }

  .footer-bottom {
    padding: 16px 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 20px;
    font-size: 8px;
  }

.catalogo-desktop {
  display: none;
}

.catalogo-mobile {
  display: block;
}

.beneficios-desktop {
  display: none;
}

.beneficios-mobile {
  display: block;
}


  /* Catálogo móvil: sin márgenes ni padding de la sección */
  section#productos.catalogo {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }

  section#productos.catalogo .catalogo-image {
    width: 100% !important;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
  }

  section#productos.catalogo .catalogo-desktop {
    display: none !important;
  }

  section#productos.catalogo .catalogo-mobile {
    display: block !important;
  }

}

@media (max-width: 820px) {
  section#productos.catalogo img.catalogo-desktop {
    display: none !important;
  }

  section#productos.catalogo img.catalogo-mobile {
    display: block !important;
  }
}

/* =========================================================
   LÍNEA BLANCA
   Misma grilla, tipografías y escala visual que "Nuestro origen".
   ========================================================= */
.linea-blanca {
  position: relative;
  overflow: hidden;
  background: var(--verde-profundo);
  color: var(--crema);
}

.linea-blanca-inner {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 88px 18px 80px;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: 110px;
  align-items: center;
}

.linea-blanca-copy {
  max-width: 700px;
}

.linea-blanca-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linea-blanca-media img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  opacity: 0.88;
}

.linea-blanca-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: var(--laton);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.linea-blanca-eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--laton);
}

.linea-blanca-title {
  max-width: 650px;
  margin: 0;
  color: var(--crema);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(58px, 5.1vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.linea-blanca-separator {
  display: block;
  width: 210px;
  height: auto;
  margin: 18px 0 20px;
  opacity: 0.9;
}

.linea-blanca-text {
  max-width: 690px;
  margin: 0 0 24px;
  color: rgba(248, 244, 234, 0.88);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.7;
}

.linea-blanca-text:last-of-type {
  max-width: 650px;
  margin-bottom: 0;
}

.linea-blanca-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--laton);
  color: var(--crema);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.095em;
  line-height: 1;
  text-transform: uppercase;
}

.linea-blanca-cta span {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 0.7;
  transition: transform 160ms ease;
}

.linea-blanca-cta:hover span {
  transform: translateX(5px);
}

/* Contacto comercial */
.ventas-telefono {
  display: inline-block;
  margin: 2px 0 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(177, 127, 74, 0.7);
  color: var(--crema);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.ventas-telefono:hover {
  color: var(--laton);
}

.footer-brand .footer-ventas {
  margin-top: 8px;
}

.footer-ventas a {
  color: inherit;
}

@media (max-width: 820px) {
/* =========================================================
   LÍNEA BLANCA — MOBILE
   ========================================================= */
.linea-blanca-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 72px 18px 58px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  column-gap: 16px;
  row-gap: 0;
  align-items: start;
}

.linea-blanca-copy {
  display: contents;
}

/* Encabezado y título: ancho completo */
.linea-blanca-eyebrow,
.linea-blanca-title,
.linea-blanca-separator {
  grid-column: 1 / -1;
}

.linea-blanca-eyebrow {
  margin-bottom: 24px;
  font-size: 10px;
}

.linea-blanca-title {
  max-width: none;
  font-size: clamp(52px, 11.5vw, 70px);
}

.linea-blanca-separator {
  width: 178px;
  margin: 16px 0 18px;
}

/* Estilo general de ambos párrafos */
.linea-blanca-text {
  max-width: none;
  font-size: 18px;
  line-height: 1.58;
}

/* Primer párrafo: ocupa todo el ancho */
.linea-blanca-copy > .linea-blanca-text:nth-of-type(2) {
  grid-column: 1 / -1;
  margin: 0 0 22px;
}

/* Segundo párrafo: queda a la izquierda de los frascos */
.linea-blanca-copy > .linea-blanca-text:nth-of-type(3) {
  grid-column: 1;
  grid-row: 5;
  margin: 0;
}

/* Frascos: al lado del segundo párrafo */
.linea-blanca-media {
  grid-column: 2;
  grid-row: 5 / span 2;

  min-height: 0;
  margin: 0;
  align-self: center;
  justify-self: end;
  display: block;
}

.linea-blanca-media img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  opacity: 0.88;
}

/* Botón: debajo del bloque completo */
.linea-blanca-cta {
  grid-column: 1 / -1;
  grid-row: 6;

  justify-self: start;
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  padding-bottom: 9px;

  font-size: 10px;
  white-space: nowrap;
}
}
