:root {
  --blue: #103eaf;
  --blue-dark: #082b86;
  --lime: #9bd21f;
  --green: #83c817;
  --paper: #f3efe6;
  --ink: #243047;
  --muted: #6d7480;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(14, 32, 79, .18);
}

@property --float-y {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --float-rotate {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(19px, .42vw + 17px, 23px);
  background: var(--paper);
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.float-deco {
  position: absolute;
  z-index: 0;
  --fall-y: -90px;
  --parallax-y: 0px;
  --float-y: 0px;
  --float-rotate: 0deg;
  --deco-opacity: 1;
  opacity: 0;
  transform: translate3d(0, calc(var(--fall-y) + var(--parallax-y) + var(--float-y)), 0) rotate(var(--float-rotate));
  transition: transform .85s cubic-bezier(.17, .84, .26, 1), opacity .55s ease;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.float-deco.deco-visible {
  --fall-y: 0px;
  opacity: var(--deco-opacity);
}
.text-azul {
	color: var(--blue);
}
.container,
.hero-slider,
.stats-band .container,
.paper-section .container,
.green-section .container,
.blue-section .container,
.contact-section .container,
.faq-section .container,
.site-footer .container {
  position: relative;
  z-index: 1;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 62, 175, .98), rgba(8, 43, 134, .98)),
    var(--blue);
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  z-index: 2;
  width: min(390px, 78vw);
  display: grid;
  justify-items: center;
  gap: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-mark img {
  width: min(220px, 58vw);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .28));
}

.loader-caption {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-size: .84rem;
  letter-spacing: .08em;
}

.loader-progress {
  width: 100%;
  max-width: 360px;
  height: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .18);
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), #f1d15a);
  border-radius: inherit;
  transform-origin: left center;
  animation: loaderBar 1.35s ease-in-out forwards;
}

.falling-totopo {
  position: absolute;
  left: 50%;
  top: -180px;
  z-index: 1;
  width: min(145px, 34vw);
  height: auto;
  opacity: .96;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .22));
  animation: totopoFall 1.35s cubic-bezier(.2, .82, .18, 1) forwards;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes totopoFall {
  0% {
    opacity: 0;
    transform: translate(-50%, -40px) rotate(-28deg) scale(.82);
  }

  18% {
    opacity: 1;
  }

  72% {
    transform: translate(-50%, calc(100vh - 220px)) rotate(18deg) scale(1);
  }

  100% {
    transform: translate(-50%, calc(100vh - 132px)) rotate(0deg) scale(.96);
  }
}

.section-pad {
  padding: 82px 0;
}

.section-pad-sm {
  padding: 42px 0;
}

.main-nav {
  padding: 1vh 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  transition: box-shadow .25s ease, min-height .25s ease;
  z-index: 1040;
}

.main-nav.scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.main-nav > .container {
  max-width: 1140px;
  min-height: 112px;
  padding: 18px 0;
}

.navbar-toggler {
  width: 48px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: transparent;
  border-radius: 8px;
}

.navbar-toggler-icon {
  position: relative;
  width: 32px;
  height: 24px;
  background-image: linear-gradient(var(--white), var(--white));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 3px;
  filter: none;
  transition: background-size .2s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--white);
  transition: top .24s ease, bottom .24s ease, transform .24s ease;
}

.navbar-toggler-icon::before {
  top: 2px;
}

