@font-face {
  font-family: "AM Udine";
  src:
    local("AM Udine"),
    local("AMUdine-Regular"),
    url("../fonts/AMUdine-Regular.woff2") format("woff2"),
    url("../fonts/AM-Udine-Regular.woff2") format("woff2"),
    url("../fonts/AMUdine.woff2") format("woff2"),
    url("../fonts/AMUdine-Regular.woff") format("woff"),
    url("../fonts/AMUdine.woff") format("woff"),
    url("../fonts/AMUdine-Regular.otf") format("opentype"),
    url("../fonts/AMUdine.otf") format("opentype"),
    url("../fonts/AM%20Udine%20Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #FF3F1A;
  --FIL-GRADIENT: #97D6DF;
  --bg-deep: #050505;
  --text: #ffffff;
  --header-btn-text: #000000;
  --overlay: rgba(5, 5, 5, 0.35);
  --nav-bg: rgba(0, 0, 0, 0.55);
  --dropdown-bg: rgba(12, 12, 12, 0.96);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --page-gutter-left: clamp(1.25rem, 5vw, 2rem);
  --page-gutter-right: clamp(1.25rem, 5vw, 2rem);
  --page-gutter-bottom: clamp(2.5rem, 7vw, 4rem);
  --page-content-max: 1280px;
}

@media (min-width: 900px) {
  :root {
    --page-gutter-left: clamp(3rem, 4.5vw, 5.5rem);
    --page-gutter-right: clamp(2.5rem, 4vw, 5rem);
    --page-gutter-bottom: clamp(3rem, 6vw, 5rem);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem var(--page-gutter-right) 1rem var(--page-gutter-left);
  background: #000000;
}

.site-header__left {
  position: relative;
  z-index: 2;
  justify-self: start;
}

.site-header__logo {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: block;
  max-width: 100%;
  line-height: 0;
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  opacity: 0.92;
  outline: none;
}

.site-header__logo img {
  width: clamp(260px, 76vw, 344px);
  height: auto;
}

.site-header__right {
  position: relative;
  z-index: 2;
  justify-self: end;
  flex-shrink: 0;
}

.header-contact-social {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
}

.header-contact-social__link {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #ffffff;
  background: transparent;
  line-height: 0;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-contact-social__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff3f1a 0%, #97d6df 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.2s ease;
}

.header-contact-social__link:hover::before,
.header-contact-social__link:focus-visible::before {
  opacity: 1;
}

.header-contact-social__link:hover,
.header-contact-social__link:focus-visible {
  border-color: transparent;
  outline: none;
}

.header-contact-social__link:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.header-contact-social__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.header-contact-social__link--whatsapp:active {
  border-color: #25d366;
  background: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.header-contact-social__link--whatsapp:active::before {
  opacity: 0;
}

.header-contact-social__link--instagram:active {
  border-color: transparent;
  background: linear-gradient(135deg, #97d6df 0%, #447980 31.08%, #ff3f1a 100%);
  box-shadow: 0 4px 12px rgba(255, 63, 26, 0.3);
}

.header-contact-social__link--instagram:active::before {
  opacity: 0;
}

@media (max-width: 899px) {
  .site-header__logo img {
    width: clamp(150px, 44vw, 200px);
  }

  .header-contact-social__link {
    width: 36px;
    height: 36px;
    border-radius: 9.818px;
  }

  .header-contact-social__icon {
    width: 20px;
    height: 20px;
  }
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: -10px;
  border-radius: 8px;
  background: transparent;
  transition: opacity 0.2s ease;
}

.menu-toggle__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  opacity: 0.85;
  outline: 2px solid rgba(255, 63, 26, 0.55);
  outline-offset: 2px;
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: #000000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.34s step-end;
}

.main-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s step-start;
}

.main-nav__sheet {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
  background: #000000;
  transform: translate3d(-105%, 0, 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.main-nav.is-open .main-nav__sheet {
  transform: translate3d(0, 0, 0);
}

.nav-overlay__close {
  position: absolute;
  top: 1rem;
  right: var(--page-gutter-right);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-overlay__close:hover,
.nav-overlay__close:focus-visible {
  opacity: 0.85;
  transform: scale(1.05);
  outline: none;
}

.nav-overlay__close img {
  width: 30px;
  height: 30px;
  display: block;
}

.main-nav__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(4.5rem, 12vw, 6rem) var(--page-gutter-right) 2rem var(--page-gutter-left);
  min-height: 0;
}

.nav-list--panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.12rem, 0.85vw, 0.42rem);
  max-width: none;
  margin: 0;
}

.nav-panel-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  color: var(--accent);
  line-height: 0;
  transition: color 0.22s ease;
}

.nav-panel-link:hover,
.nav-panel-link:focus-visible {
  color: var(--FIL-GRADIENT);
  outline: none;
}

.nav-panel-link__wordmark {
  display: block;
  width: auto;
  max-width: min(92vw, 360px);
  height: clamp(52px, 14vw, 92px);
  flex-shrink: 0;
  overflow: visible;
  pointer-events: none;
}

.nav-panel-link__wordmark:not(svg) {
  object-fit: contain;
  object-position: left center;
}

svg.nav-panel-link__wordmark {
  color: var(--accent);
  fill: currentColor;
}

.nav-panel-link:hover .nav-panel-link__wordmark path,
.nav-panel-link:focus-visible .nav-panel-link__wordmark path {
  fill: var(--FIL-GRADIENT);
}

.nav-panel-link__wordmark .nav-wordmark-arrow {
  transform: scale(1);
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.22s ease;
  will-change: transform;
}

.nav-panel-link:hover .nav-panel-link__wordmark .nav-wordmark-arrow,
.nav-panel-link:focus-visible .nav-panel-link__wordmark .nav-wordmark-arrow {
  transform: scale(1.9);
}

@media (max-width: 899px) {
  .nav-panel-link__wordmark {
    height: clamp(40px, 18vw, 72px);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
  touch-action: pan-y pinch-zoom;
}

.hero-slider__track {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slider__track:active {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(1.25rem, 3vw, 2rem) var(--page-gutter-right) calc(var(--page-gutter-bottom) + 1.75rem)
    var(--page-gutter-left);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide--align-top {
  align-items: flex-start;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  -webkit-user-drag: none;
  user-select: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.45) 38%,
    rgba(5, 5, 5, 0.15) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(32rem, 100%);
  text-align: left;
}

.hero__content--left {
  margin-right: auto;
  text-align: left;
}

.hero__content--right {
  margin-left: auto;
  text-align: right;
}

.hero__title {
  margin: 0;
  line-height: 0;
  width: min(100%, 22.5rem);
}

.hero-slide:nth-child(1) .hero__title {
  height: 65px;
}

.hero-slide:nth-child(2) .hero__title {
  height: 85px;
}

.hero-slide:nth-child(3) .hero__title {
  height: 150px;
}

.hero-slide:nth-child(4) .hero__title {
  height: 150px;
}

.hero-slide:nth-child(5) .hero__title {
  height: 65px;
}

.hero-slide:nth-child(6) .hero__title {
  height: 65px;
}

@media (max-width: 899px) {
  .hero-slide:nth-child(1) .hero__title,
  .hero-slide:nth-child(2) .hero__title,
  .hero-slide:nth-child(5) .hero__title,
  .hero-slide:nth-child(6) .hero__title {
    height: 50px;
  }

  .hero-slide:nth-child(3) .hero__title,
  .hero-slide:nth-child(4) .hero__title {
    height: 80px;
  }
}

.hero__title-wordmark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  -webkit-user-drag: none;
  user-select: none;
}

.hero__content--right .hero__title {
  margin-left: auto;
}

.hero__content--right .hero__title-wordmark {
  object-position: right center;
}

.hero__subtitle {
  margin: clamp(0.85rem, 2.5vw, 1.1rem) 0 0;
  max-width: min(24rem, 100%);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero__content--right .hero__subtitle {
  margin-left: auto;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero-slider__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: rgba(255, 255, 255, 0.65);
  outline: none;
}

.hero-slider__dot.is-active {
  background: var(--color-accent, #ff3f1a);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.servicios-section {
  position: relative;
  background: #000000;
  overflow: hidden;
}

.servicios-section__layout {
  display: block;
}

.servicios-section__content {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0 auto;
  min-height: clamp(560px, 78vh, 720px);
  padding: clamp(4.5rem, 11vw, 7rem) var(--page-gutter-right) clamp(4.5rem, 11vw, 7rem)
    var(--page-gutter-left);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.servicios-section__glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.servicios-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.servicios-section__glow--cyan {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: -12%;
  left: 50%;
  transform: translateX(-60%);
  background: radial-gradient(circle, rgba(151, 214, 223, 0.38) 0%, transparent 68%);
}

.servicios-section__glow--red {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  top: -14%;
  right: 50%;
  transform: translateX(55%);
  background: radial-gradient(circle, rgba(255, 63, 26, 0.35) 0%, transparent 68%);
}

.servicios-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.servicios-section__title {
  margin: 0 0 6px;
  line-height: 0;
}

.servicios-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: 55px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.servicios-section__lead {
  margin: 0 0 28px;
  width: 100%;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 6vw, 48px);
  row-gap: clamp(14px, 3vw, 20px);
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  justify-items: stretch;
  align-items: center;
}

.servicios-grid .servicio-card {
  display: flex;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.5vw, 16px);
  background: none;
  box-shadow: none;
  border-radius: 0;
  color: #ffffff;
}

.servicio-card {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  color: #ffffff;
}

.servicio-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.servicios-grid .servicio-card__icon {
  width: clamp(36px, 8vw, 44px);
  height: clamp(36px, 8vw, 44px);
}

.servicio-card__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

@media (max-width: 899px) {
  .servicios-section__layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 100%) 1fr;
    padding-inline: var(--page-gutter-left) var(--page-gutter-right);
  }

  .servicios-section__content {
    grid-column: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: clamp(480px, 82vh, 620px);
    padding: clamp(3.5rem, 10vw, 5.5rem) 0;
  }

  .servicios-section__inner {
    max-width: 100%;
  }

  .servicios-section__title {
    margin: 0 0 6px;
  }

  .servicios-section__lead {
    margin: 0 0 24px;
    max-width: 100%;
  }

  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(10px, 3vw, 20px);
    row-gap: clamp(12px, 3vw, 16px);
    max-width: none;
  }

  .servicios-grid .servicio-card__icon {
    width: 32px;
    height: 32px;
  }

  .servicios-grid .servicio-card__label {
    font-size: 13px;
    line-height: 1.25;
  }
}

