
/* =========================================================
   Aguas Mandiaz de las Vertientes - Landing de inicio
   Código HTML/CSS/JS sin frameworks. Editar assets en /img.
   ========================================================= */

:root {
  --azul-marca: #3e419b;
  --azul-profundo: #233f76;
  --azul-gota: #087bd8;
  --turquesa: #08c5cb;
  --verde: #05d979;
  --verde-hover: #02c96f;
  --gris-texto: #707070;
  --gris-suave: #f4f4f4;
  --negro: #050505;
  --blanco: oklch(100% 0.00011 271.152);
  --sombra-suave: 0 18px 36px rgba(0, 0, 0, 0.14);
  --sombra-card: 0 18px 40px rgba(0, 0, 0, 0.16);
  --radio-img: 34px;
  --radio-card: 18px;
  --container: 1180px;
  --font-main: "Figtree", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--azul-profundo);
  background: #ffffff;
  font-family: var(--font-main);
  overflow-x: hidden;
}

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

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

button, input, textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 62px 0 44px;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--blanco);
  background: var(--azul-marca);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* ===========================
   Barra superior + navegación
   =========================== */

.top-bar {
  min-height: 38px;
  color: var(--blanco);
  background: #010101;
  border-bottom: 2px solid #13bce2;
  overflow: hidden;
}

.top-bar__inner {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar p {
  margin: 0;
  color: var(--blanco);
  font-size: clamp(0.72rem, 1.1vw, 1.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: texto-corriendo 18s linear infinite;
}

@keyframes texto-corriendo {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--blanco);
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.05);
}

.main-nav {
  width: min(100% - 56px, 1780px);
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: clamp(145px, 10.5vw, 190px);
  flex: 0 0 auto;
}

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

.main-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
  color: #777777;
  font-size: clamp(1.02rem, 1.35vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.main-nav__links > a:not(.quote-button) {
  position: relative;
  padding-block: 8px;
}

.main-nav__links > a:not(.quote-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--verde);
  border-radius: 999px;
  transition: width 240ms ease;
}

.main-nav__links > a:not(.quote-button):hover::after,
.main-nav__links > a:not(.quote-button):focus-visible::after {
  width: 100%;
}

.quote-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--blanco);
  background: var(--verde);
  box-shadow: none;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.quote-button {
  min-height: 47px;
  padding: 0 18px;
  gap: 8px;
  font-size: clamp(0.9rem, 1.05vw, 1.18rem);
  font-weight: 900;
  border-radius: 15px;
  white-space: nowrap;
}

.quote-button svg {
  width: 23px;
  fill: currentColor;
}

.quote-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  background: var(--verde-hover);
  box-shadow: 0 10px 24px rgba(5, 217, 121, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 12px;
  background: var(--verde);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--blanco);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

/* ============
   Hero / video
   ============ */

.hero {
  background: #111;
}

.hero__video {
  position: relative;
  width: 100%;
  height: calc(100vh - 106px);
  min-height: 620px;
  overflow: hidden;
  background: #000;
}

.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero__video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.hero__play {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 2;
  width: clamp(74px, 7vw, 120px);
  height: clamp(74px, 7vw, 120px);
  border: 0;
  border-radius: 4px;
  background: rgba(0, 188, 225, 0.72);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 200ms ease, transform 200ms ease;
}

.hero__play span {
  width: 0;
  height: 0;
  margin-inline: auto;
  border-top: clamp(18px, 1.7vw, 30px) solid transparent;
  border-bottom: clamp(18px, 1.7vw, 30px) solid transparent;
  border-left: clamp(28px, 2.6vw, 44px) solid rgba(255, 255, 255, 0.95);
}

.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.hero__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* =======================
   Banner de experiencia
   ======================= */

.years-banner {
  min-height: clamp(110px, 8.9vw, 175px);
  display: grid;
  place-items: center;
  padding: 18px 24px;
  color: var(--blanco);
  text-align: center;
  background-image: linear-gradient(90deg, rgba(0, 112, 126, 0.38), rgba(0, 112, 126, 0.12)), url("img/banners/banner-mas-7-anos.webp?v=20260724-1");
  background-size: cover;
  background-position: center;
}