.navbar-toggler-icon::after {
  bottom: 2px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-size: 0 3px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.brand-mark {
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.brand-mark:hover,
.brand-mark:focus {
  color: var(--white);
}

.brand-logo {
  display: block;
  width: min(250px, 52vw);
  height: auto;
}

.nav-link {
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  margin-left: .75rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--lime);
}

.whatsapp-float {
  position: fixed;
  right: max(22px, calc((100vw - 1140px) / 2 - 22px));
  top: 21vh;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 8px;
      padding: 4px 2px 4px 24px;
  color: #16864d;
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -14px -10px -14px 0;
  color: var(--white);
  background: #24d366;
  border-radius: 50%;
  font-size: 2.45rem;
  box-shadow: 0 10px 20px rgba(22, 134, 77, .32);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(15, 36, 85, .28);
}

.wood-section {
  position: relative;
  overflow: visible;
  background: url("../images/bg_madera_superior.jpg") center top / cover repeat-y;
}

.hero-section {
  position: relative;
  overflow: visible;
  padding: 208px 16px 0;
}

.deco-top-left {
  left: -4px;
  top: -22px;
  width: clamp(118px, 13vw, 182px);
}

.hero-slider {
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(14, 32, 79, .14);
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  pointer-events: none;
}

.btn {
  font-size: 1.24rem;
  font-weight: 900;
}

.btn-pill {
  border-radius: 999px;
  padding: 13px 38px;
}

.btn-lime {
  color: var(--white);
  background: linear-gradient(180deg, var(--lime) 0%, #5f9f08 100%);
  border-color: #6dad0c;
  box-shadow: 0 12px 24px rgba(106, 157, 0, .25);
}

.btn-lime:hover,
.btn-lime:focus {
  color: var(--white);
  background: linear-gradient(180deg, #a9dd28 0%, #4f8705 100%);
  border-color: #5f9f08;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: var(--blue-dark);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(180deg, #174cc5 0%, #06246f 100%);
  border-color: var(--blue-dark);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: .75;
}

.swiper-pagination-bullet-active {
  background: var(--lime);
}

.placeholder-bg,
.image-placeholder,
.client-img {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(0, 0, 0, .12)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .16) 0 12px, rgba(255, 255, 255, .05) 12px 24px),
    linear-gradient(135deg, #b98a30, #e7c96a 45%, #7f5c1b);
}

.placeholder-factory {
  background-color: #9a7a49;
}

.placeholder-product {
  background-color: #cda13c;
}

.placeholder-snacks {
  background-color: #b56821;
}

.stats-band {
  position: relative;
  overflow: visible;
  padding: 18px 0 8px;
  z-index: 2;
}

.stats-grid {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(8px, 2vw, 20px) clamp(28px, 5vw, 72px);
  margin: 0 auto;
}

.stat-item {
  min-height: 58px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 6px 10px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  white-space: nowrap;
}

.stat-item:first-child {
  grid-column: 1 / -1;
  min-height: 70px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.stat-item strong {
  display: block;
  font-weight: 950;
  font-size: clamp(1.7rem, 2.55vw, 2.9rem);
  line-height: 1.05;
  white-space: nowrap;
}

.stat-item > span {
  display: block;
  font-weight: 800;
  font-size: clamp(1.22rem, 1.95vw, 1.9rem);
  line-height: 1.1;
  white-space: nowrap;
}

.stat-item:first-child strong,
.stat-item:first-child > span {
  display: inline;
  font-size: clamp(3.85rem, 6.7vw, 6.45rem);
  line-height: .95;
  letter-spacing: 0;
}

.stat-item:first-child strong {
  font-weight: 900;
  text-shadow: .018em 0 0 currentColor;
}

.stat-item:first-child > span {
  font-weight: 400;
  margin-left: .38em;
  text-shadow: none;
}

.stat-item .counter {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

.paper-section {
  position: relative;
}

.deco-paper-blur-right {
      right: 0px;
    top: 390px;
    width: clamp(150px, 12vw, 270px);
    --deco-opacity: 1;
}
.deco-sello {
  right: clamp(18px, 5.6vw, 104px);
  top: clamp(-132px, -7vw, -76px);
  width: clamp(220px, 16vw, 330px);
  --deco-opacity: .34;
}
.product-card {
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  padding: 14px 14px 22px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 42, 70, .13);
  transform-origin: center center;
  transition: transform .26s ease, box-shadow .26s ease, z-index .26s ease;
}

.product-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 12px;
  margin-top: clamp(72px, 7vw, 118px);
  z-index: 3;
  overflow-x: clip;
  overflow-y: visible;
}

.product-track {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 72px 0 84px;
  margin: -52px 0 -50px;
  scroll-padding-inline: 0;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-track .product-card {
  flex: 0 0 calc((100% - (clamp(18px, 2.5vw, 32px) * 2)) / 3);
  scroll-snap-align: center;
  transform-origin: center center;
}

.product-arrow {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #595b60;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
  z-index: 6;
}

.product-arrow:hover,
.product-arrow:focus-visible {
  color: var(--blue);
  transform: scale(1.08);
}

.product-arrow:disabled {
  opacity: .28;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus {
  color: var(--ink);
}

.product-card.is-active {
  z-index: 5;
  transform: translateY(-12px) scale(1.26);
  box-shadow: var(--shadow);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 2 / 1;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #e7c96a;
  border-radius: 6px;
}

.image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 14px 0 0;
  font-size: 1.82rem;
  font-weight: 900;
}

.custom-product-builder {
  max-width: 1040px;
  margin: clamp(58px, 7vw, 96px) auto 0;
  text-align: center;
}

.custom-product-builder h2 {
  margin: 0 0 clamp(32px, 4vw, 46px);
  color: var(--blue);
  font-size: clamp(2.75rem, 4.8vw, 3.95rem);
  font-weight: 950;
}

.builder-group + .builder-group {
  margin-top: clamp(44px, 5vw, 64px);
}

.builder-group h3 {
  margin: 0 0 28px;
  color: #595b60;
  font-size: clamp(2.25rem, 3.7vw, 3.05rem);
  font-weight: 300;
}

.builder-group h3 strong {
  color: var(--blue);
  font-weight: 950;
}

.builder-options {
  grid-column: 2;
  display: flex;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.builder-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 8px;
}

.builder-options::-webkit-scrollbar {
  display: none;
}

.builder-carousel .builder-option {
  flex: 0 0 calc((100% - (clamp(18px, 3vw, 34px) * 4)) / 5);
  scroll-snap-align: center;
}

.builder-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #595b60;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.builder-arrow:hover,
.builder-arrow:focus-visible {
  color: var(--blue);
  transform: scale(1.08);
}

.builder-arrow:disabled {
  opacity: .28;
  pointer-events: none;
}

.builder-option {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 8px 6px;
  color: #595b60;
  font: inherit;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.05;
  background: transparent;
  border: 0;
  border-radius: 10px;
  transition: color .22s ease, transform .22s ease;
}

.builder-option img {
  width: clamp(76px, 8vw, 118px);
  height: 112px;
  object-fit: contain;
  filter: grayscale(1) brightness(.55);
  transition: filter .22s ease, transform .22s ease;
}

.builder-option:hover,
.builder-option:focus-visible,
.builder-option.is-selected {
  color: var(--blue);
  transform: translateY(-4px);
}

.builder-option:hover img,
.builder-option:focus-visible img,
.builder-option.is-selected img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(91%) saturate(2460%) hue-rotate(219deg) brightness(88%) contrast(99%);
  transform: scale(1.06);
}

.builder-option:focus-visible {
  outline: 3px solid rgba(16, 62, 175, .25);
  outline-offset: 5px;
}

.builder-group[data-builder-group="Sazonado"] .builder-option img {
  width: clamp(92px, 8.5vw, 132px);
  height: clamp(92px, 8.5vw, 132px);
  padding: 6px;
  border: 6px solid #595b60;
  border-radius: 50%;
  filter: none;
}

.builder-group[data-builder-group="Sazonado"] .builder-option:hover img,
.builder-group[data-builder-group="Sazonado"] .builder-option:focus-visible img,
.builder-group[data-builder-group="Sazonado"] .builder-option.is-selected img {
  border-color: var(--blue);
  filter: none;
  transform: scale(1.06);
}

.builder-callout {
  margin: clamp(58px, 6vw, 82px) 0 22px;
  color: var(--blue);
  font-size: clamp(2.7rem, 4.5vw, 3.75rem);
  font-weight: 950;
  line-height: 1.05;
}

.why-block {
  max-width: 980px;
  margin-inline: auto;
}

.section-title,
.clients-block h2,
.blue-section h2,
.contact-heading h2,
.faq-section h2,
.site-footer h2 {
  font-size: clamp(2.65rem, 4.7vw, 3.75rem);
  font-weight: 900;
}

.why-block h2 {
  font-size: clamp(2.75rem, 4.85vw, 3.95rem);
  font-weight: 300;
}

.why-block h2 span {
  font-weight: 300;
}

.why-block h2 strong {
  font-weight: 900;
}

.benefit-list {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-bottom: 24px;
}

.benefit-icon {
  flex: 0 0 46px;
  width: 46px;
  height: auto;
}

.benefit-separator {
  position: absolute;
  left: 68px;
  top: 0;
  width: 10px;
  height: 100%;
  object-fit: fill;
}

.benefit h3 {
  margin: 0;
  font-size: 1.72rem;
  font-weight: 900;
}

.benefit p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 1.46rem;
  line-height: 1.28;
}

.why-cta {
  margin-top: 32px;
  text-align: center;
}

.green-section .why-block {
  margin-top: clamp(54px, 7vw, 92px) !important;
}

.green-section .why-block h2 {
  color: var(--white);
}

.green-section .why-block h2 span,
.green-section .why-block h2 strong {
  color: inherit;
}

.green-section .benefit-icon {
  filter: none;
}

.green-section .benefit-separator {
  display: block;
  filter: none;
}

.green-section .benefit h3 {
  color: var(--blue);
}

.green-section .benefit p {
  color: var(--white);
}

.green-section {
  position: relative;
  color: var(--white);
  background: url("../images/bg_verde_elotes.jpg") center top / cover repeat-y;
}

.deco-green-left {
 left: 0;
    top: -18vh;
    width: clamp(150px, 18vw, 275px);
    --deco-opacity: 1;
}

.deco-green-right {
  right: 0;
  top: auto;
  bottom: -72px;
  width: clamp(145px, 17vw, 255px);
  z-index: 2;
  --deco-opacity: 1;
}

.pattern-circle {
  position: absolute;
  border: 28px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.circle-one {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 190px;
}

.circle-two {
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: 140px;
}

.video-preview {
  position: relative;
  width: min(100%, 900px);
  aspect-ratio: 1616 / 834;
  margin: 28px auto 0;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 55px rgba(47, 100, 0, .34);
}

.video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.green-section h2,
.green-section h3 {
  font-weight: 900;
}

.maquila-row {
  max-width: 900px;
  margin-inline: auto;
}

.maquila-copy {
  text-align: center;
}

.maquila-copy h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.1rem);
  font-weight: 400;
}