@media (min-width: 900px) {
  .servicios-section__layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 680px) 1fr;
    align-items: stretch;
    padding-inline: var(--page-gutter-left) var(--page-gutter-right);
  }

  .servicios-section__content {
    grid-column: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(4.5rem, 11vw, 7rem) 0;
    transform: none;
  }

  .servicios-section__inner {
    max-width: 100%;
    margin-inline: auto;
  }

  .servicios-section__lead {
    margin-inline: auto;
  }

  .servicios-section__glow--cyan {
    left: 50%;
    transform: translateX(-72%);
  }

  .servicios-section__glow--red {
    right: auto;
    left: 50%;
    transform: translateX(28%);
  }

  .servicios-grid {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    column-gap: clamp(48px, 6vw, 72px);
  }

  .servicios-grid > li {
    display: block;
  }

  .servicios-grid .servicio-card {
    width: auto;
    max-width: none;
  }
}

/* ——— Nuestros trabajos ——— */
.trabajos-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5.25rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.trabajos-section::before,
.trabajos-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.trabajos-section::before {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(151, 214, 223, 0.38) 0%, transparent 68%);
}

.trabajos-section::after {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  top: -14%;
  right: -6%;
  left: auto;
  bottom: auto;
  background: radial-gradient(circle, rgba(255, 63, 26, 0.35) 0%, transparent 68%);
}