.years-banner h1 {
  margin: 0;
  color: var(--blanco);
  font-size: clamp(1.55rem, 2.85vw, 3.45rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 5px 8px rgba(0, 0, 0, 0.34);
}

/* =======================
   Atributos / proceso
   ======================= */

.process {
  padding-top: 78px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 62px;
  align-items: start;
}

.process-card {
  text-align: center;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1.43 / 1;
  object-fit: cover;
  border-radius: var(--radio-img);
  box-shadow: var(--sombra-suave);
}

.process-card--wide {
  grid-column: span 2;
}

.process-card--wide img {
  aspect-ratio: 2.15 / 1;
}

.process-card p {
  max-width: 440px;
  margin: 20px auto 0;
  color: var(--azul-profundo);
  font-size: clamp(0.93rem, 1.35vw, 1.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.process-card--wide p {
  max-width: 730px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.primary-button {
  min-width: auto;
  min-height: 54px;
  padding: 0 42px;
  border-radius: 18px;
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.primary-button--large {
  min-width: min(100%, 575px);
  min-height: 62px;
}

/* =================
   Títulos de sección
   ================= */

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--azul-marca);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.title-divider {
  width: min(100%, 470px);
  margin: clamp(14px, 1.7vw, 25px) auto 0;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 20px;
}

.title-divider span {
  height: 3px;
  background: #4340ff;
  border-radius: 999px;
}

.title-divider i {
  width: 18px;
  height: 28px;
  margin-inline: auto;
  background: var(--azul-gota);
  border-radius: 70% 30% 70% 30% / 70% 70% 30% 30%;
  transform: rotate(45deg);
}

/* =========
   Productos
   ========= */

.products {
  padding-top: 26px;
}

.products__viewport {
  width: min(100% - 48px, 1500px);
  margin: 70px auto 0;
  padding: 0 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(62, 65, 155, 0.28) transparent;
}

.products__rail {
  width: max-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-inline: 0;
}

.product-card {
  flex: 0 0 calc((min(100vw - 48px, 1500px) - 72px) / 4);
  max-width: 357px;
  overflow: hidden;
  background: var(--blanco);
  border-radius: var(--radio-card);
  box-shadow: var(--sombra-card);
}

.product-card__image {
  min-height: clamp(250px, 18vw, 340px);
  display: grid;
  place-items: center;
  padding: 18px 18px 0;
  background: var(--blanco);
}

.product-card__image img {
  width: 100%;
  height: clamp(220px, 17vw, 318px);
  object-fit: contain;
}

.product-card__content {
  padding: 18px 22px 20px;
  background: rgba(242, 242, 242, 0.94);
}

.product-card h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.1rem, 1.25vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  min-height: 32px;
  margin: 7px 0 18px;
  color: #222222;
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-card a {
  display: inline-flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  background: var(--verde);
  border-radius: 9px;
  font-size: clamp(1rem, 1.4vw, 1.52rem);
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 220ms ease, transform 220ms ease;
}

.product-card a:hover {
  background: var(--verde-hover);
  transform: translateY(-2px);
}

.secondary-button {
  min-width: min(100%, 420px);
  min-height: 58px;
  padding: 0 34px;
  border-radius: 12px;
  background: var(--turquesa);
  font-size: clamp(1.25rem, 1.75vw, 1.92rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.secondary-button:hover {
  background: #05b2b8;
  box-shadow: 0 10px 24px rgba(8, 197, 203, 0.28);
}

/* =========
   Servicios
   ========= */

.services {
  padding-top: 8px;
  padding-bottom: 126px;
}

.services__grid {
  width: min(100% - 56px, 1100px);
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
}

.service-card {
  padding: 46px 46px 38px;
  background: var(--blanco);
  border-radius: 30px;
  box-shadow: var(--sombra-card);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.service-card__content {
  padding-top: 34px;
}

.service-card h3 {
  margin: 0;
  color: #020202;
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-card p {
  margin: 12px 0 4px;
  color: #151515;
  font-size: clamp(1.02rem, 1.45vw, 1.55rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card a,
.about__text a {
  color: #1725ff;
  font-size: clamp(1rem, 1.45vw, 1.65rem);
  font-style: italic;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
}

/* ======================
   Banner calidad
   ====================== */

.quality-banner {
  min-height: clamp(300px, 20vw, 412px);
  display: flex;
  align-items: center;
  color: var(--blanco);
  background-image: linear-gradient(90deg, rgba(0, 51, 46, 0.18), rgba(0, 51, 46, 0.08)), url("img/banners/banner-calidad-garantizada.webp?v=20260724-1");
  background-size: cover;
  background-position: center;
}

.quality-banner__content {
  padding-block: 50px;
}

.quality-banner h2 {
  max-width: 770px;
  margin: 0;
  color: var(--blanco);
  font-size: clamp(2.15rem, 4.1vw, 4.95rem);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.38);
}

.quality-banner strong {
  display: inline-block;
  font-size: 1.32em;
  line-height: 0.95;
}

.quality-banner p {
  max-width: 965px;
  margin: 28px 0 0;
  color: var(--blanco);
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* ===============
   Sobre nosotros
   =============== */

.about {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8.5vw, 144px) 0 clamp(92px, 8vw, 150px);
  background: var(--blanco);
}

.about__wave {
 display: none;
}

.about__wave::before,
.about__wave::after {
  content: "";
  position: absolute;
  inset: 28px 20px auto auto;
  width: 100%;
  height: 80px;
  border-top: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transform: rotate(9deg);
}

.about__wave::after {
  top: 58px;
  opacity: 0.8;
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 6vw, 110px);
}

.about__image img {
  width: min(100%, 780px);
  height: auto;
  margin-inline: auto;
}

.about__text {
  max-width: 500px;
}

.about__text h2 {
  margin: 0 0 26px;
  color: var(--azul-marca);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.about__text p {
  margin: 0 0 22px;
  color: #8cbcdf;
  font-size: clamp(1.1rem, 1.55vw, 1.72rem);
  font-weight: 300;
  line-height: 1.17;
}

.about__text a {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

/* ======================
   Banner respuesta rápida
   ====================== */

.quick-banner {
  min-height: clamp(115px, 9vw, 174px);
  display: flex;
  align-items: center;
  color: var(--blanco);
  background-image: linear-gradient(90deg, rgba(0, 41, 98, 0.18), rgba(0, 140, 110, 0.18)), url("img/banners/respuesta-web.webp?v=20260724-1");
  background-size: cover;
  background-position: center;
}

.quick-banner__content {
  width: min(100% - 56px, 1750px);
  margin-inline: auto;
}

.quick-banner h2 {
  margin: 0;
  color: var(--blanco);
  font-size: clamp(2rem, 3.7vw, 4.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-shadow: 0 5px 9px rgba(0, 0, 0, 0.4);
}

.quick-banner strong {
  font-weight: 900;
  text-transform: uppercase;
}

/* ========
   Contacto
   ======== */

.contact {
  position: relative;
  padding: 58px 0 18px;
  background: var(--blanco);
}

.contact__inner {
  display: grid;
  grid-template-columns: 330px minmax(0, 760px);
  align-items: start;
  justify-content: center;
  gap: 48px;
  margin-top: 58px;

}

.contact__inner {
  grid-template-columns: 420px minmax(0, 760px);
  gap: 70px;
}

.contact__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.contact__image img {
  width: 720px;
  max-width: none;
  height: auto;
  transform: translateX(-150px);
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 14px;
}

.contact-form label {
  margin-left: 22px;
  color: #27246e;
  font-size: clamp(0.92rem, 1.08vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 22px;
  color: var(--azul-profundo);
  background: transparent;
  border: 3px solid #5051ff;
  border-radius: 28px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 178px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--turquesa);
  box-shadow: 0 0 0 5px rgba(8, 197, 203, 0.12);
}

.form-button {
  justify-self: center;
  min-width: min(100%, 400px);
  margin-top: 26px;
  font-size: clamp(1.15rem, 1.7vw, 2rem);
  font-weight: 900;
  border-radius: 24px;
}

/* ======
   Footer
   ====== */

.footer-features {
  width: min(100% - 56px, 1100px);
  margin: 80px auto 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.footer-feature img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-feature p {
  margin: 0;
  color: var(--azul-profundo);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;

}
   .footer-final {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.footer-final__content {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-final__wave {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-final__wave--left {
  left: 0;
  width: min(48vw, 720px);
}

.footer-final__wave--right {
  right: 0;
  width: min(32vw, 480px);
}

.footer-final__logo {
  position: relative;
  z-index: 3;
  width: min(44vw, 430px);
  display: block;
}

.footer-final__logo img {
  width: 100%;
  height: auto;
}

.footer-final__whatsapp {
  position: fixed;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(22px, 4vw, 55px);
  z-index: 9999;
  width: clamp(72px, 7vw, 110px);
  display: block;
  transition: transform 220ms ease;
}

.footer-final__whatsapp img {
  width: 100%;
  height: auto;
}

.footer-final__whatsapp:hover {
  transform: scale(1.06);
}

.footer-final__bottom {
  position: relative;
  z-index: 2;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  background: #101f21;
  text-align: center;
}

.footer-final__bottom p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  font-weight: 400;
}
@media (max-width: 768px) {
  .menu-toggle {
    position: relative;
    z-index: 100;
  }
  .main-nav__links {
    left: 18px;
    right: 18px;
    width: auto;

    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;

    padding: 24px 18px;
  }

  .main-nav__links a {
    width: auto;
    min-width: auto;
    justify-self: center;
    text-align: center;
    justify-content: center;
  }

  .main-nav__links > a:not(.quote-button) {
    display: block;
    width: fit-content;
    margin-inline: auto;
    padding: 12px 0;
  }

  .main-nav__links .quote-button {
    width: fit-content;
    min-width: 260px;
    margin: 16px auto 0;
    justify-self: center;
  }
  .footer-final__whatsapp {
    right: 18px;
    bottom: 18px;
    width: 72px;
  }
}

@media (max-width: 480px) {
  .footer-final__whatsapp {
    right: 14px;
    bottom: 14px;
    width: 64px;
  }
}

@media (max-width: 480px) {
  .footer-feature:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}
/* ===========
   Animaciones
   =========== */

.reveal {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 780ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left { transform: translateX(-54px); }
.reveal-right { transform: translateX(54px); }
.reveal-up { transform: translateY(52px); }
.reveal-down { transform: translateY(-52px); }
.reveal-zoom { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ==========
   Responsive
   ========== */

@media (max-width: 1024px) {
  :root {
    --container: 900px;
  }

  .main-nav {
    width: min(100% - 36px, 940px);
    min-height: 82px;
  }

  .main-nav__links {
    gap: 18px;
    font-size: 1rem;
  }

  .quote-button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .brand {
    width: clamp(184px, 14.5vw, 288px);
  }

  .hero__video {
    height: clamp(320px, 38vw, 660px);
    min-height: 0;
  }

  .products__viewport {
    width: 100vw;
    margin: 70px calc(50% - 50vw) 0;
  }

  .products__rail {
    width: max-content;
    margin-inline: 0;
    justify-content: flex-start;
    padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  }

  .product-card {
    flex: 0 0 clamp(244px, 16.2vw, 330px);
    max-width: none;
  }

  .process__grid {
    gap: 24px;
  }

  .services__grid {
    gap: 34px;
  }

  .service-card {
    padding: 30px;
  }

  .about__inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .contact__inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .top-bar__inner {
    width: min(100% - 18px, 720px);
  }

  .top-bar p {
    font-size: 0.72rem;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .main-nav {
    min-height: 74px;
  }

  .brand {
    width: 176px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav__links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav__links a {
    padding: 14px 12px;
  }

  .quote-button {
    margin-top: 10px;
    justify-self: stretch;
  }

  .hero__video {
    height: clamp(300px, 62vw, 440px);
    min-height: 0;
  }

  .years-banner h1 br {
    display: none;
  }

  .process {
    padding-top: 52px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 540px);
  }

  .process-card--wide {
    grid-column: span 1;
  }

  .process-card--wide img,
  .process-card img {
    aspect-ratio: 1.35 / 1;
  }

  .products__viewport {
    width: 100vw;
    margin: 44px calc(50% - 50vw) 0;
  }

  .products__rail {
    width: max-content;
    margin-inline: 0;
    justify-content: flex-start;
    padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  }

  .product-card {
    flex-basis: 272px;
    max-width: none;
  }

  .services {
    padding-bottom: 70px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 540px);
  }

  .quality-banner {
    background-position: 60% center;
  }

  .about {
    padding-top: 98px;
  }

  .about__wave {
    width: 92vw;
    height: 140px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__text {
    max-width: 600px;
    margin-inline: auto;
  }

  .quick-banner__content {
    width: min(100% - 36px, 680px);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 620px);
  }

  .contact__image {
    display: none;
    max-width: 245px;
    margin: 0 auto -20px;
  }

  .footer-features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-bar__icon:last-child {
    display: none;
  }

  .main-nav {
    width: min(100% - 28px, 460px);
  }

  .brand {
    width: 145px;
  }

  .hero__video {
    height: 300px;
    min-height: 0;
  }

  .years-banner {
    min-height: 118px;
  }

  .years-banner h1 {
    font-size: 1.45rem;
  }

  .section-padding {
    padding-block: 46px;
  }

  .centered-action {
    margin-top: 34px;
  }

  .primary-button,
  .primary-button--large,
  .secondary-button {
    min-width: min(100%, 330px);
    min-height: 50px;
    padding-inline: 22px;
    border-radius: 16px;
    font-size: 1.05rem;
  }

  .section-title h2 {
    font-size: 2.45rem;
  }

  .title-divider {
    width: min(100%, 260px);
    gap: 12px;
  }

  .products__rail {
    padding-inline: 18px;
  }

  .product-card {
    flex-basis: 250px;
    max-width: none;
  }

  .product-card__image {
    min-height: 235px;
  }

  .service-card {
    padding: 22px;
    border-radius: 24px;
  }

  .service-card__content {
    padding-top: 22px;
  }

  .quality-banner__content {
    width: min(100% - 32px, 430px);
  }

  .quality-banner h2 {
    font-size: 2rem;
  }

  .quality-banner p {
    font-size: 0.96rem;
  }

  .about {
    padding-bottom: 76px;
  }

  .about__text h2 {
    font-size: 2.45rem;
  }

  .about__text p {
    font-size: 1rem;
  }

  .quick-banner {
    min-height: 128px;
    background-position: 64% center;
  }

  .quick-banner h2 {
    font-size: 1.7rem;
  }

  .contact {
    padding-top: 42px;
  }

  .contact__inner {
    margin-top: 34px;
  }

  .contact-form label {
    margin-left: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    border-width: 2px;
    border-radius: 22px;
  }

  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 28px, 420px);
  }

  .footer-logo {
    width: min(86%, 370px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:root {
  --topbar-height: 38px;
}

/* Top bar siempre visible */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--topbar-height);
}

/* Menú siempre visible debajo de la top bar */
.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 999;
}

/* Estado activo unificado del menú principal */
.main-nav__links > a[aria-current="page"]::after {
  width: 100%;
}

/* ==================================================
   FOOTER UNIFICADO - MISMO DISEÑO QUE INICIO
   ================================================== */
.site-footer {
  background: #ffffff;
}

.footer-features {
  width: min(100% - 56px, 1100px);
  margin: 80px auto 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.footer-feature img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-feature p {
  margin: 0;
  color: var(--azul-profundo);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-final {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.footer-final__content {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-final__wave {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-final__wave--left {
  left: 0;
  width: min(48vw, 720px);
}

.footer-final__wave--right {
  right: 0;
  width: min(32vw, 480px);
}

.footer-final__logo {
  position: relative;
  z-index: 3;
  width: min(44vw, 430px);
  display: block;
}

.footer-final__logo img {
  width: 100%;
  height: auto;
}

.footer-final__whatsapp {
  position: fixed;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(22px, 4vw, 55px);
  z-index: 9999;
  width: clamp(72px, 7vw, 110px);
  display: block;
  transition: transform 220ms ease;
}

.footer-final__whatsapp img {
  width: 100%;
  height: auto;
}

.footer-final__whatsapp:hover {
  transform: scale(1.06);
}

.footer-final__bottom {
  position: relative;
  z-index: 2;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  background: #101f21;
  text-align: center;
}

.footer-final__bottom p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
    width: min(100% - 36px, 620px);
  }

  .footer-final__content {
    min-height: 260px;
  }

  .footer-final__logo {
    width: min(44vw, 430px);
  }

  .footer-final__wave--left {
    width: min(48vw, 720px);
  }

  .footer-final__wave--right {
    width: min(32vw, 480px);
  }

  .footer-final__whatsapp {
    right: clamp(22px, 4vw, 70px);
    bottom: clamp(22px, 4vw, 55px);
    width: clamp(72px, 7vw, 110px);
  }

  .footer-final__bottom {
    min-height: 82px;
    padding: 22px 24px;
  }
}

@media (max-width: 480px) {
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 28px, 420px);
  }

  .footer-feature:last-child {
    grid-column: auto;
    justify-self: center;
  }

  .footer-feature img {
    width: 58px;
    height: 58px;
  }

  .footer-feature p {
    font-size: 0.82rem;
  }

  .footer-final__content {
    min-height: 260px;
  }

  .footer-final__logo {
    width: min(44vw, 430px);
  }

  .footer-final__whatsapp {
    right: clamp(22px, 4vw, 70px);
    bottom: clamp(22px, 4vw, 55px);
    width: clamp(72px, 7vw, 110px);
  }

  .footer-final__bottom p {
    font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  }
}


/* =========================================================
   Formulario de contacto EXACTO según diseño Illustrator
   ========================================================= */
.contact-design {
  width: 100%;
  padding: clamp(54px, 5.6vw, 90px) 0 clamp(58px, 6vw, 105px);
  background: #f4ffff;
}

.contact-design--home {
  margin-top: clamp(40px, 5vw, 72px);
}

.contact-design__card {
  width: min(100% - 120px, 1620px);
  min-height: clamp(620px, 49vw, 935px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 59.5%) minmax(360px, 40.5%);
  overflow: hidden;
  background: #ffffff;
  border-radius: clamp(54px, 6vw, 112px);
}

.contact-design__content {
  padding: clamp(58px, 5.5vw, 105px) clamp(70px, 8vw, 158px) clamp(52px, 5vw, 90px);
}

.contact-design h1,
.contact-design h2 {
  margin: 0 0 clamp(58px, 5vw, 88px);
  color: #1227ff;
  font-size: clamp(4.2rem, 5.45vw, 6.75rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.contact-design__form {
  width: 100%;
  display: grid;
  gap: clamp(28px, 2.2vw, 45px);
}

.contact-design__row--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 4.3vw, 76px);
}

.contact-design__field {
  display: grid;
  gap: 6px;
}

.contact-design__field label {
  color: #5654d9;
  font-size: clamp(1.05rem, 1.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-design__field input {
  width: 100%;
  height: 30px;
  padding: 0 2px 6px;
  color: #1d2a5a;
  background: transparent;
  border: 0;
  border-bottom: 4px solid #dddddd;
  border-radius: 0;
  outline: 0;
}

.contact-design__field textarea {
  width: 100%;
  min-height: clamp(150px, 10vw, 196px);
  padding: 18px 24px;
  color: #1d2a5a;
  background: transparent;
  border: 4px solid #dddddd;
  border-radius: clamp(28px, 2.6vw, 46px);
  outline: 0;
  resize: vertical;
}

.contact-design__field input:focus,
.contact-design__field textarea:focus {
  border-color: #1227ff;
  box-shadow: none;
}

.contact-design__button {
  justify-self: center;
  min-width: min(100%, 385px);
  min-height: clamp(60px, 4.3vw, 72px);
  margin-top: clamp(8px, 1.4vw, 22px);
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #05d76f;
  font-size: clamp(1.45rem, 1.65vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.contact-design__button:hover,
.contact-design__button:focus-visible {
  background: #02c96a;
  transform: translateY(-2px);
}

.contact-design__image {
  min-height: 100%;
  overflow: hidden;
  background: #d9faff;
}

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

@media (max-width: 1180px) {
  .contact-design__card {
    width: min(100% - 56px, 980px);
    grid-template-columns: minmax(0, 58%) minmax(300px, 42%);
    border-radius: 58px;
  }

  .contact-design__content {
    padding: 64px 56px 58px;
  }
}

@media (max-width: 860px) {
  .contact-design {
    padding: 38px 0 60px;
  }

  .contact-design__card {
    width: min(100% - 32px, 640px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 42px;
  }

  .contact-design__content {
    padding: 46px 28px 34px;
  }

  .contact-design h1,
  .contact-design h2 {
    margin-bottom: 36px;
    text-align: center;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .contact-design__form {
    gap: 24px;
  }

  .contact-design__row--two {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-design__field label {
    font-size: 1rem;
  }

  .contact-design__field input {
    height: 28px;
    border-bottom-width: 3px;
  }

  .contact-design__field textarea {
    min-height: 142px;
    border-width: 3px;
    border-radius: 28px;
  }

  .contact-design__button {
    width: min(100%, 330px);
    min-height: 58px;
    font-size: 1.35rem;
  }

  .contact-design__image {
    order: 2;
    width: 100%;
    height: 175px;
    min-height: 175px;
    margin-top: 6px;
    border-radius: 0 0 42px 42px;
  }

  .contact-design__image img {
    height: 100%;
    object-position: center 46%;
  }
}

@media (max-width: 480px) {
  .contact-design__card {
    width: min(100% - 24px, 430px);
    border-radius: 34px;
  }

  .contact-design__content {
    padding: 38px 22px 28px;
  }

  .contact-design h1,
  .contact-design h2 {
    margin-bottom: 30px;
  }

  .contact-design__form {
    gap: 21px;
  }

  .contact-design__field textarea {
    min-height: 130px;
  }

  .contact-design__image {
    height: 150px;
    min-height: 150px;
  }
}


/* =========================================================
   Banner superior de contacto
   ========================================================= */
.contact-banner {
  width: 100%;
  min-height: clamp(170px, 14.4vw, 245px);
  margin-top: clamp(34px, 4vw, 70px);
  overflow: hidden;
  background: linear-gradient(90deg, #0c4b88 0%, #39df90 65%, #e7f9ff 100%);
}

.contact-banner--home {
  margin-top: clamp(42px, 5vw, 76px);
}

.contact-banner__inner {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-banner__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(32px, 4.5vw, 72px);
  color: #ffffff;
  text-shadow: 0 7px 12px rgba(0, 0, 0, 0.45);
}

.contact-banner__copy p {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3.2vw, 4.1rem);
  font-weight: 900;
  line-height: 0.9;
}

.contact-banner__copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.6vw, 5.65rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-banner__bottle {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(46vw, 640px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-50%);
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .contact-banner { margin-top: 36px; }
  .contact-banner--home { margin-top: 44px; }
}

@media (max-width: 768px) {
  .contact-banner {
    margin-top: 24px;
    min-height: 150px;
  }

  .contact-banner__copy { padding-left: 24px; }
  .contact-banner__copy p { font-size: 1.7rem; }
  .contact-banner__copy h2 { font-size: 2.4rem; max-width: 520px; }
  .contact-banner__bottle {
    width: 56vw;
    opacity: 0.46;
  }
}

@media (max-width: 480px) {
  .contact-banner { min-height: 132px; }
  .contact-banner__copy { padding-left: 18px; }
  .contact-banner__copy p { font-size: 1.32rem; }
  .contact-banner__copy h2 { font-size: 1.85rem; line-height: 1.04; }
  .contact-banner__bottle { width: 72vw; opacity: 0.38; }
}


/* =========================================================
   Olas decorativas solicitadas - Inicio / Sobre Nosotros
   ========================================================= */

/* Franja de olas inmediatamente después del menú */
/* La sección Sobre Nosotros recibe las mismas olas arriba */
.about {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding-top: clamp(128px, 14vw, 235px);
}

.about-waves {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: clamp(120px, 16vw, 245px);
  background-image: url("img/decoracion/olas-seccion-nosotros-transparente.webp?v=20260724-1");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.about__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .home-wave-start {
    height: 138px;
  }

  .about {
    padding-top: 140px;
  }

  .about-waves {
    height: 142px;
    background-size: 100% 100%;
  }
}


/* =========================================================
   Olas en Sobre Nosotros del Inicio
   ========================================================= */
.about {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding-top: clamp(130px, 14vw, 235px);
}

.about-waves {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: clamp(120px, 16vw, 245px);
  background-image: url("img/decoracion/olas-seccion-nosotros-transparente.webp?v=20260724-1");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.about__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .about {
    padding-top: 165px;
  }

  .about-waves {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 140px;
  }

  .about-waves {
    height: 142px;
    background-size: 100% 100%;
  }
}

@media (max-width: 480px) {
  .about {
    padding-top: 112px;
  }

  .about-waves {
    height: 112px;
    background-size: 100% 100%;
  }
}


/* =========================================================
   FEEDBACK INICIO - Ajustes de espacio, botones, títulos y fondo
   ========================================================= */

:root {
  --fondo-web: #f5f9ff;
  --font-title: "Figtree", Arial, sans-serif;
}

body,
main,
.process,
.products,
.services,
.about,
.contact-design {
  background: var(--fondo-web) !important;
}

/* 1. Video pegado al menú, sin franja negra entre nav y video */
.site-header {
  margin-bottom: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: var(--fondo-web) !important;
}

.hero__video {
  margin-top: 0 !important;
  background: transparent !important;
  min-height: clamp(520px, calc(100vh - 142px), 780px);
}

.hero__video video {
  display: block;
}

/* 2. Botón cotiza: ancho más ajustado y bordes ovalados */
.primary-button,
.primary-button--large {
  width: auto !important;
  min-width: 0 !important;
  min-height: 58px;
  padding: 0 54px !important;
  border-radius: 999px !important;
  font-weight: 900;
}

.centered-action {
  margin-top: 44px;
}

/* 3 y 4. Títulos con Open Sans ExtraBold 800 */
#productos-titulo,
#servicios-titulo,
#nosotros-titulo,
#contacto-titulo,
.section-title h2,
.about__text h2,
.contact-design h1,
.contact-design h2 {
  font-family: var(--font-title);
  font-weight: 800 !important;
}

/* 3. Productos con más aire y carrusel automático */
.products {
  padding-top: 46px !important;
  padding-bottom: 70px !important;
}

.products .section-title {
  margin-bottom: 34px;
}

.products__viewport {
  width: min(100% - 64px, 1640px) !important;
  margin-top: 56px !important;
  padding: 6px 0 34px !important;
  overflow: hidden !important;
  scrollbar-width: none;
}

.products__viewport::-webkit-scrollbar {
  display: none;
}

.products__rail {
  justify-content: flex-start !important;
  gap: 34px !important;
  margin-inline: 0 !important;
  will-change: transform;
}

.products__rail.products__rail--marquee {
  animation: productos-deslizar 32s linear infinite;
}

.products__viewport:hover .products__rail.products__rail--marquee {
  animation-play-state: paused;
}

@keyframes productos-deslizar {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product-card {
  flex: 0 0 clamp(300px, 22vw, 390px) !important;
  max-width: 390px !important;
}

.product-card__image {
  min-height: clamp(265px, 19vw, 355px) !important;
}

.product-card__content {
  padding: 20px 24px 24px !important;
}

.secondary-button {
  width: auto !important;
  min-width: 0 !important;
  min-height: 56px;
  padding: 0 54px !important;
  border-radius: 999px !important;
}

/* 4. Servicios: cartas más largas y links a página Servicios */
.services {
  padding-top: 46px !important;
  padding-bottom: 132px !important;
}

.services__grid {
  width: min(100% - 72px, 1320px) !important;
  gap: clamp(50px, 5.2vw, 88px) !important;
  margin-top: 64px !important;
}

.service-card {
  min-height: 620px;
  padding: 54px 54px 44px !important;
  border-radius: 34px !important;
}

.service-card img {
  aspect-ratio: 1.42 / 1 !important;
}

.service-card__content {
  padding-top: 40px !important;
}

/* 5. Sobre nosotros: mejor uso de espacio, título Open Sans, texto negro */
.about {
  min-height: 880px;
  padding-top: clamp(125px, 12vw, 210px) !important;
  padding-bottom: clamp(110px, 10vw, 190px) !important;
}

.about__inner {
  width: min(100% - 72px, 1520px) !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  gap: clamp(60px, 6vw, 128px) !important;
}

.about__image img {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
}

.about__text {
  max-width: 650px !important;
}

.about__text h2 {
  font-size: clamp(3.8rem, 5.6vw, 7rem) !important;
  line-height: 0.96 !important;
  margin-bottom: 28px !important;
}

.about__text p {
  color: #000000 !important;
  font-size: clamp(1.15rem, 1.35vw, 1.55rem) !important;
  line-height: 1.22 !important;
  font-weight: 500 !important;
}

.about__text a {
  display: inline-block;
  margin-top: 22px;
}

/* 6. Contacto menos invasivo, con sombra y placeholders */
.contact-design {
  padding: clamp(42px, 4vw, 70px) 0 clamp(52px, 4.8vw, 86px) !important;
}

.contact-design--home {
  margin-top: clamp(28px, 3vw, 50px) !important;
}

.contact-design__card {
  width: min(100% - 110px, 1360px) !important;
  min-height: clamp(470px, 38vw, 690px) !important;
  grid-template-columns: minmax(0, 56%) minmax(330px, 44%) !important;
  border-radius: clamp(34px, 4vw, 68px) !important;
  box-shadow: 0 30px 70px rgba(18, 39, 255, 0.12), 0 18px 42px rgba(0, 0, 0, 0.10) !important;
}

.contact-design__content {
  padding: clamp(42px, 4.2vw, 72px) clamp(48px, 5.2vw, 98px) clamp(40px, 4vw, 68px) !important;
}

.contact-design h1,
.contact-design h2 {
  margin-bottom: clamp(34px, 3.4vw, 58px) !important;
  font-size: clamp(3.1rem, 4.5vw, 5.5rem) !important;
}

.contact-design__form {
  gap: clamp(21px, 1.8vw, 34px) !important;
}

.contact-design__field {
  gap: 0 !important;
}

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

.contact-design__field input,
.contact-design__field textarea {
  font-size: clamp(1rem, 1.1vw, 1.28rem);
}

.contact-design__field input::placeholder,
.contact-design__field textarea::placeholder {
  color: #5654d9;
  opacity: 1;
  text-transform: uppercase;
}

.contact-design__field input {
  height: 46px !important;
  padding: 0 2px 10px !important;
  border-bottom-width: 3px !important;
}

.contact-design__field textarea {
  min-height: clamp(125px, 8vw, 165px) !important;
  padding: 22px 26px !important;
  border-width: 3px !important;
  border-radius: clamp(24px, 2vw, 38px) !important;
}

.contact-design__button {
  min-width: 0 !important;
  width: auto !important;
  min-height: 58px !important;
  padding: 0 42px !important;
  font-size: clamp(1.12rem, 1.25vw, 1.55rem) !important;
}

/* Fondos internos para que todo respire en un mismo tono */
.process__grid,
.products__viewport,
.services__grid,
.about__inner {
  background: transparent !important;
}

/* Responsive */
@media (max-width: 1180px) {
  .service-card {
    min-height: 560px;
    padding: 44px 38px 38px !important;
  }

  .contact-design__card {
    width: min(100% - 56px, 1040px) !important;
  }
}

@media (max-width: 1024px) {
  .about {
    min-height: auto;
  }

  .about__inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    width: min(100% - 44px, 860px) !important;
  }

  .about__text {
    margin-inline: auto;
  }

  .services__grid {
    width: min(100% - 44px, 760px) !important;
    grid-template-columns: 1fr !important;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .products__viewport {
    width: min(100% - 32px, 720px) !important;
  }

  .products__rail.products__rail--marquee {
    animation-duration: 24s;
  }

  .product-card {
    flex-basis: clamp(260px, 72vw, 340px) !important;
  }

  .primary-button,
  .primary-button--large,
  .secondary-button {
    padding: 0 34px !important;
  }

  .contact-design__card {
    width: min(100% - 32px, 640px) !important;
    min-height: 0 !important;
    border-radius: 38px !important;
  }

  .contact-design__content {
    padding: 40px 28px 32px !important;
  }

  .contact-design h1,
  .contact-design h2 {
    font-size: clamp(2.75rem, 11vw, 4.4rem) !important;
  }
}

@media (max-width: 520px) {
  .hero__video {
    min-height: 430px;
  }

  .section-title h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem) !important;
  }

  .about__text h2 {
    font-size: clamp(2.8rem, 14vw, 4.1rem) !important;
  }

  .about__text p {
    font-size: 1rem !important;
  }

  .contact-design__button {
    width: min(100%, 310px) !important;
    padding-inline: 22px !important;
  }
}


/* =========================================================
   FEEDBACK 2 INICIO - Ajustes finos
   ========================================================= */

/* Botón en video */
.hero__video {
  position: relative !important;
}

.hero__scroll-button {
  position: absolute;
  left: 50%;
  bottom: clamp(92px, 9vh, 132px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 32px;
  color: #ffffff;
  background: #05d979;
  border-radius: 999px;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 0 0 7px rgba(5, 217, 121, 0.18), 0 16px 34px rgba(5, 217, 121, 0.38);
  transform: translateX(-50%);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero__scroll-button:hover,
.hero__scroll-button:focus-visible {
  background: #02c96f;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 0 0 9px rgba(5, 217, 121, 0.22), 0 20px 42px rgba(5, 217, 121, 0.45);
}

/* Títulos un poco más grandes */
.section-title h2,
#productos-titulo,
#servicios-titulo {
  font-size: clamp(3.2rem, 5.8vw, 6rem) !important;
}

.about__text h2,
#nosotros-titulo {
  font-size: clamp(4.35rem, 6.2vw, 7.65rem) !important;
}

.contact-design h1,
.contact-design h2,
#contacto-titulo {
  font-size: clamp(3.35rem, 4.8vw, 5.9rem) !important;
}

/* Sobre Nosotros del Inicio: imagen más protagonista y mejor proporción */
.about {
  padding-bottom: clamp(54px, 5vw, 82px) !important;
}

.about__inner {
  width: min(100% - 64px, 1600px) !important;
  grid-template-columns: minmax(0, 1.24fr) minmax(390px, 0.76fr) !important;
  gap: clamp(54px, 5.4vw, 104px) !important;
}

.about__image {
  transform: scale(1.12);
  transform-origin: center left;
}

.about__image img {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

.about__text {
  max-width: 620px !important;
}

/* Distancia entre Sobre Nosotros y banner de respuesta rápida */
.contact-banner--home {
  margin-top: clamp(18px, 2.2vw, 34px) !important;
}

.contact-design--home {
  margin-top: clamp(18px, 2.2vw, 34px) !important;
}

/* Formulario: campos como rectángulos grises suaves */
.contact-design__field input {
  height: 54px !important;
  padding: 0 18px !important;
  color: rgba(22, 38, 80, 0.95) !important;
  background: rgba(128, 128, 128, 0.20) !important;
  border: 0 !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
}

.contact-design__field textarea {
  min-height: clamp(135px, 8vw, 170px) !important;
  padding: 20px 22px !important;
  color: rgba(22, 38, 80, 0.95) !important;
  background: rgba(128, 128, 128, 0.20) !important;
  border: 0 !important;
  border-radius: 22px !important;
  font-weight: 800 !important;
}

.contact-design__field input::placeholder,
.contact-design__field textarea::placeholder {
  color: rgba(62, 65, 155, 0.80) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

.contact-design__field input:focus,
.contact-design__field textarea:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 4px rgba(18, 39, 255, 0.10) !important;
}

/* Footer mismo fondo, iconos y textos más grandes */
.site-footer,
.footer-features,
.footer-final,
.footer-final__content {
  background: #f5f9ff !important;
}

.footer-features {
  width: min(100% - 64px, 1250px) !important;
  margin: 78px auto 58px !important;
  gap: 36px !important;
}

.footer-feature {
  gap: 16px !important;
}

.footer-feature img {
  width: clamp(76px, 5.4vw, 104px) !important;
  height: clamp(76px, 5.4vw, 104px) !important;
}

.footer-feature p {
  font-size: clamp(1rem, 1.05vw, 1.22rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
}

.footer-final__content {
  min-height: 330px !important;
}

.footer-final__logo {
  width: min(52vw, 570px) !important;
}

.footer-final__bottom {
  background: #101f21 !important;
}

/* Mobile */
@media (max-width: 1024px) {
  .about__image {
    transform: scale(1.04);
    transform-origin: center;
  }

  .about__inner {
    grid-template-columns: 1fr !important;
  }

  .hero__scroll-button {
    bottom: clamp(74px, 8vh, 108px);
  }
}

@media (max-width: 768px) {
  .hero__scroll-button {
    min-height: 42px;
    padding: 0 24px;
    font-size: 0.98rem;
    bottom: 78px;
  }

  .section-title h2,
  #productos-titulo,
  #servicios-titulo {
    font-size: clamp(3rem, 12vw, 4.65rem) !important;
  }

  .about__text h2,
  #nosotros-titulo {
    font-size: clamp(3.4rem, 13vw, 5rem) !important;
  }

  .about__image {
    transform: scale(1.02);
  }

  .contact-banner--home {
    margin-top: 22px !important;
  }

  .contact-design--home {
    margin-top: 22px !important;
  }

  .footer-features {
    width: min(100% - 38px, 560px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 46px 34px !important;
    margin-top: 64px !important;
  }

  .footer-feature img {
    width: 82px !important;
    height: 82px !important;
  }

  .footer-feature p {
    font-size: 1.06rem !important;
  }

  .footer-feature:nth-child(5) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: min(100%, 260px);
  }

  .footer-final__content {
    min-height: 300px !important;
  }

  .footer-final__logo {
    width: min(76vw, 410px) !important;
  }
}

@media (max-width: 480px) {
  .hero__scroll-button {
    bottom: 70px;
    min-height: 40px;
    padding: 0 22px;
    font-size: 0.92rem;
  }

  .contact-design__field input {
    height: 50px !important;
  }

  .footer-feature img {
    width: 78px !important;
    height: 78px !important;
  }

  .footer-feature p {
    font-size: 1rem !important;
  }

  .footer-final__logo {
    width: min(82vw, 360px) !important;
  }
}


/* =========================================================
   FIX: reducir distancia entre olas y contenido Sobre Nosotros
   ========================================================= */
.about {
  padding-top: clamp(64px, 6vw, 96px) !important;
}

.about-waves {
  height: clamp(70px, 8vw, 118px) !important;
}

.about__inner {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .about {
    padding-top: 78px !important;
  }

  .about-waves {
    height: 92px !important;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 64px !important;
  }

  .about-waves {
    height: 78px !important;
  }
}

@media (max-width: 480px) {
  .about {
    padding-top: 54px !important;
  }

  .about-waves {
    height: 66px !important;
  }
}


/* =========================================================
   FIX: colores formulario contacto
   ========================================================= */
#contacto-titulo,
.contact-design h1,
.contact-design h2 {
  color: var(--azul-marca) !important;
}

.contact-design__field input,
.contact-design__field textarea {
  background: #f5faff !important;
}

.contact-design__field input::placeholder,
.contact-design__field textarea::placeholder {
  color: rgba(62, 65, 155, 0.80) !important;
  font-weight: 800 !important;
}


/* Ajustes cliente 2026-06-28: botón de inicio más grande y anclaje visible */
#beneficios {
  scroll-margin-top: 110px;
}

.hero__scroll-button {
  min-height: 54px !important;
  padding-inline: 42px !important;
  font-size: clamp(1.08rem, 1.35vw, 1.42rem) !important;
}

.primary-button--large {
  min-height: 74px !important;
  max-width: 560px !important;
  font-size: clamp(1.45rem, 2vw, 2.18rem) !important;
}

@media (max-width: 768px) {
  .hero__scroll-button {
    min-height: 48px !important;
    padding-inline: 30px !important;
    font-size: 1rem !important;
  }

  .primary-button--large {
    min-height: 62px !important;
    width: min(100%, 420px) !important;
    font-size: 1.38rem !important;
  }
}

@media (max-width: 480px) {
  .hero__scroll-button {
    min-height: 46px !important;
    padding-inline: 26px !important;
    font-size: 0.95rem !important;
  }
}


/* =========================================================
   Ajuste cliente: Servicios como carta del Illustrator
   ========================================================= */
.services {
  background: #ffffff !important;
  padding-top: clamp(46px, 4vw, 72px) !important;
  padding-bottom: clamp(92px, 7vw, 136px) !important;
}

.services__grid {
  width: min(100% - 72px, 1368px) !important;
  margin: clamp(52px, 4.1vw, 72px) auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(34px, 2.3vw, 48px) !important;
  align-items: stretch !important;
}

.service-card {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  padding: clamp(18px, 1.35vw, 26px) clamp(18px, 1.35vw, 26px) clamp(28px, 2vw, 42px) !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: clamp(22px, 1.85vw, 34px) !important;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.18) !important;
}

.service-card img {
  width: 100% !important;
  aspect-ratio: 0.965 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

.service-card__content {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: clamp(22px, 1.65vw, 32px) 12px 0 !important;
  text-align: center !important;
}

.service-card h3 {
  margin: 0 !important;
  color: #050505 !important;
  font-size: clamp(1.86rem, 2.18vw, 2.7rem) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.015em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.service-card p {
  min-height: 34px !important;
  margin: clamp(12px, 0.9vw, 18px) 0 clamp(22px, 1.6vw, 32px) !important;
  color: #141414 !important;
  font-size: clamp(1.22rem, 1.45vw, 1.82rem) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
}

.service-card a {
  display: inline-flex !important;
  width: min(100%, 478px) !important;
  min-height: clamp(58px, 3.8vw, 76px) !important;
  margin-top: auto !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: #36c6c7 !important;
  border-radius: 12px !important;
  font-size: clamp(1.45rem, 1.75vw, 2.22rem) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease !important;
}

.service-card a:hover,
.service-card a:focus-visible {
  background: #27bcbc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 26px rgba(54, 198, 199, 0.34) !important;
}

@media (max-width: 1024px) {
  .services__grid {
    width: min(100% - 44px, 720px) !important;
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .service-card h3 {
    white-space: normal !important;
  }
}

@media (max-width: 560px) {
  .services__grid {
    width: min(100% - 30px, 430px) !important;
    margin-top: 40px !important;
  }

  .service-card {
    padding: 14px 14px 24px !important;
    border-radius: 22px !important;
  }

  .service-card__content {
    padding-top: 20px !important;
  }

  .service-card h3 {
    font-size: clamp(1.55rem, 8vw, 2rem) !important;
  }

  .service-card p {
    min-height: 0 !important;
    font-size: clamp(1rem, 5vw, 1.28rem) !important;
  }

  .service-card a {
    min-height: 56px !important;
    font-size: clamp(1.15rem, 6vw, 1.5rem) !important;
  }
}

/* =========================================================
   FIX 2026-06-28: botón Cotiza del bloque de proceso
   Evita que en mobile se estire hasta los bordes de pantalla.
   ========================================================= */
.process .centered-action {
  width: min(100% - 48px, 560px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-inline: 0 !important;
}

.process .centered-action .primary-button--large {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 560px !important;
  min-width: 0 !important;
  min-height: 70px !important;
  padding: 0 44px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .process .centered-action {
    width: min(100% - 56px, 420px) !important;
    margin-top: 38px !important;
  }

  .process .centered-action .primary-button--large {
    min-height: 60px !important;
    padding: 0 28px !important;
    font-size: clamp(1.18rem, 5.1vw, 1.5rem) !important;
  }
}

@media (max-width: 420px) {
  .process .centered-action {
    width: min(100% - 44px, 350px) !important;
  }

  .process .centered-action .primary-button--large {
    min-height: 56px !important;
    padding: 0 22px !important;
    font-size: clamp(1.02rem, 5vw, 1.28rem) !important;
  }
}


/* =========================================================
   AJUSTE FINAL: Olas personalizadas en Nosotros (Inicio)
   ========================================================= */
.about {
  padding-top: 0 !important;
  padding-bottom: clamp(92px, 8vw, 150px) !important;
  background: #f7f7f7 !important;
}

.about-waves.about-waves--custom {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 clamp(34px, 4vw, 64px) 0 !important;
  background: none !important;
  pointer-events: none;
  z-index: 1;
  line-height: 0;
}

.about-waves.about-waves--custom .about-waves__img {
  display: block;
  width: 100%;
  height: auto;
}

.about__wave {
  display: none !important;
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 74px !important;
  }

  .about-waves.about-waves--custom {
    margin-bottom: 28px !important;
  }
}

/* =========================================================
   AJUSTE FINAL: Productos auto-scroll + swipe/drag manual
   ========================================================= */
.products__viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  cursor: grab;
}

.products__viewport.is-dragging {
  cursor: grabbing;
}

.products__rail {
  width: max-content;
}

.products__rail.products__rail--marquee {
  animation: none !important;
}

.product-card {
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .products__viewport {
    width: min(100% - 28px, 1640px) !important;
    padding-bottom: 18px !important;
  }
}


/* =========================================================
   AJUSTE CLIENTE: reducir espacio entre ola y Sobre Nosotros
   ========================================================= */
.about-waves.about-waves--custom {
  margin-bottom: 0 !important;
}

.about__inner {
  margin-top: clamp(-88px, -5.5vw, -42px) !important;
}

@media (max-width: 768px) {
  .about-waves.about-waves--custom {
    margin-bottom: 0 !important;
  }

  .about__inner {
    margin-top: -54px !important;
  }
}

@media (max-width: 480px) {
  .about__inner {
    margin-top: -42px !important;
  }
}

/* Carrusel: mantener movimiento automático, pausa en interacción y swipe/drag manual */
.products__viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  touch-action: pan-x;
  cursor: grab;
}

.products__viewport:hover .products__rail.products__rail--marquee {
  animation-play-state: paused;
}

.products__viewport.is-dragging {
  cursor: grabbing;
}

.products__rail.products__rail--marquee {
  animation: none !important;
}

/* =========================================================
   AJUSTE CLIENTE FINAL: acercar aún más ola a Sobre Nosotros en web
   ========================================================= */
@media (min-width: 769px) {
  .about-waves.about-waves--custom {
    margin-bottom: 0 !important;
  }

  .about__inner {
    margin-top: clamp(-142px, -8.2vw, -88px) !important;
  }
}

/* =========================================================
   AJUSTE CLIENTE FINAL 2: contenido Sobre Nosotros más arriba en desktop
   ========================================================= */
@media (min-width: 1025px) {
  .about-waves.about-waves--custom {
    margin-bottom: 0 !important;
  }

  .about__inner {
    margin-top: clamp(-240px, -14vw, -170px) !important;
  }
}


/* =========================================================
   AJUSTE CLIENTE FINAL 3: subida agresiva del bloque Sobre Nosotros en web
   ========================================================= */
@media (min-width: 1025px) {
  .about {
    padding-top: 0 !important;
  }

  .about-waves.about-waves--custom {
    margin-bottom: 0 !important;
  }

  .about__inner {
    margin-top: clamp(-420px, -23vw, -300px) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about__inner {
    margin-top: clamp(-210px, -18vw, -150px) !important;
  }
}

/* =========================================================
   AJUSTE FINAL: Botón turquesa en Conoce el detalle
   ========================================================= */
.about__text a {
  display: inline-flex !important;
  width: min(100%, 310px) !important;
  min-height: 58px !important;
  margin-top: 26px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 26px !important;
  color: #ffffff !important;
  background: #36c6c7 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 24px rgba(54, 198, 199, 0.22) !important;
  font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease !important;
}

.about__text a:hover,
.about__text a:focus-visible {
  background: #27bcbc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(54, 198, 199, 0.34) !important;
}

@media (max-width: 768px) {
  .about__text a {
    width: min(100%, 300px) !important;
    min-height: 56px !important;
    margin-top: 22px !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE: cerrar agresivamente el espacio antes del banner
   ========================================================= */
@media (min-width: 1025px) {
  .about {
    padding-bottom: 0 !important;
  }

  .contact-banner--home {
    margin-top: -56px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding-bottom: 10px !important;
  }

  .contact-banner--home {
    margin-top: -18px !important;
  }
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 18px !important;
  }

  .contact-banner--home {
    margin-top: 10px !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE: separar un poco el banner
   ========================================================= */
@media (min-width: 1025px) {
  .about {
    padding-bottom: 26px !important;
  }

  .contact-banner--home {
    margin-top: -12px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding-bottom: 24px !important;
  }

  .contact-banner--home {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 24px !important;
  }

  .contact-banner--home {
    margin-top: 16px !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE: productos auto-scroll en desktop y solo swipe en mobile
   ========================================================= */
.products__viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
}

.products__viewport::-webkit-scrollbar {
  display: none;
}

.products__rail {
  width: max-content;
}

.product-card {
  scroll-snap-align: start;
}

@media (min-width: 769px) {
  .products__viewport {
    cursor: grab;
  }

  .products__viewport.is-dragging {
    cursor: grabbing;
  }
}

@media (max-width: 768px) {
  .products__viewport,
  .products__viewport--mobile {
    cursor: auto !important;
  }

  .products__viewport.is-dragging {
    cursor: auto !important;
  }
}

/* =========================================================
   FIX REAL: animación visible de productos desktop + mobile solo swipe
   ========================================================= */
.products__viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: auto !important;
  scroll-snap-type: x proximity !important;
  touch-action: pan-x !important;
}

.products__viewport::-webkit-scrollbar {
  display: none !important;
}

.products__rail {
  width: max-content !important;
  will-change: transform !important;
}

.product-card {
  scroll-snap-align: start !important;
}

@keyframes productos-marquee-visible {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 769px) {
  .products__viewport {
    cursor: grab !important;
  }

  .products__viewport.is-dragging {
    cursor: grabbing !important;
  }

  .products__rail.products__rail--marquee {
    animation: productos-marquee-visible 26s linear infinite !important;
  }

  .products__viewport:hover .products__rail.products__rail--marquee,
  .products__viewport:focus-within .products__rail.products__rail--marquee,
  .products__viewport.is-dragging .products__rail.products__rail--marquee {
    animation-play-state: paused !important;
  }
}

@media (max-width: 768px) {
  .products__viewport,
  .products__viewport--mobile {
    cursor: auto !important;
    width: min(100% - 28px, 1640px) !important;
    padding-bottom: 18px !important;
  }

  .products__rail.products__rail--marquee,
  .products__rail {
    animation: none !important;
    transform: none !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE: bajar un poco el bloque de texto para despegarlo de la ola
   ========================================================= */
@media (min-width: 1025px) {
  .about__text {
    padding-top: clamp(44px, 3.6vw, 74px) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about__text {
    padding-top: clamp(22px, 2.8vw, 42px) !important;
  }
}


/* =========================================================
   AJUSTE FINAL CLIENTE: banners nuevos con texto editable en HTML
   Fondos limpios + referencias replicadas en CSS
   ========================================================= */

/* Banner Calidad Garantizada */
.quality-banner {
  position: relative !important;
  min-height: clamp(340px, 21.875vw, 420px) !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background-image: url("img/banners/calidad-web.webp?v=20260724-1") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.quality-banner__content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(48px, 3.8vw, 72px) clamp(44px, 6vw, 130px) clamp(38px, 3.4vw, 62px) !important;
}

.quality-banner h2 {
  max-width: 1160px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(3.4rem, 4.85vw, 5.75rem) !important;
  font-weight: 950 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.015em !important;
  text-transform: uppercase !important;
  text-shadow: 0 8px 12px rgba(0, 0, 0, 0.36) !important;
}

.quality-banner strong {
  display: block !important;
  margin-top: 6px !important;
  font-size: 1.34em !important;
  line-height: 0.88 !important;
  letter-spacing: 0.01em !important;
}

.quality-banner p {
  max-width: 1080px !important;
  margin: clamp(26px, 2vw, 34px) 0 0 !important;
  color: #ffffff !important;
  font-size: clamp(1.18rem, 1.55vw, 1.9rem) !important;
  font-weight: 400 !important;
  line-height: 1.24 !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.34) !important;
}

.quality-banner p + p {
  margin-top: clamp(22px, 1.8vw, 34px) !important;
}

/* Banner Respuesta Rápida */
.contact-banner {
  position: relative !important;
  min-height: clamp(280px, 21.875vw, 420px) !important;
  margin-top: clamp(28px, 3vw, 54px) !important;
  overflow: hidden !important;
  background-image: url("img/banners/respuesta-web.webp?v=20260724-1") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.contact-banner--home {
  margin-top: clamp(24px, 2.6vw, 48px) !important;
}

.contact-banner__inner {
  min-height: inherit !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}

.contact-banner__copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(72vw, 1160px) !important;
  padding-left: clamp(38px, 2.7vw, 54px) !important;
  padding-right: 24px !important;
  color: #ffffff !important;
  text-shadow: 0 8px 13px rgba(0, 0, 0, 0.48) !important;
}

.contact-banner__copy p {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(3rem, 4.05vw, 5rem) !important;
  font-weight: 950 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
}

.contact-banner__copy h2 {
  margin: 0 !important;
  max-width: none !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 5.35vw, 6.65rem) !important;
  font-weight: 950 !important;
  line-height: 0.9 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.contact-banner__bottle {
  display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .quality-banner {
    min-height: clamp(330px, 38vw, 520px) !important;
  }

  .quality-banner__content {
    padding-left: clamp(36px, 6vw, 72px) !important;
    padding-right: clamp(28px, 5vw, 64px) !important;
  }

  .contact-banner {
    min-height: clamp(250px, 34vw, 390px) !important;
  }

  .contact-banner__copy {
    width: min(78vw, 860px) !important;
    padding-left: clamp(32px, 5vw, 56px) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .quality-banner {
    min-height: clamp(470px, 83.333vw, 720px) !important;
    align-items: flex-end !important;
    background-image: url("img/banners/calidad-mobile.webp?v=20260724-1") !important;
    background-position: center center !important;
  }

  .quality-banner__content {
    padding: 0 clamp(26px, 5vw, 52px) clamp(36px, 7vw, 70px) !important;
  }

  .quality-banner h2 {
    max-width: 100% !important;
    font-size: clamp(2.5rem, 8.6vw, 5.8rem) !important;
    line-height: 0.94 !important;
    letter-spacing: 0.01em !important;
  }

  .quality-banner strong {
    margin-top: 4px !important;
    font-size: 1.35em !important;
    line-height: 0.88 !important;
  }

  .quality-banner p {
    max-width: 100% !important;
    margin-top: clamp(18px, 4vw, 34px) !important;
    font-size: clamp(1rem, 3.15vw, 1.9rem) !important;
    line-height: 1.22 !important;
  }

  .quality-banner p + p {
    margin-top: clamp(18px, 4vw, 32px) !important;
  }

  .contact-banner,
  .contact-banner--home {
    min-height: clamp(310px, 57.407vw, 520px) !important;
    margin-top: 18px !important;
    background-image: url("img/banners/respuesta-mobile.webp?v=20260724-1") !important;
    background-position: center center !important;
  }

  .contact-banner__inner {
    align-items: center !important;
  }

  .contact-banner__copy {
    width: min(82vw, 720px) !important;
    padding-left: clamp(26px, 4vw, 48px) !important;
    padding-right: 20px !important;
  }

  .contact-banner__copy p {
    margin-bottom: 8px !important;
    font-size: clamp(2rem, 6.6vw, 4.3rem) !important;
    line-height: 0.9 !important;
  }

  .contact-banner__copy h2 {
    max-width: 78vw !important;
    font-size: clamp(3rem, 11vw, 7.2rem) !important;
    line-height: 0.9 !important;
    letter-spacing: 0.03em !important;
  }
}

@media (max-width: 480px) {
  .quality-banner {
    min-height: clamp(420px, 98vw, 520px) !important;
  }

  .quality-banner__content {
    padding-inline: 22px !important;
    padding-bottom: 30px !important;
  }

  .quality-banner h2 {
    font-size: clamp(2.1rem, 9.2vw, 3.2rem) !important;
  }

  .quality-banner p {
    font-size: clamp(0.95rem, 4vw, 1.15rem) !important;
  }

  .contact-banner,
  .contact-banner--home {
    min-height: clamp(280px, 76vw, 360px) !important;
  }

  .contact-banner__copy {
    width: 88vw !important;
    padding-left: 22px !important;
  }

  .contact-banner__copy p {
    font-size: clamp(1.75rem, 7.8vw, 2.4rem) !important;
  }

  .contact-banner__copy h2 {
    font-size: clamp(2.5rem, 13vw, 4rem) !important;
    max-width: 86vw !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE: nuevo banner respuesta rápida + desktop en una línea + mobile corregido
   ========================================================= */
.contact-banner {
  background-image: url("img/banners/respuesta-web.webp?v=20260724-1") !important;
  background-position: center center !important;
}

.contact-banner__copy {
  width: min(86vw, 1320px) !important;
  padding-left: clamp(30px, 2.2vw, 44px) !important;
}

.contact-banner__copy p {
  margin: 0 0 6px !important;
  font-size: clamp(2.9rem, 3.8vw, 4.8rem) !important;
  line-height: 0.92 !important;
}

.contact-banner__copy h2 {
  white-space: nowrap !important;
  font-size: clamp(4rem, 5.1vw, 6rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em !important;
}

@media (max-width: 1200px) {
  .contact-banner__copy {
    width: min(92vw, 1200px) !important;
  }

  .contact-banner__copy h2 {
    font-size: clamp(3.4rem, 5vw, 5rem) !important;
  }
}

@media (max-width: 768px) {
  .contact-banner,
  .contact-banner--home {
    background-image: url("img/banners/respuesta-mobile.webp?v=20260724-1") !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: clamp(330px, 78vw, 540px) !important;
  }

  .contact-banner__inner {
    align-items: center !important;
  }

  .contact-banner__copy {
    width: min(92vw, 760px) !important;
    padding-left: 26px !important;
    padding-right: 18px !important;
  }

  .contact-banner__copy p {
    margin-bottom: 10px !important;
    font-size: clamp(1.5rem, 7vw, 3rem) !important;
    line-height: 0.96 !important;
  }

  .contact-banner__copy h2 {
    white-space: normal !important;
    max-width: 72vw !important;
    font-size: clamp(2.5rem, 10.8vw, 5.2rem) !important;
    line-height: 0.92 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 480px) {
  .contact-banner,
  .contact-banner--home {
    min-height: clamp(320px, 92vw, 500px) !important;
  }

  .contact-banner__copy {
    width: 92vw !important;
    padding-left: 20px !important;
    padding-right: 14px !important;
  }

  .contact-banner__copy p {
    font-size: clamp(1.2rem, 7vw, 2rem) !important;
  }

  .contact-banner__copy h2 {
    max-width: 74vw !important;
    font-size: clamp(2.05rem, 11vw, 3.8rem) !important;
    line-height: 0.94 !important;
  }
}

/* =========================================================
   AJUSTE FINAL CLIENTE 2: banner respuesta según referencia
   ========================================================= */
.contact-banner,
.contact-banner--home {
  background-image: url("img/banners/respuesta-web.webp?v=20260724-1") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  min-height: clamp(260px, 21.875vw, 420px) !important;
}

.contact-banner__inner {
  min-height: inherit !important;
  align-items: center !important;
}

.contact-banner__copy {
  width: min(72vw, 1260px) !important;
  padding-left: clamp(34px, 2.1vw, 44px) !important;
  padding-right: 0 !important;
  transform: translateY(-4px) !important;
}

.contact-banner__copy p {
  margin: 0 0 8px !important;
  font-size: clamp(3.35rem, 4.25vw, 5.15rem) !important;
  font-weight: 950 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.025em !important;
  color: #ffffff !important;
  text-shadow: 0 7px 12px rgba(0, 0, 0, 0.48) !important;
}

.contact-banner__copy h2 {
  margin: 0 !important;
  width: max-content !important;
  max-width: none !important;
  white-space: nowrap !important;
  font-size: clamp(5.1rem, 5.85vw, 6.9rem) !important;
  font-weight: 950 !important;
  line-height: 0.86 !important;
  letter-spacing: 0.018em !important;
  color: #ffffff !important;
  text-shadow: 0 8px 13px rgba(0, 0, 0, 0.50) !important;
}

@media (min-width: 769px) and (max-width: 1320px) {
  .contact-banner__copy h2 {
    font-size: clamp(4.2rem, 5.2vw, 5.5rem) !important;
  }
}

@media (max-width: 768px) {
  .contact-banner,
  .contact-banner--home {
    background-image: url("img/banners/respuesta-mobile.webp?v=20260724-1") !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: 1080 / 620 !important;
    margin-top: 18px !important;
  }

  .contact-banner__inner {
    min-height: 100% !important;
    height: 100% !important;
    align-items: flex-start !important;
  }

  .contact-banner__copy {
    width: min(76vw, 780px) !important;
    padding-left: clamp(34px, 5.2vw, 58px) !important;
    padding-top: clamp(70px, 12.2vw, 135px) !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  .contact-banner__copy p {
    margin: 0 0 clamp(8px, 1.3vw, 14px) !important;
    font-size: clamp(1.95rem, 6.9vw, 4.65rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
  }

  .contact-banner__copy h2 {
    width: min(74vw, 760px) !important;
    max-width: min(74vw, 760px) !important;
    white-space: normal !important;
    font-size: clamp(3.05rem, 10.1vw, 6.8rem) !important;
    line-height: 0.88 !important;
    letter-spacing: 0.008em !important;
  }
}

@media (max-width: 480px) {
  .contact-banner,
  .contact-banner--home {
    aspect-ratio: 1080 / 620 !important;
  }

  .contact-banner__copy {
    width: 78vw !important;
    padding-left: 22px !important;
    padding-top: clamp(42px, 12vw, 62px) !important;
  }

  .contact-banner__copy p {
    font-size: clamp(1.25rem, 7vw, 2.05rem) !important;
  }

  .contact-banner__copy h2 {
    width: 75vw !important;
    max-width: 75vw !important;
    font-size: clamp(2.15rem, 10.2vw, 3.25rem) !important;
    line-height: 0.9 !important;
  }
}


/* =========================================================
   AJUSTE FINAL CLIENTE: calidad mobile en dos líneas exactas
   ========================================================= */
.quality-banner__line {
  display: block !important;
}

@media (max-width: 768px) {
  .quality-banner h2 {
    max-width: none !important;
    font-size: clamp(2rem, 6.95vw, 4.25rem) !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
  }

  .quality-banner__line {
    white-space: nowrap !important;
  }

  .quality-banner strong {
    margin-top: 6px !important;
    font-size: 1.42em !important;
    line-height: 0.9 !important;
  }
}

@media (max-width: 480px) {
  .quality-banner h2 {
    font-size: clamp(1.7rem, 8.1vw, 2.45rem) !important;
    line-height: 0.97 !important;
  }

  .quality-banner__line {
    white-space: nowrap !important;
  }

  .quality-banner strong {
    font-size: 1.48em !important;
  }
}


/* =========================================================
   AJUSTE FINAL CLIENTE: mobile banner respuesta con AHORA al ancho de ESCRÍBENOS
   ========================================================= */
.contact-banner__line {
  display: inline;
}

@media (max-width: 768px) {
  .contact-banner__copy h2 {
    max-width: 78vw !important;
    white-space: normal !important;
  }

  .contact-banner__line {
    display: block !important;
  }

  .contact-banner__line--ahora {
    font-size: 1.32em !important;
    line-height: 0.88 !important;
    letter-spacing: 0.01em !important;
  }
}

@media (max-width: 480px) {
  .contact-banner__copy h2 {
    max-width: 80vw !important;
  }

  .contact-banner__line--ahora {
    font-size: 1.36em !important;
  }
}


/* =========================================================
   AJUSTE FINAL CLIENTE: imagen vertical completa en contacto
   ========================================================= */
.contact-design__image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

.contact-design__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  .contact-design__image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 9 / 16 !important;
  }

  .contact-design__image img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}


/* =========================================================
   AJUSTE FINAL CLIENTE: reducir significativamente distancia en footer
   ========================================================= */
.footer-features {
  margin: 52px auto 18px !important;
}

.footer-final__content {
  min-height: 185px !important;
  padding-top: 4px !important;
  padding-bottom: 0 !important;
}

.footer-final__logo {
  width: min(48vw, 500px) !important;
}

@media (max-width: 1024px) {
  .footer-features {
    margin: 42px auto 14px !important;
    gap: 30px 24px !important;
  }

  .footer-final__content {
    min-height: 155px !important;
  }

  .footer-final__logo {
    width: min(72vw, 360px) !important;
  }
}

@media (max-width: 480px) {
  .footer-features {
    margin: 34px auto 10px !important;
    gap: 24px 18px !important;
  }

  .footer-final__content {
    min-height: 122px !important;
  }

  .footer-final__logo {
    width: min(70vw, 300px) !important;
  }
}

/* ===== Ajuste final mobile: logo WhatsApp completo y sin recorte ===== */
.footer-final__whatsapp {
  overflow: visible !important;
}

.footer-final__whatsapp img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .footer-final__whatsapp {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: 16px !important;
    width: 62px !important;
  }
}

@media (max-width: 480px) {
  .footer-final__whatsapp {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: 12px !important;
    width: 58px !important;
  }
}


/* ===== Refuerzo fondo web unificado ===== */
:root {
  --fondo-web-global: #f5f9ff;
}

body,
main,
.process,
.products,
.services,
.about,
.contact-design,
.site-footer,
.footer-features,
.footer-final,
.footer-final__content {
  background: var(--fondo-web-global) !important;
}

/* ===== HOME 2026-07-11: servicios en 3 cartas responsivas, hover sutil y aislado ===== */
.services--home-showcase {
  padding-top: clamp(48px, 5vw, 76px) !important;
  padding-bottom: clamp(76px, 7vw, 112px) !important;
}

.services--home-showcase .services__grid {
  /* Más presencia en pantallas grandes sin llegar a ocupar todo el ancho. */
  width: min(calc(100% - 72px), 1470px) !important;
  margin: clamp(38px, 3.5vw, 56px) auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.2vw, 36px) !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.services--home-showcase .service-card {
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: clamp(12px, 1vw, 16px) clamp(12px, 1vw, 16px) clamp(18px, 1.5vw, 24px) !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: clamp(20px, 1.6vw, 26px) !important;
  box-shadow: 0 16px 34px rgba(16, 48, 63, 0.13) !important;
  transform: translateZ(0) scale(1) !important;
  transform-origin: center !important;
  will-change: transform !important;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease !important;
}

.services--home-showcase .service-card img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: clamp(16px, 1.35vw, 22px) !important;
}

.services--home-showcase .service-card__content {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: clamp(16px, 1.35vw, 22px) 4px 0 !important;
  text-align: center !important;
}

.services--home-showcase .service-card h3 {
  margin: 0 !important;
  color: #050505 !important;
  font-size: clamp(1.12rem, 1.55vw, 1.62rem) !important;
  font-weight: 900 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.services--home-showcase .service-card p {
  min-height: 2.25em !important;
  margin: 8px 0 clamp(14px, 1.3vw, 20px) !important;
  color: #171717 !important;
  font-size: clamp(0.78rem, 1vw, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
}

.services--home-showcase .service-card a {
  display: inline-flex !important;
  width: auto !important;
  min-width: min(100%, 220px) !important;
  min-height: clamp(44px, 3.2vw, 50px) !important;
  margin-top: auto !important;
  padding: 0 clamp(16px, 1.5vw, 24px) !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: #11c1c7 !important;
  border-radius: 12px !important;
  font-size: clamp(0.96rem, 1.22vw, 1.25rem) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease !important;
}

.services--home-showcase .service-card a:hover,
.services--home-showcase .service-card a:focus-visible {
  background: #08b3b9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(17, 193, 199, 0.26) !important;
}

@media (hover: hover) and (pointer: fine) {
  .services--home-showcase .service-card:hover {
    transform: translateY(-4px) scale(1.018) !important;
    box-shadow: 0 22px 44px rgba(16, 48, 63, 0.18) !important;
  }
}

@media (max-width: 1099px) {
  .services--home-showcase .services__grid {
    width: min(calc(100% - 48px), 760px) !important;
    grid-template-columns: repeat(2, minmax(0, 340px)) !important;
  }

  .services--home-showcase .service-card:last-child {
    width: 100% !important;
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }

  .services--home-showcase .service-card h3 {
    white-space: normal !important;
  }
}

@media (max-width: 699px) {
  .services--home-showcase {
    padding-top: 42px !important;
    padding-bottom: 72px !important;
  }

  .services--home-showcase .services__grid {
    width: min(calc(100% - 30px), 430px) !important;
    margin-top: 36px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .services--home-showcase .service-card:last-child {
    grid-column: auto !important;
  }

  .services--home-showcase .service-card {
    padding: 12px 12px 20px !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 28px rgba(16, 48, 63, 0.12) !important;
  }

  .services--home-showcase .service-card img {
    border-radius: 18px !important;
  }

  .services--home-showcase .service-card__content {
    padding-top: 18px !important;
  }

  .services--home-showcase .service-card h3 {
    font-size: clamp(1.32rem, 7vw, 1.72rem) !important;
  }

  .services--home-showcase .service-card p {
    min-height: 0 !important;
    margin-top: 8px !important;
    font-size: clamp(0.9rem, 4.2vw, 1.05rem) !important;
  }

  .services--home-showcase .service-card a {
    width: min(100%, 270px) !important;
    min-height: 50px !important;
    font-size: clamp(1rem, 5vw, 1.25rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services--home-showcase .service-card,
  .services--home-showcase .service-card a {
    transition: none !important;
  }

  .services--home-showcase .service-card:hover,
  .services--home-showcase .service-card a:hover {
    transform: none !important;
  }
}


/* =========================================================
   FIX CONFIRMADO 2026-07-11: eliminar corte/franja blanca en tarjetas de producto mobile
   ========================================================= */
@media (max-width: 768px) {
  .products .product-card {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: rgba(242, 242, 242, 0.94) !important;
  }

  .products .product-card__image {
    flex: 0 0 auto !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .products .product-card__content {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    background: rgba(242, 242, 242, 0.94) !important;
    border-radius: 0 0 18px 18px !important;
  }

  .products .product-card__content a {
    margin-top: auto !important;
  }
}

/* =========================================================
   AJUSTE INICIO FINAL 2026-07-12
   Solo dos cambios aprobados:
   1) Mayor presencia de las tarjetas de servicios en desktop.
   2) Mayor escala del texto del banner de contacto en desktop.
   No afecta otras secciones ni páginas.
   ========================================================= */

/* Servicios: ampliar el conjunto de tarjetas únicamente en pantallas grandes. */
@media (min-width: 1100px) {
  .services--home-showcase .services__grid {
    width: min(calc(100% - 32px), 1760px) !important;
    gap: clamp(24px, 1.8vw, 34px) !important;
  }

  .services--home-showcase .service-card {
    padding: clamp(14px, 1vw, 18px) clamp(14px, 1vw, 18px) clamp(20px, 1.45vw, 26px) !important;
  }

  .services--home-showcase .service-card__content {
    padding-top: clamp(18px, 1.25vw, 24px) !important;
  }
}

/* Banner de contacto: texto más protagonista y extendido hacia la botella. */
@media (min-width: 1321px) {
  .contact-banner__copy {
    width: min(80vw, 1520px) !important;
    padding-left: clamp(28px, 1.8vw, 38px) !important;
  }

  .contact-banner__copy p {
    font-size: clamp(4rem, 4.9vw, 6.4rem) !important;
    line-height: 0.88 !important;
  }

  .contact-banner__copy h2 {
    font-size: clamp(6.2rem, 7.15vw, 9rem) !important;
    line-height: 0.82 !important;
    letter-spacing: 0.006em !important;
  }
}

/* Escala intermedia para notebook/tablet horizontal sin invadir la botella. */
@media (min-width: 769px) and (max-width: 1320px) {
  .contact-banner__copy {
    width: min(78vw, 980px) !important;
  }

  .contact-banner__copy p {
    font-size: clamp(2.7rem, 4.45vw, 4.2rem) !important;
  }

  .contact-banner__copy h2 {
    font-size: clamp(4.4rem, 6.15vw, 6rem) !important;
    line-height: 0.84 !important;
  }
}


/* === Tipografía unificada: Figtree === */
body, p, li, a, label, input, textarea, select {
  font-family: var(--font-main);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
button, .btn, .button, [class*="cta"],
input[type="submit"], input[type="button"] {
  font-family: var(--font-title);
  font-weight: 900;
}

/* =========================================================
   CORRECCIÓN RESPONSIVE DESKTOP: Sobre Nosotros (Inicio)
   Mantiene un margen seguro y evita que el título/texto
   alcancen o se corten contra el borde derecho.
   ========================================================= */
@media (min-width: 1025px) {
  .about__inner {
    width: min(92%, 1500px) !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr) !important;
    gap: clamp(52px, 4.2vw, 82px) !important;
  }

  .about__text {
    width: 100%;
    max-width: 570px !important;
    padding-right: clamp(18px, 2.6vw, 48px);
    box-sizing: border-box;
  }

  .about__text h2,
  #nosotros-titulo {
    max-width: 100%;
    font-size: clamp(3.4rem, 4.6vw, 5.1rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.025em;
  }

  .about__text p {
    max-width: 520px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .about__inner {
    width: min(90%, 1160px) !important;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr) !important;
    gap: 46px !important;
  }

  .about__text {
    padding-right: 22px;
  }

  .about__text h2,
  #nosotros-titulo {
    font-size: clamp(3.25rem, 4.4vw, 4.35rem) !important;
  }
}

/* =========================================================
   Ajuste final aprobado: ancla del formulario + WhatsApp discreto
   ========================================================= */
#contacto {
  scroll-margin-top: calc(var(--topbar-height, 38px) + 84px);
}

.footer-final__whatsapp {
  width: clamp(34px, 3vw, 55px) !important;
  right: clamp(8px, 1.5vw, 24px) !important;
  bottom: max(6px, env(safe-area-inset-bottom)) !important;
}

@media (max-width: 768px) {
  .footer-final__whatsapp {
    width: 31px !important;
    right: max(7px, env(safe-area-inset-right)) !important;
    bottom: max(5px, env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 480px) {
  .footer-final__whatsapp {
    width: 29px !important;
    right: max(6px, env(safe-area-inset-right)) !important;
    bottom: max(4px, env(safe-area-inset-bottom)) !important;
  }
}



/* =========================================================
   Ajuste final: WhatsApp visible sin bloquear la navegación
   ========================================================= */
.footer-final__whatsapp {
  width: clamp(58px, 5vw, 78px) !important;
  right: clamp(10px, 1.6vw, 24px) !important;
  bottom: max(9px, env(safe-area-inset-bottom)) !important;
}

@media (max-width: 768px) {
  .footer-final__whatsapp {
    width: 54px !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 480px) {
  .footer-final__whatsapp {
    width: 48px !important;
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(7px, env(safe-area-inset-bottom)) !important;
  }
}