.maquila-copy h2 strong {
  font-weight: 950;
}

.maquila-copy h2 span {
  font-weight: 400;
}

.green-section p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.28rem;
  line-height: 1.26;
}

.maquila-image {
  width: min(100%, 360px);
  aspect-ratio: 544 / 741;
  margin-left: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 44px rgba(47, 100, 0, .28);
}

.maquila-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-block {
  margin-top: 84px;
}

.clients-block h2 {
  font-weight: 400;
}

.clients-block h2 span {
  font-weight: 300;
}

.clients-block h2 strong {
  font-weight: 900;
}

.clients-slider {
  max-width: 980px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-inline: auto;
  gap: 18px;
  padding: 28px 0 22px;
}

.client-slide {
  flex: 0 0 24%;
  position: relative;
  z-index: 1;
  margin-left: 0;
  transition: transform .26s ease, z-index .26s ease;
}

.client-slide:first-child {
  margin-left: 0;
}

.client-slide:hover {
  z-index: 8;
  transform: translateY(-14px) scale(1.18);
}

.client-slide:focus-within {
  z-index: 1;
  transform: none;
}

.client-slide.visible:hover {
  transform: translateY(-12px) scale(1.1);
}

.client-slide.visible:focus-within {
  transform: translateY(0);
}

.client-card {
  height: clamp(336px, 24vw, 376px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 12px 24px rgba(35, 91, 0, .24);
  transform-origin: center;
  transition: transform .26s ease, box-shadow .26s ease;
}

.client-card:hover {
  box-shadow: 0 24px 44px rgba(35, 91, 0, .32);
}
.client-copy {
  flex: 1 1 auto;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px 16px;
  background-position: center;
  background-size: cover;
}

.client-distribuidores .client-copy {
  background-image: url("../images/fondo_distribuidores.jpg");
}

.client-tiendas .client-copy {
  background-image: url("../images/fondo_tiendas.jpg");
}

.client-restaurantes .client-copy {
  background-image: url("../images/fondo_restaurantes.jpg");
}

.client-emprendedores .client-copy {
  background-image: url("../images/fondo_emprendedores.jpg");
}
.client-img {
  aspect-ratio: 5 / 4;
  display: block;
  overflow: hidden;
  color: var(--white);
  font-weight: 900;
}

.client-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card h3 {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 1.36rem;
  font-weight: 900;
  text-align: center;
}

.client-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.96rem, .82vw, 1.06rem);
  line-height: 1.18;
  text-align: center;
}