.trabajos-section__intro {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: 0 var(--page-gutter-right) 0 var(--page-gutter-left);
  text-align: center;
}

.trabajos-section__title {
  margin: 0;
  line-height: 0;
}

.trabajos-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: 55px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}

.trabajos-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  --trabajos-carousel-gap: 28px;
  --trabajos-carousel-visible: 3;
  outline: none;
}

.trabajos-carousel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.trabajos-carousel__viewport {
  container-type: inline-size;
  container-name: trabajos-carousel;
  box-sizing: border-box;
  width: 100%;
  padding-inline: var(--page-gutter-left) var(--page-gutter-right);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.trabajos-carousel.is-dragging .trabajos-carousel__viewport {
  cursor: grabbing;
}

.trabajos-carousel.is-dragging,
.trabajos-carousel.is-dragging * {
  user-select: none;
}

.trabajos-carousel img {
  -webkit-user-drag: none;
}

.trabajos-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--trabajos-carousel-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  transition: transform 650ms ease;
}

.trabajos-carousel.is-dragging .trabajos-carousel__track {
  transition: none;
}

.trabajos-slide {
  flex: 0 0
    calc(
      (
          100cqw -
            (var(--trabajos-carousel-visible) - 1) * var(--trabajos-carousel-gap)
        ) / var(--trabajos-carousel-visible)
    );
  width: calc(
    (
        100cqw -
          (var(--trabajos-carousel-visible) - 1) * var(--trabajos-carousel-gap)
      ) / var(--trabajos-carousel-visible)
  );
}

.trabajos-slide__figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
}

.trabajos-slide__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: #1a1a1a;
  cursor: pointer;
}

.trabajos-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.trabajos-slide:not(.is-in-view) .trabajos-slide__media::after {
  opacity: 1;
}

.trabajos-slide__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  touch-action: none;
}

.trabajos-carousel.is-dragging .trabajos-slide__open {
  cursor: grabbing;
}

.trabajos-slide__open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 28px;
}

.trabajos-slide__open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

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

.trabajos-slide__caption {
  align-self: stretch;
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1.25rem) clamp(0.5rem, 2vw, 1rem)
    clamp(1.75rem, 4vw, 2.75rem) clamp(0.75rem, 2vw, 1.25rem);
  line-height: 0;
  text-align: left;
}

