/*
Theme Name: Euro Suministros Home 1.0.44 Upload
Theme URI: https://example.com/
Author: Euro Suministros
Description: Home funcional para Euro Suministros basado en el visual principal.
Version: 1.0.44
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: euro-suministros
*/

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/poppins-regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/poppins-bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("assets/fonts/poppins-bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/poppins-bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Helvetica Neue LT Std";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/helvetica-neue-lt-std-roman.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Chunky Funks";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/chunky-funks.ttf") format("truetype");
}

:root {
  --blue: #0757f5;
  --blue-dark: #0141d2;
  --sky: #59c9f8;
  --orange: #ff9416;
  --orange-deep: #ff5f00;
  --text: #656565;
  --dark: #222222;
  --footer: #242424;
  --footer-bottom: #151515;
  --soft: #f2f7fa;
  --white: #ffffff;
  --container: 1060px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 22px;
  left: 0;
  width: 100%;
  padding: 0 clamp(16px, 5vw, 90px);
}

.admin-bar .site-header {
  top: 54px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.site-header--dark .search-button,
.site-header--dark .menu-toggle {
  color: var(--blue);
}

.site-header--contained .site-header__inner {
  max-width: 950px;
  padding: 10px 20px 10px 26px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(11, 85, 190, 0.12);
}

.site-header--contained .site-logo img {
  width: 170px;
}

.site-header--contained .site-nav {
  width: 100%;
}

.site-header--contained .site-nav ul {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.site-logo img {
  width: 190px;
  aspect-ratio: 6042 / 2950;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  width: min(100%, 535px);
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 13px 26px;
  list-style: none;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(245, 105, 0, 0.14);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  font-weight: 800;
}

.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.search-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.search-button svg,
.menu-toggle svg {
  width: 27px;
  height: 27px;
}

.site-search {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  width: 42px;
  min-height: 42px;
}

.site-search__input {
  position: absolute;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0 42px 0 16px;
  color: var(--blue);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: width 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.site-search:hover .site-search__input,
.site-search:focus-within .site-search__input {
  width: min(210px, 34vw);
  border-color: rgba(47, 88, 242, 0.28);
  opacity: 1;
  pointer-events: auto;
}

.site-search .search-button {
  position: relative;
  z-index: 2;
}

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

.menu-toggle {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 190px 20px 92px;
  color: var(--white);
  background: #ff9c16;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  z-index: 1;
  bottom: -176px;
  width: 125vw;
  height: 230px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(290px, 520px) minmax(300px, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 60px);
  max-width: 1050px;
  margin: 0 auto;
}

.hero-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
}

.hero-product {
  width: 100%;
  margin-left: auto;
  mix-blend-mode: normal;
  filter: drop-shadow(0 22px 20px rgba(123, 47, 0, 0.28));
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: -22%;
  width: min(44%, 185px);
  border-radius: 22px;
  filter: drop-shadow(0 14px 16px rgba(78, 30, 0, 0.28));
}

.hero-copy {
  align-self: center;
}

.hero-eyebrow {
  margin: 0 0 -12px;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-family: "Chunky Funks", "Poppins", Arial, sans-serif;
  font-size: clamp(5.8rem, 11vw, 11.8rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-title-art {
  width: min(100%, 520px);
}

.hero-tag {
  display: inline-flex;
  margin-top: 24px;
  padding: 5px 18px;
  color: var(--white);
  background: #0f8ef0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  transform: skew(-14deg);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 72px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dots span:first-child {
  background: var(--white);
}

.section {
  padding: 76px 20px;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.section-title span,
.gradient-text {
  color: var(--sky);
}

.section-lead {
  max-width: 560px;
  margin: 28px auto 0;
  color: #6a6a6a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
}

.seeds {
  padding-top: 70px;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  max-width: 900px;
  margin: 70px auto 88px;
}

.seed-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.seed-card__image {
  display: grid;
  place-items: end center;
  width: 100%;
  height: 175px;
}

.seed-card__image img {
  width: auto;
  max-width: 118%;
  max-height: 175px;
  object-fit: contain;
}

.seed-card h3 {
  margin: 16px 0 8px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 900;
  line-height: 0.95;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 20px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(7, 87, 245, 0.22);
  transform: translateY(-1px);
}

.divider {
  height: 2px;
  max-width: 1125px;
  margin: 0 auto;
  background: #d7d7d7;
}

.products {
  position: relative;
  overflow: visible;
  padding-top: 112px;
  padding-bottom: 118px;
}

.products-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 28px;
  max-width: 960px;
  color: transparent;
  background: linear-gradient(90deg, #0757f5 0%, #0757f5 52%, #2faed3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(4.7rem, 10vw, 9.8rem);
  font-weight: 900;
  line-height: 0.84;
}

.products-heading span {
  color: #2ea5d3;
}

.products-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 640px) minmax(260px, 360px);
  align-items: center;
  gap: 38px;
  max-width: 1040px;
  margin: -74px auto 0;
}

.products-feature img,
.product-farmer {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.product-farmer {
  position: relative;
  z-index: 3;
  display: block;
  max-width: none;
  overflow: visible;
  border-radius: 0;
  clip-path: none;
  transform: translate3d(0, var(--farmer-parallax, 0px), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.products-copy h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.82;
}

.products-copy h2 span {
  color: var(--sky);
}

.products-copy p {
  margin: 0 0 24px;
  color: #6a6a6a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 42px;
  padding: 8px 24px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(7, 87, 245, 0.28);
  transform: translateY(-2px);
}

.marangatu {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 92px 20px 88px;
  color: var(--white);
  background: var(--white);
}

.marangatu-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.marangatu__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(300px, 500px);
  align-items: center;
  justify-content: center;
  gap: 58px;
  max-width: 1060px;
  margin: 0 auto;
}

.marangatu-art {
  width: min(100%, 560px);
  justify-self: end;
}

.marangatu-copy p {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 400;
  line-height: 1;
}

.marangatu-copy h2 {
  margin: 0 0 34px;
  color: var(--white);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.82;
}

.brands {
  padding: 68px 20px 76px;
  background: var(--white);
}

.brand-cloud {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  overflow: visible;
}

.brand-cloud img {
  width: min(100%, 980px);
  height: auto;
  object-fit: contain;
  opacity: 0.78;
}

.site-footer {
  color: var(--white);
  background: var(--footer);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(220px, 1fr) minmax(160px, 240px);
  align-items: start;
  gap: 58px;
  max-width: 850px;
  margin: 0 auto;
  padding: 92px 20px 82px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
  overflow: visible;
}

.site-footer__logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.footer-block h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.footer-block p,
.footer-nav a {
  margin: 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-social {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  pointer-events: auto;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--sky);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 23px;
  height: 23px;
}

.footer-nav {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  padding: 27px 20px;
  background: var(--footer-bottom);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-about {
  position: relative;
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: 90px;
}

.home-about__intro {
  position: relative;
  z-index: 2;
  padding: 116px 20px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 28%),
    linear-gradient(105deg, #0757f5 0%, #39b6dc 100%);
}

.home-about__inner {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(320px, 430px);
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 7vw, 86px);
  max-width: 1040px;
  margin: 0 auto 70px;
}

.home-about__logo {
  width: min(100%, 370px);
}

.home-about__copy p {
  margin: 0 0 22px;
  color: #5f5f5f;
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  font-weight: 500;
  line-height: 1.24;
}

.home-about__timeline {
  display: grid;
  grid-template-columns: minmax(210px, 330px) minmax(300px, 560px);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 54px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-left-color: var(--sky);
  border-radius: 26px;
}

.home-about__year span {
  display: block;
  margin-bottom: 0;
  color: var(--sky);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

.home-about__year strong {
  display: block;
  color: var(--blue);
  font-size: clamp(5.2rem, 8vw, 7.4rem);
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
}

.home-about__timeline p {
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(0.98rem, 1.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.home-about__people {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -2px;
  background: linear-gradient(100deg, #0757f5 0%, #176cf0 54%, #41bce2 100%);
}

.home-about__people img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.home-purpose {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.home-about__cards {
  display: grid;
  gap: 24px;
  max-width: 690px;
  margin: 0 auto;
  padding: 58px 20px 0;
}

.home-about-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  overflow: hidden;
  min-height: 210px;
  background: var(--blue);
  border-radius: 0 26px 26px 0;
}

.home-about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-card > div {
  display: grid;
  align-content: center;
  padding: 32px 42px;
}

.home-about-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.home-about-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
}

.home-values {
  padding: 66px 20px 110px;
  text-align: center;
}

.home-values h2 {
  margin: 0 0 34px;
  color: transparent;
  background: linear-gradient(90deg, #0757f5 0%, #0757f5 55%, #35b5da 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.82;
}

.home-values__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.home-value-card {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 122px;
  min-height: 122px;
  padding: 14px 10px;
  color: var(--white);
  background: #70a23a;
  border-radius: 14px;
  text-align: center;
}

.home-value-card svg {
  width: 48px;
  height: 48px;
}

.home-value-card span {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.05;
}

.page-shell {
  overflow: hidden;
  background: var(--white);
}

.search-results-page {
  min-height: 70vh;
  padding: 160px 20px 90px;
  background: linear-gradient(180deg, #f2fbff 0%, #fff 34%);
}

.search-results-page__inner {
  max-width: 940px;
  margin: 0 auto;
}

.search-results-page h1 {
  margin: 0 0 34px;
  color: var(--blue);
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.search-results-list {
  display: grid;
  gap: 18px;
}

.search-result-card {
  display: block;
  padding: 24px 28px;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(47, 88, 242, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(11, 85, 190, 0.08);
}

.search-result-card h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
}

.search-result-card p {
  margin: 0;
  color: #676767;
  font-size: 18px;
  line-height: 1.25;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  box-sizing: border-box;
  min-height: 690px;
  overflow: hidden;
  padding: 190px 20px 110px;
}

.page-hero--seeds {
  background:
    linear-gradient(90deg, rgba(7, 87, 245, 0.03), rgba(84, 198, 245, 0.08)),
    url("assets/images/semillas/Bg-Hero.png") center / cover no-repeat;
}

.page-hero--seeds::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -176px;
  z-index: 0;
  width: 125vw;
  height: 230px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(320px, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 7vw, 104px);
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero__image {
  justify-self: end;
  width: min(100%, 520px);
  filter: drop-shadow(0 24px 28px rgba(14, 62, 122, 0.12));
}

.page-hero__copy h1,
.products-page-hero__copy h1 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 0.92;
}

.page-hero__copy h1 span {
  color: var(--sky);
}

.page-hero__copy p,
.products-page-hero__copy p {
  max-width: 520px;
  margin: 0;
  color: #646464;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  font-weight: 500;
  line-height: 1.2;
}

.catalog-section {
  padding: 92px 20px 112px;
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 52px;
  max-width: 1040px;
  margin: 0 auto;
}

.catalog-grid--products {
  max-width: 980px;
  gap: 70px 70px;
}

.catalog-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  text-align: center;
}

.catalog-card__media {
  display: grid;
  place-items: end center;
  width: 100%;
  min-height: 280px;
}

.catalog-card__media img {
  width: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.1));
}

.catalog-card--product .catalog-card__media {
  min-height: 260px;
}

.catalog-card--product .catalog-card__media img {
  max-height: 260px;
}

.catalog-card h2 {
  margin: 22px 0 6px;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  font-weight: 900;
  line-height: 0.96;
}

.catalog-card p {
  margin: 0 0 10px;
  color: #6d6d6d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.blue-cta-band {
  position: relative;
  overflow: hidden;
  padding: 108px 20px 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 87, 245, 0.08), rgba(84, 198, 245, 0.08)),
    url("assets/images/semillas/Bg-banner-nuestras-semillas.png") center / cover no-repeat;
}

.blue-cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  width: 125vw;
  height: 150px;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.blue-cta-band::before {
  top: -90px;
}

.blue-cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 470px);
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 34px);
  max-width: 980px;
  margin: 0 auto;
}

.blue-cta-band__inner img {
  justify-self: end;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.18));
}