.blue-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 30%, rgba(155, 210, 31, .12), transparent 18%),
    linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.deco-blue-churritos {
          left: 0;
    top: 50vh;
    width: clamp(150px, 22vw, 3505px);
}

.deco-blue-totopo {
  right: 0;
  top: 560px;
  width: clamp(125px, 15vw, 220px);
  --deco-opacity: 1;
}

.deco-blue-tostadas {
  right: 7%;
  top: auto;
  bottom: -3vh;
  width: clamp(150px, 16vw, 250px);
  z-index: 1;
}

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

.intro-copy h2 {
  color: var(--lime);
}

.intro-copy p {
  font-size: 1.5rem;
  line-height: 1.32;
}

.product-lines {
  max-width: 880px;
  margin: 34px auto 0;
  text-align: center;
}

.product-lines h3 {
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-lines ul {
  display: inline-block;
  margin: 0;
  padding-left: 20px;
  text-align: left;
  font-size: 1.64rem;
  line-height: 1.4;
}

.product-lines li::marker {
  color: var(--lime);
}

.profit-line,
.closing-copy {
  margin: 42px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 1.98rem;
}

.closing-copy {
  font-size: clamp(2.2rem, 3.75vw, 3rem);
  line-height: 1.05;    
	padding-bottom: 5vh;
}

.profit-line {
  color: var(--lime);
  font-weight: 900;
}

.profit-line strong {
  color: var(--lime);
}

.choice-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 42px auto 0;
  color: var(--white);
}