.trabajos-slide__caption-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(18px, 2.4vw, 25px);
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: opacity 0.5s ease;
}

.trabajos-slide:not(.is-in-view) .trabajos-slide__caption-wordmark {
  opacity: 0.55;
}

@media (max-width: 899px) {
  .trabajos-section__title-wordmark {
    height: clamp(34px, 8.5vw, 42px);
  }

  .trabajos-carousel {
    --trabajos-carousel-visible: 2;
    --trabajos-carousel-gap: clamp(14px, 4vw, 20px);
  }

  .trabajos-slide__media {
    border-radius: clamp(12px, 3vw, 16px);
  }

  .trabajos-slide__open:focus-visible {
    border-radius: clamp(12px, 3vw, 16px);
  }
}

.trabajos-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.trabajos-lightbox[hidden] {
  display: none;
}

.trabajos-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.trabajos-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2.5vw, 20px);
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
}

.trabajos-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.trabajos-lightbox__close:hover,
.trabajos-lightbox__close:focus-visible {
  outline: none;
}

.trabajos-lightbox__title {
  margin: 0;
  padding-right: 3rem;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-align: left;
}

.trabajos-lightbox__frame {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  width: 100%;
  min-height: 0;
}

.trabajos-lightbox__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trabajos-lightbox__viewport::-webkit-scrollbar {
  display: none;
}

.trabajos-lightbox__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trabajos-lightbox__slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trabajos-lightbox__slide img {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
}

.trabajos-lightbox__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.trabajos-lightbox__nav:hover,
.trabajos-lightbox__nav:focus-visible {
  outline: none;
}

.trabajos-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.trabajos-lightbox__nav--next img {
  transform: rotate(180deg);
}

.trabajos-lightbox__counter {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

body.trabajos-lightbox-open {
  overflow: hidden;
}

.tecnologia-section {
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 86vh, 800px);
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  --tecnologia-pad-inline-left: var(--page-gutter-left);
  --tecnologia-pad-inline-right: var(--page-gutter-right);
}

.tecnologia-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tecnologia-section__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.tecnologia-section__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /** Deja ~40–45% zona legible tipo captura antes de fusionar con la foto. */
  background: linear-gradient(
    90deg,
    #000000 0%,
    rgba(0, 0, 0, 0.95) min(46%, 32rem),
    rgba(0, 0, 0, 0.35) min(68%, 50rem),
    transparent 93%
  );
}

.tecnologia-section__layout {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  width: 100%;
  flex: 1 1 auto;
  min-height: inherit;
  height: auto;
  padding: clamp(1.75rem, 5vw, 2.5rem) var(--tecnologia-pad-inline-right)
    clamp(2rem, 7vw, 3rem) var(--tecnologia-pad-inline-left);
}

.tecnologia-section__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: min(48rem, 100%);
  text-align: left;
}

.tecnologia-section__title {
  margin: 0;
  line-height: 0;
}

.tecnologia-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(96px, 20vw, 172px);
  object-fit: contain;
  object-position: left center;
}

.tecnologia-section__lead {
  margin: 0;
  max-width: 27rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
}

.tecnologia-roland-band {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(
    90deg,
    #ff3f1a 0%,
    #6b1a0a 19%,
    #1a0806 38%,
    transparent 50%,
    transparent 100%
  );
}

.tecnologia-roland-band__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) var(--tecnologia-pad-inline-right)
    clamp(1.25rem, 3vw, 1.75rem) var(--tecnologia-pad-inline-left);
}

.tecnologia-roland-band__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  --cert-logo-opacity: 0.82;
  --cert-logo-h: clamp(42px, 5.5vw, 54px);
  opacity: var(--cert-logo-opacity);
  filter: brightness(0) invert(1) brightness(1.45) contrast(1.05);
}

.tecnologia-roland-band__logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.tecnologia-roland-band__logo--greenguard {
  height: var(--cert-logo-h);
}

.tecnologia-roland-band__logo--roland {
  height: calc(var(--cert-logo-h) * 0.78);
}