.blue-cta-band__product {
  width: min(100%, 540px);
}

.blue-cta-band__text {
  justify-self: start;
  width: min(100%, 520px);
}

.blue-cta-band__inner span {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.blue-cta-band__inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 900;
  line-height: 0.82;
}

.products-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  box-sizing: border-box;
  min-height: 690px;
  overflow: hidden;
  padding: 172px 20px 104px;
  background: var(--white) url("assets/images/productos/BG-Hero.jpg") center / cover no-repeat;
}

.products-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -176px;
  z-index: 0;
  width: 125vw;
  height: 230px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.products-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.products-page-hero__stage {
  position: relative;
  min-height: 370px;
}

.products-page-hero__stage h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #54c6f5 0%, #0757f5 54%, #0757f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(6.2rem, 13vw, 11.2rem);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
}

.products-page-hero__stage img {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 24px 22px rgba(12, 67, 135, 0.15));
}

.products-page-hero__tray {
  left: 52%;
  top: 42%;
  width: min(46vw, 430px);
  transform: translate(-50%, -6%);
}

.products-page-hero__tapao {
  left: 50%;
  top: 48%;
  width: min(38vw, 360px);
  transform: translate(-50%, -28%);
}

.products-page-hero__tormenta {
  left: 37%;
  top: 60%;
  width: min(20vw, 200px);
  transform: translate(-50%, -15%);
}