.choose-label {
  align-self: flex-start;
  margin-top: 34px;
  color: var(--lime);
  font-weight: 900;
  font-size: 1.9rem;
}

.choice-step {
  width: 170px;
  min-height: 174px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1.05;
  opacity: 1;
  transform: translateY(10px) scale(.96);
  animation: choicePulse 3.3s ease-in-out infinite;
}

.choice-step img {
  width: 118px;
  height: auto;
}

.step-two {
  animation-delay: .8s;
}

.step-three {
  animation-delay: 1.6s;
}

.flow-arrow-img {
  width: 70px;
  height: auto;
  opacity: 1;
  animation: arrowPulse 3.3s ease-in-out infinite;
}

.arrow-one {
  animation-delay: .4s;
}

.arrow-two {
  animation-delay: 1.2s;
}

.flow-arrow {
  color: var(--lime);
  font-size: 2rem;
}

@keyframes choicePulse {
  0%,
  22%,
  100% {
    opacity: 1;
    transform: translateY(10px) scale(.96);
  }

  10% {
    opacity: 1;
    transform: translateY(0) scale(1.06);
  }
}

@keyframes arrowPulse {
  0%,
  28%,
  100% {
    opacity: 1;
    transform: translateX(-5px);
  }

  14% {
    opacity: 1;
    transform: translateX(0);
  }
}