@keyframes logos-carousel-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.logos-carousel-section {
  width: 100%;
  background: linear-gradient(90deg, #ff3f1a 0%, #6b1a0a 38%, #1a0806 68%, #000000 100%);
  color: #ffffff;
  --carousel-logo-opacity: 0.55;
  --carousel-logo-count: 6;
}

.logos-carousel__viewport {
  container-name: logos-carousel;
  container-type: inline-size;
  width: 100%;
  overflow: hidden;
}

.logos-carousel__track {
  display: flex;
  width: 200%;
  align-items: stretch;
  animation: logos-carousel-marquee 50s linear infinite;
  will-change: transform;
}

.logos-carousel__set {
  flex: 0 0 50%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(var(--carousel-logo-count), minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  column-gap: clamp(32px, 6vw, 100px);
  padding: clamp(36px, 5vw, 56px) var(--page-gutter-right) clamp(36px, 5vw, 56px)
    var(--page-gutter-left);
}

.logos-carousel__brand {
  display: flex;
  width: 100%;
  max-width: 200px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  opacity: var(--carousel-logo-opacity);
  filter: brightness(0) invert(1) brightness(1.45) contrast(1.05);
}

.logos-carousel__brand img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(32px, 4.5vw, 48px);
  object-fit: contain;
}

@media (max-width: 899px) {
  .logos-carousel__track {
    width: calc(100cqw * var(--carousel-logo-count) * 2 / 3);
  }

  .logos-carousel__set {
    flex: 0 0 calc(100cqw * var(--carousel-logo-count) / 3);
    width: calc(100cqw * var(--carousel-logo-count) / 3);
    grid-template-columns: repeat(var(--carousel-logo-count), calc(100cqw / 3));
    column-gap: 0;
    padding: clamp(24px, 5vw, 40px) 0;
  }

  .logos-carousel__brand {
    max-width: none;
    box-sizing: border-box;
    padding-inline: clamp(10px, 3vw, 20px);
  }

  .logos-carousel__brand img {
    max-height: clamp(26px, 7vw, 38px);
  }
}

@supports not (container-type: inline-size) {
  @media (max-width: 899px) {
    .logos-carousel__track {
      width: calc(100vw * var(--carousel-logo-count) * 2 / 3);
    }

    .logos-carousel__set {
      flex: 0 0 calc(100vw * var(--carousel-logo-count) / 3);
      width: calc(100vw * var(--carousel-logo-count) / 3);
      grid-template-columns: repeat(var(--carousel-logo-count), calc(100vw / 3));
    }
  }
}

/* ——— Materiales / cartel PARE ——— */
.materiales-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 58vw, 760px);
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

.materiales-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.materiales-section__bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: min(88%, 76rem);
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 32%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.7) 62%,
    rgba(0, 0, 0, 0.38) 76%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 32%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.7) 62%,
    rgba(0, 0, 0, 0.38) 76%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
}

.materiales-section__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.04) 40%,
    rgba(0, 0, 0, 0.14) 52%,
    rgba(0, 0, 0, 0.32) 64%,
    rgba(0, 0, 0, 0.52) 76%,
    rgba(0, 0, 0, 0.72) 88%,
    rgba(0, 0, 0, 0.88) 96%,
    #000000 100%
  );
}

.materiales-section__layout {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: inherit;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) var(--page-gutter-right) clamp(2.5rem, 6vw, 5rem)
    var(--page-gutter-left);
}

.materiales-section__content {
  width: 100%;
  max-width: min(42rem, 50%);
  text-align: left;
}

.materiales-section__title {
  margin: 0 0 1.25rem;
  line-height: 0;
}

.materiales-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(120px, 11vw, 158px);
  object-fit: contain;
  object-position: left center;
}

.materiales-section__lead {
  margin: 0;
  max-width: 32rem;
  color: #ffffff;
  font-family: "Futura Md BT", "Futura", "Century Gothic", "Trebuchet MS", var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (min-width: 900px) {
  .materiales-section__title-wordmark {
    height: 184px;
    max-width: min(767px, 100%);
  }
}

@media (max-width: 899px) {
  .materiales-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .materiales-section__bg {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    line-height: 0;
  }

  .materiales-section__bg img {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .materiales-section__bg-fade {
    position: absolute;
    inset: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(32%, 7rem);
    background: linear-gradient(
      to top,
      #000000 0%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent 100%
    );
  }

  .materiales-section__layout {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    padding: clamp(1.75rem, 5vw, 2.5rem) var(--page-gutter-right)
      clamp(2rem, 7vw, 2.75rem) var(--page-gutter-left);
    background: #000000;
  }

  .materiales-section__content {
    max-width: 100%;
  }

  .materiales-section__title-wordmark {
    height: clamp(88px, 22vw, 120px);
    object-position: left center;
  }

  .materiales-section__lead {
    font-size: clamp(17px, 4.2vw, 20px);
  }
}

.logistica-section {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  color: #0e0f11;
}

.logistica-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: calc(var(--page-content-max) + var(--page-gutter-left) + var(--page-gutter-right));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.25rem) var(--page-gutter-right) clamp(3rem, 7vw, 5.25rem)
    var(--page-gutter-left);
}