.products-page-hero__conector {
  left: 30%;
  top: 70%;
  width: min(15vw, 140px);
  transform: translate(-50%, -4%);
}

.catalog-section--products {
  padding-top: 58px;
}

.blue-cta-band--products .blue-cta-band__inner img {
  max-height: 430px;
}

.contact-hero {
  position: relative;
  display: grid;
  align-items: center;
  box-sizing: border-box;
  min-height: 690px;
  overflow: hidden;
  padding: 190px 20px 112px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -176px;
  z-index: 1;
  width: 125vw;
  height: 230px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0 auto;
  padding-left: min(48vw, 455px);
}

.contact-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(4.6rem, 8.1vw, 8.25rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0;
}

.contact-hero h1 span {
  display: block;
  color: var(--cyan);
}

.contact-hero h1 small {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 22px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: clamp(1.6rem, 3vw, 2.85rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.contact-form-section {
  padding: 76px 20px 116px;
  background: var(--white);
  text-align: center;
}

.contact-form-section__inner {
  width: min(100%, 430px);
  margin: 0 auto;
}

.contact-form-section h2 {
  width: max-content;
  max-width: calc(100vw - 36px);
  margin: 0 0 42px 50%;
  color: var(--blue);
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  font-weight: 900;
  line-height: 0.92;
  transform: translateX(-50%);
  white-space: nowrap;
}

.contact-form-section h2 span {
  display: block;
  color: var(--cyan);
}

.contact-form-section p {
  margin: 0 auto 36px;
  color: #646464;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.contact-form {
  display: grid;
  gap: 8px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 36px;
  padding: 7px 14px;
  color: #444;
  background: var(--white);
  border: 2px solid #3368ff;
  border-radius: 999px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 64px;
  border-radius: 12px;
  resize: vertical;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__terms {
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 8px;
  margin: 4px 0 6px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.15;
}

.contact-form__terms input {
  min-height: 14px;
  padding: 0;
  accent-color: var(--blue);
}

.contact-form button {
  justify-self: center;
  min-width: 230px;
  min-height: 46px;
  color: var(--sky);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  color: var(--white);
  background: var(--cyan);
  transform: translateY(-1px);
}

.contact-form__notice {
  padding: 12px 16px;
  color: var(--blue);
  background: #eaf8ff;
  border-radius: 12px;
}

.contact-products {
  padding-top: 40px;
}

.product-detail {
  background: #f3fbff;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 20px 168px;
  background: #f3fbff;
}

.product-detail-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -178px;
  z-index: 0;
  width: 125vw;
  height: 230px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.product-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(320px, 470px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 72px);
  max-width: 960px;
  margin: 0 auto;
}

.product-detail-hero__media {
  position: relative;
  min-height: 610px;
}

.product-detail-hero__pack {
  position: absolute;
  top: 45%;
  left: 50%;
  width: min(100%, 390px);
  margin: 0 auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 28px rgba(10, 60, 120, 0.14));
}

.product-detail-hero__crop {
  position: absolute;
  left: 50%;
  bottom: -154px;
  width: min(48%, 185px);
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.12));
}