.closing-copy span,
.closing-copy strong {
  display: block;
}

.closing-copy span {
  color: var(--white);
  font-weight: 500;
}

.closing-copy strong {
  color: var(--lime);
  font-weight: 900;
}

.contact-section {
  position: relative;
  background: var(--blue-dark);
  color: var(--white);
  padding-top: 3vh;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 50%;
  width: min(100%, 1295px);
  height: 93px;
  transform: translateX(-50%);
  background: url("../images/sombra_separacion.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

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

.contact-heading h2 {
  color: var(--lime);
  font-weight: 950;
  font-size: clamp(2.65rem, 4.55vw, 3.65rem);
}

.quote-form {
  max-width: 720px;
  margin: 34px auto 0;
  padding: clamp(30px, 4.5vw, 52px);
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 22px;
      color: var(--blue);
  text-align: center;
  font-size: 2.35rem;
}

.form-control {
  min-height: 58px;
  padding-inline: 22px;
  font-size: 1.38rem;
  border: 0;
  border-radius: 999px;
  background: #d8d5ca;
  color: var(--ink);
}

.form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(155, 210, 31, .28);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-message {
  min-height: 28px;
  margin-top: 16px;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
}

.form-message.success {
  color: #3e8d12;
}

.form-message.error {
  color: #c43828;
}

.faq-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 43, 134, 0) 70%, rgba(0, 0, 0, .42) 100%),
    var(--blue-dark);
}

.deco-faq-right {
 left: 0px;
    top: 10px;
    width: clamp(190px, 24vw, 340px);
    --deco-opacity: 1;
}

.faq-accordion {
  max-width: 820px;
}

.accordion-item {
  margin-bottom: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.accordion-button {
  padding: 14px 28px;
  color: var(--bs-dark);
  font-size: 1.22rem;
  font-weight: 900;
  border-radius: 999px;
  background: var(--white);
  box-shadow: none;
	  }

.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button,
.accordion-item:first-of-type > .accordion-header .accordion-button.collapsed,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 999px;
}

.accordion-button:not(.collapsed) {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: none;
  border-radius: 999px;
}

.accordion-body {
  color: var(--ink);
  background: var(--white);
  margin: 8px 18px 0;
  padding: 18px 24px 20px;
  font-size: 1.18rem;
  line-height: 1.34;
  border-radius: 12px;
}

.faq-quality-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  margin-top: clamp(84px, 11vw, 150px);
  padding-bottom: clamp(28px, 5vw, 62px);
}

.faq-quality-row p {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 300;
  line-height: 1.04;
}

.faq-quality-row strong {
  color: var(--lime);
  font-weight: 900;
}

.faq-quality-row b {
  color: var(--white);
  font-weight: 950;
}

.faq-quality-row img {
  width: min(100%, 340px);
  justify-self: center;
  height: auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 50px 0 28px;
  background: url("../images/bg_footer.jpg") center top / cover no-repeat;
}

.site-footer h2 {
  color: #5f6570;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  font-weight: 300;
}

.site-footer h2 span {
  font-weight: 300;
}

.site-footer h2 strong {
  font-weight: 900;
}

.footer-heading {
  max-width: 900px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 6px;
  color: var(--blue);
  font-weight: 900;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-dark-text-emphasis);
  font-size: 1.26rem;
}