.logistica-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logistica-section__visual img {
  width: 100%;
  max-width: min(560px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.logistica-section__content {
  min-width: 0;
}

.logistica-section__title {
  margin: 0 0 clamp(14px, 2vw, 20px);
  line-height: 0;
}

.logistica-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(36px, 7vw, 55px);
  object-fit: contain;
  object-position: left center;
}

.logistica-section__lead {
  margin: 0 0 clamp(24px, 4vw, 36px);
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: #0e0f11;
}

.logistica-section__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logistica-section__cards > li {
  margin: 0;
}

.logistica-card {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: clamp(14px, 3vw, 18px) clamp(18px, 4vw, 24px);
  border-radius: 12px;
  border: 0.5px solid #ff3f1a;
  background-color: rgba(248, 250, 251, 0.98);
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 1.44%,
    rgba(129, 197, 206, 0.1) 98.08%
  );
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
}

.logistica-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logistica-card__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #0e0f11;
}

@keyframes servicios-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.servicios-marquee {
  display: none;
  --servicios-marquee-card-w: 240px;
  --servicios-marquee-card-h: 152px;
  --servicios-marquee-gap: 10px;
  --servicios-marquee-cols: 7;
  width: 100%;
  overflow: visible;
  padding-block: clamp(1.25rem, 3.5vw, 2rem);
  padding-inline: 0;
  border: none;
  border-bottom: none;
  background: linear-gradient(
    90deg,
    #2c3335 0%,
    #3a3938 42%,
    #b83818 82%,
    #ff4500 100%
  );
}

.servicios-marquee__panel {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: clamp(10px, 2vw, 16px);
  padding-inline: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.servicios-marquee__viewport {
  container-name: servicios-marquee;
  container-type: inline-size;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: hidden;
}

.servicios-marquee__strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--servicios-marquee-gap);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: servicios-marquee-scroll 42s linear infinite;
  will-change: transform;
}

.servicios-marquee__item {
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .servicios-marquee {
    --servicios-marquee-cols: 2.5;
  }

  .servicios-marquee-card {
    display: flex;
    box-sizing: border-box;
    width: calc(
      (100cqi - 1.5 * var(--servicios-marquee-gap)) / 2.5
    );
    height: 87.753px;
    padding: 9.237px 11.546px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6.928px;
    flex-shrink: 0;
    aspect-ratio: auto;
    border-radius: 15px;
  }

  .servicios-marquee-card__icon {
    width: 28px;
    height: 28px;
  }

  .servicios-marquee-card__label {
    font-size: 10px;
    line-height: 1.2;
  }
}

@supports not (container-type: inline-size) {
  @media (max-width: 899px) {
    .servicios-marquee-card {
      width: calc((100vw - 1.5 * var(--servicios-marquee-gap)) / 2.5);
    }
  }
}

.servicios-marquee-card {
  box-sizing: border-box;
  display: flex;
  width: calc(
    (
        100cqi - (var(--servicios-marquee-cols) - 1) * var(--servicios-marquee-gap)
      ) / var(--servicios-marquee-cols)
  );
  height: auto;
  aspect-ratio: 240 / 152;
  padding: 16px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-shrink: 0;
  border-radius: 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 1.44%,
      rgba(129, 197, 206, 0.1) 98.08%
    ),
    linear-gradient(
      180deg,
      rgba(34, 40, 43, 0.35) 0%,
      rgba(12, 14, 16, 0.55) 100%
    );
  box-shadow:
    0 5.603px 14.007px 0 rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@supports not (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .servicios-marquee-card {
    border-color: rgba(151, 214, 223, 0.55);
    background: linear-gradient(
      180deg,
      rgba(48, 58, 62, 0.92) 0%,
      rgba(26, 32, 35, 0.96) 100%
    );
  }
}

.servicios-marquee-card__icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.servicios-marquee-card__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.servicios-marquee-card__label {
  margin: 0;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  align-self: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #ffffff;
}

@supports not (container-type: inline-size) {
  .servicios-marquee-card {
    width: var(--servicios-marquee-card-w);
    min-height: var(--servicios-marquee-card-h);
  }
}

@container servicios-marquee (max-width: 520px) {
  .servicios-marquee-card__label {
    font-size: 11px;
  }
}

.contacto-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  color: #0e0f11;
  background-color: #ffffff;
}

.contacto-section__inner {
  max-width: calc(var(--page-content-max) + var(--page-gutter-left) + var(--page-gutter-right));
  margin: 0 auto;
  padding: clamp(3.25rem, 9vw, 5.25rem) var(--page-gutter-right)
    clamp(3.5rem, 9vw, 5.5rem) var(--page-gutter-left);
}

.contacto-section__header {
  text-align: left;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.25rem);
  max-width: min(46rem, 100%);
}

.contacto-section__title {
  margin: 0 0 clamp(14px, 2.2vw, 22px);
  line-height: 0;
}

.contacto-section__title-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(36px, 6.8vw, 55px);
  object-fit: contain;
  object-position: left center;
}