.product-detail-hero__copy {
  padding-top: 20px;
}

.product-detail-hero__brand {
  min-height: 50px;
  margin-bottom: 14px;
}

.product-detail-hero__brand img {
  width: min(100%, 320px);
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.product-detail-hero__brand span {
  color: #233946;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 800;
}

.product-detail-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(3.1rem, 5.2vw, 5.1rem);
  font-weight: 900;
  line-height: 0.86;
}

.product-detail-hero__subtitle {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(1.18rem, 1.9vw, 1.85rem);
  font-weight: 500;
  line-height: 1;
}

.product-detail-hero__description {
  max-width: 430px;
  margin-bottom: 30px;
  color: #565656;
  font-size: clamp(0.92rem, 1.12vw, 1.08rem);
  font-weight: 500;
  line-height: 1.24;
}

.product-detail-hero__description p {
  margin: 0;
}

.product-detail-hero__cta {
  min-height: 38px;
  padding-inline: 22px;
  font-size: clamp(0.96rem, 1.35vw, 1.15rem);
}

.product-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 168px);
  justify-content: end;
  gap: clamp(20px, 3vw, 34px);
  width: min(100%, 930px);
  margin: 26px auto 0;
  padding-left: min(28vw, 286px);
}

.product-benefits article {
  text-align: center;
}