.footer-phone-icon {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.footer-brand {
  width: max-content;
  color: var(--blue);
  grid-column: 2;
}

.footer-logo {
  display: block;
  width: min(190px, 56vw);
  height: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 32px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}

.social-links img {
  display: block;
  width: 100%;
  height: auto;
}

.social-links a:hover,
.social-links a:focus {
  transform: translateY(-3px);
}

.footer-copy {
  margin: 24px 0 0;
  color: #777;
  font-size: 1.12rem;
  text-align: center;
}

.footer-totopo {
  position: absolute;
  right: 9%;
  bottom: 28px;
  width: min(130px, 22vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.footer-totopo.deco-visible {
  animation: footerTotopoFloat 3.8s ease-in-out infinite;
}

@keyframes footerTotopoFloat {
  0%,
  100% {
    --float-y: 0px;
    --float-rotate: 0deg;
  }

  50% {
    --float-y: -22px;
    --float-rotate: -4deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-totopo.deco-visible {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.clients-slider .client-slide.visible:hover {
  transform: translateY(-14px) scale(1.18);
}

.clients-slider .client-slide.visible:focus-within {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .main-nav {
    padding: 12px;
  }

  .main-nav > .container {
    min-height: 100px;
    padding: 14px 18px;
  }

  .nav-link {
    margin-left: 0;
    padding: .8rem 0;
  }

  .navbar-collapse {
    padding-top: 14px;
  }

  .whatsapp-float {
    top: auto;
    right: 16px;
    bottom: 16px;
  }

  .choice-flow {
    gap: 14px;
  }

  .product-track .product-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .product-track {
    padding-bottom: 72px;
    margin-bottom: 0;
  }

  .clients-slider {
    max-width: 720px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .client-slide {
    flex: 0 0 calc(50% - 12px);
    margin-left: 0;
    transform: none;
  }

  .deco-paper-blur-right,
  .deco-green-right,
  .deco-blue-totopo,
  .deco-blue-tostadas,
  .deco-faq-right {
    --deco-opacity: .45;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 18px;
  }

  .btn {
    font-size: 1.12rem;
  }

  .btn-pill {
    max-width: 100%;
    padding: 12px 28px;
    white-space: normal;
  }

  .section-title,
  .clients-block h2,
  .blue-section h2,
  .contact-heading h2,
  .faq-section h2,
  .site-footer h2,
  .why-block h2,
  .maquila-copy h2 {
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .section-pad {
    padding: 58px 0;
  }

  .stats-band {
    padding: 1vh 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .stat-item {
    min-height: auto;
    padding: 8px 12px;
  }

  .stat-item strong {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .stat-item > span {
    font-size: clamp(1.15rem, 5.2vw, 1.42rem);
  }

  .stat-item:first-child {
    min-height: auto;
    gap: .22em;
  }

  .stat-item:first-child strong,
  .stat-item:first-child > span {
    font-size: clamp(1.42rem, 7vw, 1.88rem);
    line-height: 1;
  }

  .main-nav {
    padding: 0;
  }

  .main-nav > .container {
    position: relative;
    min-height: 260px;
    justify-content: center;
    padding: 26px 18px 28px;
  }

  .main-nav .brand-mark {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    transition: top .28s ease, transform .28s ease;
  }

  .brand-logo {
    width: min(300px, 70vw);
  }

  .navbar-toggler {
    position: absolute;
    left: 24px;
    top: 190px;
    border: 0;
    transform: scale(1.35);
  }

  .navbar-collapse {
    width: 100%;
    padding-top: 232px;
    padding-bottom: 64px;
  }

  .hero-section {
    padding: 260px 0 0;
  }

  .hero-slider {
    max-width: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-slide img {
    width: 100%;
    height: auto;
  }

  .whatsapp-float {
    top: 224px;
    right: 32px;
    bottom: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    width: 70px;
    height: 70px;
    margin: 0;
    font-size: 2.58rem;
  }

  .benefit {
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
  }

  .benefit h3 {
    font-size: 1.25rem;
  }

  .benefit p {
    font-size: 1.08rem;
  }

  .benefit-icon {
    flex-basis: 38px;
    width: 38px;
  }

  .benefit-separator {
    display: none;
  }

  .product-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 4px;
    margin-top: 0;
    overflow-x: visible;
    overflow-y: visible;
  }

  .product-track {
    gap: 32px;
    padding: 42px 16px 104px;
    margin: 0;
    scroll-padding-inline: 16px;
  }

  .product-track .product-card {
    flex-basis: calc(100% - 32px);
    height: 332px;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, box-shadow .26s ease;
  }

  .product-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 18px 30px rgba(14, 32, 79, .16);
  }

  .product-track .product-card:first-child.is-active {
    transform: translateX(12px);
  }

  .product-track .image-placeholder {
    flex: 0 0 176px;
    aspect-ratio: 2 / 1;
  }

  .product-card h3 {
    flex: 1;
    display: grid;
    place-items: center;
    margin: 0;
    font-size: clamp(1.72rem, 7.8vw, 2.28rem);
    line-height: 1.06;
  }

  .product-arrow {
    width: 38px;
    height: 44px;
    font-size: 2.65rem;
  }

  .green-section .benefit-separator {
    display: none;
  }

  .custom-product-builder {
    margin-top: 46px;
  }

  .custom-product-builder h2 {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .builder-group + .builder-group {
    margin-top: 42px;
  }

  .builder-group h3 {
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .builder-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 4px;
  }

  .builder-options {
    gap: 0;
    padding: 4px 0 12px;
    -webkit-overflow-scrolling: touch;
  }

  .builder-carousel .builder-option {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 1.12rem;
    scroll-snap-align: center;
  }

  .builder-arrow {
    width: 38px;
    height: 44px;
    font-size: 2.65rem;
  }

  .builder-option img {
    width: 88px;
    height: 92px;
  }

  .builder-group[data-builder-group="Sazonado"] .builder-option img {
    width: 92px;
    height: 92px;
    border-width: 5px;
  }

  .builder-callout {
    margin-top: 44px;
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .deco-sello {
    right: -7vw;
    top: -67px;
  }

  .maquila-image {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .clients-slider {
    display: grid;
    grid-template-columns: 1fr;
    max-width: min(88vw, 360px);
    gap: 18px;
  }

  .client-slide,
  .client-slide:hover,
  .client-slide:focus-within {
    width: 100%;
    transform: none;
  }

  .client-card {
    height: 330px;
    min-height: 0;
    box-shadow: 0 14px 28px rgba(35, 91, 0, .22);
  }

  .client-copy {
    flex: 0 0 132px;
    min-height: 0;
    justify-content: center;
    padding: 12px 16px 14px;
  }

  .client-img {
    flex: 0 0 198px;
    aspect-ratio: auto;
  }

  .client-card h3 {
    font-size: 1.55rem;
    line-height: 1;
  }

  .client-card p {
    font-size: .98rem;
    line-height: 1.16;
  }

  .choice-flow {
    flex-direction: column;
  }

  .choose-label {
    align-self: center;
    margin-top: 0;
  }

  .choice-step {
    width: 100%;
    min-height: 112px;
    font-size: 1.26rem;
  }

  .flow-arrow-img {
    transform: rotate(90deg);
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 22px;
  }

  .footer-contact {
    justify-items: center;
    gap: 8px;
    order: 1;
  }

  .footer-brand {
    grid-column: auto;
    order: 2;
  }

  .social-links {
    margin-top: 6px;
  }

  .footer-totopo {
   right: -2vw;
        bottom: 22vh;
    width: 78px;
    opacity: .78;
  }

  .deco-top-left,
  .deco-paper-blur-right,
  .deco-green-left,
  .deco-green-right,
  .deco-blue-churritos,
  .deco-blue-totopo,
  .deco-blue-tostadas,
  .deco-faq-right {
    display: none;
  }

  .accordion-item {
    border-radius: 18px;
  }

  .accordion-button {
    border-radius: 18px;
    font-size: 1.08rem;
  }

  .faq-quality-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 58px;
    text-align: center;
  }

  .faq-quality-row p {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .faq-quality-row img {
    width: min(72vw, 260px);
  }
}