.contacto-section__lead {
  margin: 0;
  max-width: 44rem;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3b3b40;
}

.contacto-section__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(2.5rem, 6vw, 4.75rem);
  row-gap: clamp(2rem, 4vw, 2.5rem);
}

.contacto-datos {
  list-style: none;
  margin: 0 0 clamp(1.75rem, 4.5vw, 2.75rem);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4.75vw, 40px);
}

.contacto-dato {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px 22px;
  align-items: start;
}

.contacto-dato__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 100px;
  border: 2px solid transparent;
  background:
    linear-gradient(#000000, #000000) padding-box,
    linear-gradient(
      135deg,
      var(--accent, #ff3f1a) 0%,
      var(--FIL-GRADIENT, #97d6df) 100%
    ) border-box;
}

.contacto-dato__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contacto-dato__body {
  min-width: 0;
}

.contacto-dato__label {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #0e0f11;
}

.contacto-dato__value {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #37373c;
}

.contacto-dato__value--address {
  line-height: 1.5;
}

.contacto-dato__value a {
  color: inherit;
  text-decoration: none;
}

.contacto-dato__value a:hover,
.contacto-dato__value a:focus-visible {
  color: #ff3f1a;
  text-decoration: none;
}

.contacto-whats-cta {
  display: inline-flex;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding: 18px clamp(22px, 4vw, 32px);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw + 12px, 16px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, #ff3f1a 0%, #547b80 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contacto-whats-cta:hover,
.contacto-whats-cta:focus-visible {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0;
  background: #ffffff;
}

.contacto-form__title {
  margin: 0 0 clamp(18px, 3vw, 24px);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw + 11px, 17px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}

.contacto-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, 1.5vw, 12px);
  margin-bottom: clamp(14px, 2.25vw, 20px);
}

.contacto-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contacto-field__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
}

.contacto-field__required {
  color: #000000;
  font-weight: 600;
}

.contacto-field__control {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid #000000;
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contacto-field__control::placeholder {
  color: #6b6b70;
}

.contacto-field__control:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.contacto-field__control.invalid {
  border-color: #b00020;
}

.contacto-form__feedback {
  margin: 0 0 clamp(12px, 2vw, 16px);
  min-height: 1.25em;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: #1b5e20;
}

.contacto-form__feedback.is-error {
  color: #b00020;
}

.contacto-field--recaptcha {
  min-height: 0;
}

.contacto-field--recaptcha[aria-hidden='true'] {
  display: none;
}

.contacto-field__textarea {
  min-height: 140px;
  padding: 11px 14px;
  resize: vertical;
}

.contacto-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contacto-form__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding: 14px 36px;
  border-radius: 18px;
  border: 1px solid #000000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  background:
    radial-gradient(
      farthest-corner at 96% 100%,
      rgba(255, 120, 95, 0.45) 0%,
      rgba(255, 160, 130, 0.18) 32%,
      rgba(255, 255, 255, 0) 58%
    ),
    #ffffff;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.contacto-form__submit:hover,
.contacto-form__submit:focus-visible {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  outline: none;
}

.contacto-form__submit:active {
  transform: translateY(1px);
}

@media (max-width: 899px) {
  .logistica-section__layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 6vw, 2.75rem);
  }

  .logistica-section__visual {
    order: -1;
  }

  .logistica-section__lead {
    max-width: none;
  }

  .contacto-section__cols {
    grid-template-columns: 1fr;
  }

  .tecnologia-section {
    min-height: 0;
  }

  .tecnologia-section__media {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(360px, 78vw, 480px);
    overflow: visible;
  }

  .tecnologia-section__media img {
    width: 190%;
    max-width: none;
    height: 125%;
    margin-inline: auto;
    transform: translateX(-32%);
    object-fit: cover;
    object-position: 12% top;
  }

  .tecnologia-section__scrim {
    top: auto;
    height: 62%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 18%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.82) 68%,
      #000000 100%
    );
  }

  .tecnologia-section__layout {
    justify-content: flex-end;
    min-height: clamp(380px, 62vh, 460px);
    padding: clamp(8rem, 25vw, 10rem) var(--tecnologia-pad-inline-right)
      clamp(0.85rem, 3vw, 1.15rem) var(--tecnologia-pad-inline-left);
  }

  .tecnologia-section__copy {
    gap: clamp(6px, 2vw, 10px);
  }

  .tecnologia-section__title-wordmark {
    height: clamp(76px, 21vw, 100px);
    max-width: min(290px, 82vw);
  }

  .tecnologia-section__lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
  }

  .tecnologia-roland-band__inner {
    justify-content: center;
    padding: clamp(0.65rem, 2vw, 0.9rem) var(--tecnologia-pad-inline-right)
      clamp(0.65rem, 2vw, 0.9rem) var(--tecnologia-pad-inline-left);
  }

  .tecnologia-roland-band__logos {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    gap: clamp(1.35rem, 6vw, 2.25rem);
    --cert-logo-h: clamp(22px, 5.2vw, 30px);
  }
}