.product-benefits h2 {
  margin: 0 0 16px;
  width: 100%;
  min-height: 32px;
  padding: 7px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.05;
}

.product-benefits p {
  margin: 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.1;
}

.related-products {
  position: relative;
  overflow: hidden;
  padding: 96px 20px 74px;
  color: var(--blue);
  background: var(--white);
  text-align: center;
}

.related-products h2 {
  margin: 0 0 38px;
  color: transparent;
  background: linear-gradient(90deg, #0757f5 0%, #0757f5 45%, #54c6f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.related-products__carousel {
  position: relative;
  display: flex;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 90px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.related-products__carousel::-webkit-scrollbar {
  display: none;
}

.related-product-card {
  flex: 0 0 160px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--blue);
  text-align: center;
  scroll-snap-align: center;
}

.related-product-card img {
  width: 100%;
  max-width: 150px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 56, 140, 0.1));
}

.related-product-card strong {
  color: var(--blue);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.related-product-card span {
  color: #777;
  font-size: 0.9rem;
  font-weight: 500;
}

.related-products__frame {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.related-products__arrow {
  position: absolute;
  top: 38%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.related-products__arrow:hover,
.related-products__arrow:focus-visible {
  background: var(--cyan);
  transform: translateY(-50%) scale(1.04);
}

.related-products__arrow--prev {
  left: 10px;
}

.related-products__arrow--next {
  right: 10px;
}

.about-page {
  background: var(--white);
}

.about-intro {
  padding: 190px 20px 88px;
  color: var(--white);
  background: linear-gradient(118deg, #0757f5 0%, #1469f3 58%, #59c9f8 100%);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(320px, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 7vw, 92px);
  max-width: 1050px;
  margin: 0 auto 72px;
}

.about-logo {
  justify-self: end;
  width: min(100%, 360px);
  filter: drop-shadow(0 22px 30px rgba(0, 44, 122, 0.2));
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 500;
  line-height: 1.28;
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(160px, 250px) minmax(280px, 620px);
  align-items: center;
  gap: clamp(26px, 5vw, 68px);
  max-width: 970px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  color: var(--blue);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 43, 126, 0.18);
}

.timeline-card span {
  display: block;
  color: var(--sky);
  font-size: clamp(1.3rem, 2vw, 2.3rem);
  font-weight: 900;
  line-height: 0.95;
}

.timeline-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(4.4rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.78;
}

.timeline-card p {
  margin: 0;
  color: #646464;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.22;
}

.about-people {
  padding: 0 20px;
  background: linear-gradient(180deg, #f2f8fb 0%, #ffffff 64%);
}

.about-people img {
  width: min(100%, 1040px);
  max-height: 470px;
  margin: -42px auto 0;
  border-radius: 0 0 8px 8px;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 24px 52px rgba(30, 80, 128, 0.16);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 90px 20px 70px;
}

.mission-vision article {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  background: #f4f9fc;
  box-shadow: 0 20px 48px rgba(38, 76, 118, 0.1);
}

.mission-vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision article > div {
  display: grid;
  align-content: center;
  padding: 30px;
}

.mission-vision h2,
.values-section h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.mission-vision p {
  margin: 0;
  color: #656565;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.values-section {
  padding: 74px 20px 100px;
  background: var(--white);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 34px auto 0;
}

.value-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 26px 14px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  background: #f2f8fb;
  border-radius: 8px;
}

.value-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--sky);
  border-radius: 999px;
  font-size: 25px;
  line-height: 1;
}

.about-page {
  background: var(--white);
}

.about-page .about-intro {
  box-sizing: border-box;
  min-height: 690px;
  padding: 230px 20px 86px;
  color: #5f5f5f;
  background: var(--white) url("assets/images/Conocenos/Bg-hero.png") center top / cover no-repeat;
}

.about-page .about-intro__inner {
  grid-template-columns: minmax(280px, 380px) minmax(330px, 410px);
  gap: clamp(56px, 8vw, 96px);
  max-width: 900px;
  margin-bottom: 62px;
}

.about-page .about-logo {
  width: min(100%, 390px);
  filter: none;
}

.about-page .about-copy p {
  color: #5f5f5f;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  font-weight: 500;
  line-height: 1.2;
}

.about-page .timeline-card {
  grid-template-columns: minmax(220px, 300px) minmax(300px, 520px);
  gap: 32px;
  max-width: 825px;
  padding: 16px 46px;
  color: var(--blue);
  background: var(--white);
  border: 3px solid var(--blue);
  border-left-color: var(--sky);
  border-radius: 24px;
  box-shadow: none;
}

.about-page .timeline-card span {
  color: var(--sky);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

.about-page .timeline-card strong {
  margin: 0;
  font-size: clamp(5.1rem, 8vw, 7.6rem);
  line-height: 0.8;
  text-align: center;
}

.about-page .timeline-card p {
  color: #5f5f5f;
  font-size: clamp(0.96rem, 1.3vw, 1.25rem);
  line-height: 1.16;
}

.about-page .about-people {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0757f5 url("assets/images/Conocenos/Bg about-people-band.png") center / cover no-repeat;
}

.about-page .about-people::before,
.about-page .about-people::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 122vw;
  height: 260px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.about-page .about-people::before {
  top: -178px;
}

.about-page .about-people::after {
  z-index: 3;
  bottom: -188px;
}

.about-page .about-people__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 690px;
  padding: 118px 20px 0;
}

.about-page .about-people img {
  width: 100%;
  max-width: 680px;
  max-height: none;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
  transform: translate3d(0, var(--people-parallax, 0px), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.about-page .mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 690px;
  padding: 58px 20px 0;
}

.about-page .mission-vision article {
  grid-template-columns: minmax(180px, 280px) 1fr;
  min-height: 210px;
  background: var(--blue);
  border-radius: 0 26px 26px 0;
  box-shadow: none;
  overflow: hidden;
}

.about-page .mission-vision img {
  height: 100%;
  object-position: center;
  border-radius: 18px 0 0 18px;
}

.about-page .mission-vision article > div {
  display: grid;
  align-content: center;
  padding: 30px 38px;
}

.about-page .mission-vision h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.about-page .mission-vision p {
  color: var(--white);
  font-size: clamp(1rem, 1.34vw, 1.3rem);
  line-height: 1.13;
}

.about-page .values-section {
  padding: 64px 20px 112px;
  background: var(--white);
}

.about-page .values-section h2 {
  display: inline-block;
  margin-bottom: 34px;
  color: transparent !important;
  background: linear-gradient(90deg, #0757f5 0%, #0757f5 46%, #0f6df0 62%, #35b5da 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.82;
}

.about-page .values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
}

.about-page .value-card {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 122px;
  min-height: 122px;
  padding: 14px 10px;
  color: var(--white);
  background: #70a23a;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.05;
}

.about-page .value-card span {
  width: 54px;
  height: 54px;
  color: var(--white);
  background: transparent;
}

.about-page .value-card img,
.about-page .value-card svg {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .pill-link,
  .cta,
  .product-farmer,
  .reveal-on-scroll {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .product-farmer {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 16px;
  }

  .admin-bar .site-header {
    top: 48px;
  }

  .site-header__inner {
    grid-template-columns: 180px 1fr 42px;
    gap: 16px;
  }

  .site-logo img {
    width: 165px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 28px;
    background: rgba(255, 139, 17, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    width: min(100%, 320px);
    gap: 12px;
    padding: 28px;
    border-radius: 24px;
  }

  .site-nav a {
    justify-content: center;
    min-height: 44px;
    font-size: 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 25;
    display: inline-grid;
    justify-self: end;
  }

  .site-search {
    display: none;
  }

  .home-hero {
    padding-top: 120px;
  }

  .home-hero__inner,
  .home-about__inner,
  .home-about__timeline,
  .products-feature,
  .marangatu__inner,
  .site-footer__main,
  .page-hero__inner,
  .products-page-hero__inner,
  .about-intro__inner,
  .timeline-card,
  .blue-cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero-product,
  .hero-stage,
  .marangatu-art,
  .page-hero__image,
  .products-page-hero__image,
  .about-logo,
  .blue-cta-band__inner img {
    justify-self: center;
  }

  .hero-copy,
  .home-about__copy,
  .home-about__timeline,
  .products-copy,
  .marangatu-copy,
  .page-hero__copy,
  .products-page-hero__copy,
  .about-copy,
  .timeline-card,
  .blue-cta-band__inner {
    text-align: center;
  }

  .products-heading {
    text-align: center;
  }

  .products-feature {
    margin-top: 0;
  }

  .home-about__intro {
    padding-top: 90px;
  }

  .home-about__inner {
    margin-bottom: 46px;
  }

  .home-about__timeline {
    padding: 28px;
  }

  .home-about__people img {
    min-height: 360px;
  }

  .page-hero,
  .products-page-hero,
  .about-intro {
    padding-top: 138px;
  }

  .catalog-grid,
  .catalog-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 34px;
  }

  .mission-vision,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    grid-template-columns: 1fr 48px;
  }

  .site-logo img {
    width: 150px;
  }

  .site-header--dark .site-nav {
    background: rgba(242, 248, 252, 0.98);
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 118px;
  }

  .home-hero__inner {
    gap: 8px;
  }

  .hero-copy {
    order: -1;
  }

  .hero-eyebrow {
    letter-spacing: 5px;
  }

  .hero-dots {
    bottom: 58px;
  }

  .section {
    padding: 56px 18px;
  }

  .section-lead,
  .products-copy p {
    font-size: 16px;
  }

  .home-about__intro {
    padding: 62px 18px 38px;
  }

  .home-about__inner {
    gap: 26px;
    margin-bottom: 34px;
  }

  .home-about__logo {
    max-width: 285px;
  }

  .home-about__copy p,
  .home-about__timeline p,
  .home-about-card p {
    font-size: 15px;
  }

  .home-about__timeline {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .home-about__year strong {
    font-size: clamp(4.3rem, 18vw, 6rem);
  }

  .home-about__people img {
    min-height: 300px;
    object-position: center top;
  }

  .home-about__cards {
    gap: 18px;
    padding-top: 42px;
  }

  .home-about-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .home-about-card img {
    height: 185px;
  }

  .home-about-card > div {
    padding: 26px 24px;
  }

  .home-values {
    padding: 52px 18px 72px;
  }

  .home-values h2 {
    font-size: clamp(4.1rem, 18vw, 6.2rem);
  }

  .home-values__grid {
    gap: 14px;
  }

  .home-value-card {
    width: 112px;
    min-height: 112px;
  }

  .seed-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 42px auto 58px;
  }

  .seed-card__image {
    height: 112px;
  }

  .products {
    padding-top: 60px;
    padding-bottom: 76px;
  }

  .products-heading {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .marangatu {
    min-height: auto;
    padding-top: 64px;
  }

  .brands {
    padding: 52px 18px 58px;
  }

  .page-hero,
  .products-page-hero,
  .about-intro {
    padding: 120px 18px 62px;
  }

  .page-hero__inner,
  .products-page-hero__inner,
  .about-intro__inner {
    gap: 28px;
  }

  .page-hero__copy h1,
  .products-page-hero__copy h1,
  .products-page-hero__stage h1 {
    font-size: clamp(3.2rem, 16vw, 5.8rem);
  }

  .page-hero__copy p,
  .products-page-hero__copy p,
  .about-copy p {
    font-size: 16px;
  }

  .catalog-section,
  .catalog-section--products {
    padding: 56px 18px 72px;
  }

  .catalog-grid,
  .catalog-grid--products {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .catalog-card__media,
  .catalog-card--product .catalog-card__media {
    min-height: 210px;
  }

  .catalog-card__media img,
  .catalog-card--product .catalog-card__media img {
    max-height: 210px;
  }

  .products-page-hero__stage {
    min-height: 320px;
  }

  .products-page-hero__tray {
    left: 55%;
    width: min(78vw, 390px);
  }

  .products-page-hero__tapao {
    left: 52%;
    width: min(66vw, 320px);
  }

  .products-page-hero__tormenta {
    left: 31%;
    width: min(34vw, 160px);
  }

  .products-page-hero__conector {
    left: 22%;
    width: min(26vw, 120px);
  }

  .blue-cta-band {
    padding: 56px 18px;
  }

  .blue-cta-band__inner img {
    max-height: 240px;
  }

  .about-intro__inner {
    margin-bottom: 44px;
  }

  .timeline-card {
    padding: 28px 20px;
  }

  .about-people img {
    margin-top: -22px;
    max-height: 360px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 18px 44px;
  }

  .mission-vision article {
    grid-template-columns: 1fr;
  }

  .mission-vision img {
    height: 220px;
  }

  .values-section {
    padding: 52px 18px 68px;
  }

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

  .site-footer__main {
    justify-items: center;
    gap: 34px;
    text-align: center;
    padding: 60px 20px;
  }

  .site-footer__logo {
    width: 220px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .site-header--contained .site-header__inner {
    grid-template-columns: 180px 1fr 42px;
    padding: 8px 14px 8px 18px;
  }

  .site-header--contained .site-logo img {
    width: 150px;
  }

  .about-page .about-intro {
    padding-top: 138px;
  }

  .about-page .about-intro__inner,
  .about-page .timeline-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page .about-logo {
    justify-self: center;
  }

  .about-page .mission-vision {
    max-width: 690px;
  }

  .about-page .mission-vision article {
    grid-template-columns: minmax(180px, 280px) 1fr;
    min-height: 210px;
  }

  .about-page .mission-vision article > div {
    padding: 30px 38px;
  }

  .about-page .mission-vision p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }
}

@media (max-width: 700px) {
  .site-header--contained .site-header__inner {
    grid-template-columns: 1fr 48px;
    border-radius: 24px;
  }

  .about-page .about-intro {
    padding: 120px 18px 44px;
  }

  .about-page .about-intro__inner {
    gap: 26px;
    margin-bottom: 34px;
  }

  .about-page .about-logo {
    max-width: 285px;
  }

  .about-page .about-copy p,
  .about-page .timeline-card p,
  .about-page .mission-vision p {
    font-size: 15px;
  }

  .about-page .timeline-card {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .about-page .timeline-card strong {
    font-size: clamp(4.3rem, 18vw, 6rem);
  }

  .about-page .about-people img {
    min-height: 0;
    max-width: 420px;
    object-position: center top;
  }

  .about-page .about-people__inner {
    min-height: 420px;
    padding-top: 72px;
  }

  .about-page .mission-vision {
    gap: 18px;
    padding-top: 42px;
  }

  .about-page .mission-vision article {
    grid-template-columns: 1fr;
    border-radius: 18px;
    overflow: hidden;
  }

  .about-page .mission-vision img {
    height: 185px;
    border-radius: 18px 18px 0 0;
  }

  .about-page .mission-vision article > div {
    padding: 26px 24px;
  }

  .about-page .values-section {
    padding: 52px 18px 72px;
  }

  .about-page .values-section h2 {
    font-size: clamp(4.1rem, 18vw, 6.2rem);
  }

  .about-page .values-grid {
    gap: 14px;
  }

  .about-page .value-card {
    width: 112px;
    min-height: 112px;
  }
}

@media (max-width: 980px) {
  .contact-hero {
    min-height: 620px;
    padding: 150px 18px 92px;
  }

  .contact-hero__inner {
    padding-left: min(38vw, 300px);
  }

  .contact-hero h1 {
    font-size: clamp(3.7rem, 9vw, 6.5rem);
  }

  .contact-hero h1 small {
    font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  }

  .contact-form-section {
    padding: 60px 18px 84px;
  }

  .product-detail-hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .product-detail-hero__media {
    min-height: 520px;
  }

  .product-detail-hero__brand img {
    object-position: center;
  }

  .product-detail-hero__description {
    margin-right: auto;
    margin-left: auto;
  }

  .product-benefits {
    width: min(100%, 640px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 0;
  }

  .related-products__carousel {
    padding-inline: 54px;
  }
}

@media (max-width: 700px) {
  .contact-hero {
    min-height: 560px;
    padding: 135px 18px 76px;
  }

  .contact-hero__bg {
    object-position: 38% center;
  }

  .contact-hero__inner {
    padding-left: 0;
    text-align: right;
  }

  .contact-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .contact-hero h1 small {
    padding: 7px 14px 8px;
    font-size: clamp(1.05rem, 5.2vw, 1.8rem);
    white-space: normal;
  }

  .contact-form-section__inner {
    width: min(100%, 390px);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-detail-hero {
    padding: 135px 18px 96px;
  }

  .product-detail-hero__media {
    min-height: 430px;
  }

  .product-detail-hero__pack {
    max-width: 280px;
  }

  .product-detail-hero__crop {
    bottom: -82px;
    max-width: 190px;
  }

  .product-benefits {
    grid-template-columns: 1fr;
    width: min(100%, 260px);
    gap: 18px;
  }

  .related-products__carousel {
    gap: 22px;
    padding-inline: 38px;
  }

  .related-products__arrow {
    width: 36px;
    height: 36px;
  }

  .related-products__arrow--prev {
    left: 0;
  }

  .related-products__arrow--next {
    right: 0;
  }

  .related-product-card {
    flex-basis: 140px;
  }
}