@media (min-width: 900px) {
  .main-nav {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }

  .main-nav.is-open {
    background: rgba(0, 0, 0, 0.55);
  }

  .main-nav__sheet {
    flex: none;
    width: 785px;
    max-width: 100%;
    height: 100%;
  }

  .tecnologia-section {
    min-height: 840px;
  }

  .tecnologia-section__layout {
    height: 760px;
    min-height: 760px;
    padding: clamp(8rem, 16vw, 11rem) var(--tecnologia-pad-inline-right) 60px
      var(--tecnologia-pad-inline-left);
  }

  .tecnologia-section__copy {
    max-width: min(48rem, 100%);
  }

  .tecnologia-section__lead {
    font-size: 18px;
  }

  .tecnologia-roland-band__inner {
    padding: clamp(1.25rem, 3vw, 1.75rem) var(--tecnologia-pad-inline-right)
      clamp(1.25rem, 3vw, 1.75rem) var(--tecnologia-pad-inline-left);
  }
}

body.nav-open {
  overflow: hidden;
}

.floating-social {
  display: none !important;
}

.floating-social__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  line-height: 0;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.floating-social__btn:hover,
.floating-social__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.floating-social__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.floating-social__btn:active {
  transform: translateY(0);
}

.floating-social__btn img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.floating-social__btn--instagram,
.floating-social__btn--whatsapp {
  border: 1px solid #ffffff;
  background: transparent;
}

.floating-social__btn--instagram img,
.floating-social__btn--whatsapp img {
  filter: brightness(0) invert(1);
}

.floating-social__btn--instagram:active {
  border-color: transparent;
  background: linear-gradient(135deg, #97d6df 0%, #447980 31.08%, #ff3f1a 100%);
  box-shadow: 0 4px 12px rgba(255, 63, 26, 0.3);
}

.floating-social__btn--whatsapp:active {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

@media (min-width: 900px) {
  .floating-social {
    right: max(24px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    gap: 14px;
  }

  .floating-social__btn {
    width: 56px;
    height: 56px;
  }

  .floating-social__btn img {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-social__btn {
    transition: none;
  }
}

.site-footer {
  position: relative;
  margin: 0;
  background: #000000;
  color: #ffffff;
}

.site-footer__accent {
  display: none;
}

.site-footer__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.25rem, 6vw, 3.75rem) var(--page-gutter-right)
    clamp(2rem, 5vw, 3rem) var(--page-gutter-left);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.site-footer__logo {
  display: block;
  line-height: 0;
}

.site-footer__logo img {
  width: clamp(288px, 62vw, 420px);
  height: auto;
  display: block;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li {
  display: inline-flex;
  align-items: center;
}

.site-footer__links li:not(:last-child)::after {
  content: "|";
  margin: 0 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  pointer-events: none;
}

.site-footer__links a {
  color: inherit;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.85vw, 14px);
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3.5vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 8px;
  opacity: 0.95;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 63, 26, 0.55);
}

.site-footer__social-link img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 540px) {
  .site-footer__links a {
    white-space: normal;
    max-width: 11rem;
  }

  .site-footer__links li:not(:last-child)::after {
    margin: 0 0.42rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .logos-carousel__track {
    animation: none !important;
    justify-content: center;
    width: 100%;
  }

  .logos-carousel__set--clone {
    display: none;
  }

  .logos-carousel__set {
    flex-basis: auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: min(1100px, 100%);
  }

  .servicios-marquee__strip {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--servicios-marquee-gap, 10px);
    width: 100%;
    max-width: none;
    margin-inline: auto;
    will-change: auto;
    transform: none;
  }

  .servicios-marquee__item--clone {
    display: none !important;
  }

  .servicios-marquee-card {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: min(
      var(--servicios-marquee-card-w),
      calc(
        (
            100% -
              (
                var(--servicios-marquee-cols, 7) -
                  1
              )
              * var(--servicios-marquee-gap, 10px)
          ) /
          var(--servicios-marquee-cols, 7)
      )
    );
    height: auto;
    aspect-ratio: 240 / 152;
    padding-block: clamp(10px, 2vw, 13.222px);
    padding-inline: clamp(12px, 3vw, 16.528px);
    gap: clamp(8px, 2vw, 9.917px);
    border-radius: clamp(18px, 4vw, 23.111px);
    flex-shrink: 0;
  }

  .servicios-marquee-card__icon {
    width: clamp(34px, 8vw, 46px);
    height: clamp(34px, 8vw, 46px);
  }
}