:root {
  --navy: #0A1628;
  --navy-mid: #0F1F3A;
  --navy-light: #162744;
  --orange: rgb(244, 162, 41);
  --orange-dk: rgb(225, 143, 21);
  --orange-lt: rgb(246, 174, 67);
  --teal: #2ABFBF;
  --teal-dk: #1E9696;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --grey-100: #ECEDF0;
  --grey-300: #CBD0D8;
  --grey-500: #8A92A0;
  --grey-700: #4A5260;
  --text-dark: #1A2438;
  --text-body: #3D4555;
  --text-muted: #7C8594;

  --font-display: 'League Spartan', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  .rinnova {
    color: rgb(244, 162, 41);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: -1px;
  }

  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-2xl:6rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, .10);
  --shadow-md: 0 6px 24px rgba(10, 22, 40, .14);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, .20);
  --shadow-xl: 0 24px 72px rgba(10, 22, 40, .28);

  --t-fast: .15s ease;
  --t-med: .28s ease;
  --t-slow: .45s ease;

  --max-w: 1240px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.acc {
  color: var(--orange);
}

.clr-white {
  color: var(--white) !important;
}

.clr-muted {
  color: var(--grey-300) !important;
}

.stag {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

.stag-light {
  color: var(--orange-lt);
}

.stitle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}

.ssub {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: inline;
  }
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head-light .stitle {
  color: var(--white);
}

.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--off-white);
}

.bg-dark {
  background: var(--navy);
}

.bg-contact {
  background: var(--navy-mid);
}

.bg-pres {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--r-sm);
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 130, 12, .35);
}

.btn-primary:hover {
  background: var(--orange-dk);
  box-shadow: 0 8px 28px rgba(232, 130, 12, .45);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .30);
}

.btn-wa:hover {
  background: #1EBE5A;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .40);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--grey-300);
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-outline-w {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .35);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

.btn-outline-w:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

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

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

.reveal-d1 {
  transition-delay: .10s;
}

.reveal-d2 {
  transition-delay: .20s;
}

.reveal-d3 {
  transition-delay: .30s;
}

.reveal-d4 {
  transition-delay: .40s;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  border-color: rgba(255, 255, 255, .06);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.75rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--t-med);
}

.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--white);
  width: 100%;
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--r-sm) !important;
  transition: background var(--t-fast), transform var(--t-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-dk) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 22, 40, .98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  gap: .25rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--t-med), opacity var(--t-med);
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color var(--t-fast);
}

.mobile-link:hover {
  color: var(--orange);
}

.mobile-cta {
  margin-top: 1rem;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  padding: 1rem;
  border-radius: var(--r-sm);
  border-bottom: none;
  width: 60%;
}

.mobile-cta:hover {
  background: var(--orange-dk);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 22, 40, .93) 0%,
      rgba(10, 22, 40, .80) 20%,
      rgba(10, 22, 40, .35) 45%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.nuevatec {
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title-em {
  color: var(--orange);
}

.hero-lead {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-lead strong {
  color: var(--white);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.hstat-n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange-dk);
  line-height: 1;
}

.hstat-l {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.hero-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hero-product-halo {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 130, 12, .18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-product-img {
  width: clamp(200px, 25vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .4));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-product-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1rem .45rem .65rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 4px 16px rgba(42, 191, 191, .35);
  z-index: 2;
}

.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 1.1rem 0;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-lbl {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-500);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: .7;
}

.trust-logo-sm {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.trust-sep {
  width: 1px;
  height: 30px;
  background: var(--grey-300);
}

.trust-item-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--grey-700);
}

.diff-highlight {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--orange);
}

.diff-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(232, 130, 12, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.2;
}

.diff-text {
  color: rgba(255, 255, 255, .70);
  font-size: .95rem;
  line-height: 1.65;
}

.diff-text strong {
  color: var(--orange-lt);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.feat-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-300);
}

.feat-dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, .08);
}

#h3friddestacado {
  color: #dbdfe7;
}

.feat-dark h3 {
  color: var(--white);
}

.feat-dark p {
  color: rgba(255, 255, 255, .65);
}

.feat-ico {
  width: 48px;
  height: 48px;
  background: rgba(232, 130, 12, .10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feat-dark .feat-ico {
  background: rgba(230, 141, 39, 0.15);
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.feat-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feat-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 130, 12, .12);
  padding: .25rem .65rem;
  border-radius: 20px;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.showcase-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.showcase-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s ease;
}

.showcase-img:hover img {
  transform: scale(1.03);
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.showcase-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.check-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.check-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-body);
}

.chk {
  color: green;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.steps-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.step-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 130, 12, .4);
  background: rgba(255, 255, 255, .08);
}

.step-num {
  position: relative;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(232, 130, 12, .12);
  line-height: 1;
  margin-bottom: 0;
  z-index: 1;
}

.step-ico {
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3rem auto 1rem;
  position: relative;
  z-index: 2;
}

.step-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}

.step-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .60);
  line-height: 1.6;
}

.step-arr {
  width: 60px;
  flex-shrink: 0;
  opacity: .5;
}

.step-arr svg {
  width: 100%;
  height: auto;
}

.step-slider-controls {
  display: none;
}

.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.ba-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ba-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ba-card:hover img {
  transform: scale(1.05);
}

.ba-lbl {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--orange);
  color: var(--white);
  padding: .4rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ba-after .ba-lbl {
  background: var(--navy);
}

.ucases {
  margin-top: 1rem;
}

.ucases-title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 1.25rem;
}

.ucases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.ucase {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.ucase:hover {
  border-color: rgba(42, 191, 191, .4);
  background: rgba(42, 191, 191, .06);
}

.bg-pres {
  position: relative;
  overflow: hidden;
}

.pres-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pres-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pres-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 22, 40, .92) 0%,
      rgba(10, 22, 40, .85) 60%,
      rgba(10, 22, 40, .96) 100%);
}

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

.pres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pcard {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  backdrop-filter: blur(8px);
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 130, 12, .4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
}

.pcard-feat {
  border-color: var(--orange);
  background: rgba(232, 130, 12, .08);
}

.pcard-feat:hover {
  border-color: var(--orange-lt);
}

.pcard-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
  z-index: 1;
}

.pcard-img {
  background: rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 1.5rem;
  min-height: 220px;
}

.pcard-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .3));
}

.pcard-img-granel {
  align-items: flex-end;
}

.pcard-body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pcard-tag {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: .4rem;
}

.pcard-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.1;
}

.pcard-text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.pcard-specs {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.pcard-specs li {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  padding-left: 1rem;
  position: relative;
}

.pcard-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pcard-cta {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange-lt);
  transition: color var(--t-fast);
  margin-top: auto;
}

.pcard-cta:hover {
  color: var(--white);
}

.svc-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
  min-width: 180px;
}

.svc-item div {
  display: flex;
  flex-direction: column;
}

.svc-item strong {
  font-size: .92rem;
  color: var(--white);
}

.svc-item span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.svc-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

.ficha-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(232, 130, 12, .08);
  border: 1.5px solid rgba(232, 130, 12, .3);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.ficha-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ficha-left>div {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ficha-left strong {
  font-size: 1rem;
  color: var(--white);
}

.ficha-left span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.calc-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.calc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1.5px solid var(--grey-100);
}

.calc-hdr {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--navy);
  padding: 1.1rem 1.75rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
}

.calc-hdr img {
  border-radius: 4px;
}

.calc-body {
  padding: 2rem 1.75rem;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.cfield {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.cfield label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .01em;
}

.cfield input {
  border: 1.5px solid var(--grey-300);
  border-radius: var(--r-sm);
  padding: .7rem .95rem;
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  background: var(--white);
}

.cfield input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, .08);
}

.calc-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.calc-res {
  display: none;
  animation: slideUp .35s ease;
}

.calc-res.visible {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.calc-res-inner {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.res-row span {
  font-weight: 600;
  color: var(--text-dark);
}

.res-row strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}

.res-div {
  height: 1px;
  background: var(--grey-300);
  margin-bottom: 1.25rem;
}

.res-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.res-opt {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  border: 1.5px solid var(--grey-100);
}

.res-opt img {
  object-fit: contain;
}

.res-opt>div {
  display: flex;
  flex-direction: column;
}

.res-opt span {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.res-opt strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}

.res-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .5rem;
}

.calc-disc {
  font-size: .75rem;
  color: var(--grey-500);
  padding: .85rem 1.75rem 1rem;
  border-top: 1px solid var(--grey-100);
}

.obras-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.obras-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.obras-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.342);
  flex-shrink: 0;
}

.ostat-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.ostat-l {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-100);
  transform: translateZ(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10, 22, 40, 0.15);
  z-index: 2;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.75rem;
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.gov-desc,
.gov-loc {
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: left;
}

.gov-desc {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.gov-loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-lt);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition-delay: 0.05s;
}

.gallery-item:hover .gov-desc,
.gallery-item:hover .gov-loc {
  transform: translateY(0);
  opacity: 1;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: .5rem;
}

.gallery-slider-controls {
  display: none;
}

.obras-pills-wrap p {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.obras-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.obras-pills span {
  background: var(--grey-100);
  color: var(--text-dark);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 20px;
  border: 1px solid var(--grey-300);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 16, 31, .96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
  animation: lbFadeIn .25s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}

.lb-close:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.08);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}

.lb-prev {
  left: 1.25rem;
}

.lb-next {
  right: 1.25rem;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%) scale(1.08);
}

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 calc(85vw - 2rem);
    scroll-snap-align: center;
    height: 380px;
  }

  .gallery-item img {
    height: 100%;
  }

  .gallery-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .gov-desc,
  .gov-loc,
  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: none;
  }

  .gov-desc {
    font-size: 1.1rem;
  }

  .gov-loc {
    font-size: .8rem;
  }

  .obras-stats-strip {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .obras-stat-sep {
    display: none;
  }

  .gallery-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .lb-prev {
    left: .5rem;
  }

  .lb-next {
    right: .5rem;
  }
}

.nos-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nos-content .stitle {
  margin-bottom: 1.25rem;
}

.nos-text {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .97rem;
}

.nos-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.75rem;
}

.nval {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nval-dot {
  color: var(--orange);
  font-size: .6rem;
  flex-shrink: 0;
}

.nos-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nos-logo-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.nos-logo-block>div {
  display: flex;
  flex-direction: column;
}

.nos-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.nos-brand-sub {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nos-inpi {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--grey-100);
}

.nos-inpi span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.nos-action-img {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.nos-action-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.fitem {
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.fitem.open {
  border-color: rgba(232, 130, 12, .35);
}

.fq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .03);
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
}

.fq:hover {
  background: rgba(255, 255, 255, .06);
}

.fitem.open .fq {
  color: var(--orange-lt);
  background: rgba(232, 130, 12, .06);
}

.farr {
  flex-shrink: 0;
  transition: transform var(--t-med);
  color: var(--orange);
  opacity: .7;
}

.fitem.open .farr {
  transform: rotate(180deg);
  opacity: 1;
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.fitem.open .fa {
  max-height: 300px;
}

.fa p {
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .60);
  line-height: 1.7;
}

.fa p strong {
  color: var(--orange-lt);
}

.faq-aside {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.faq-aside-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}

.faq-aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.faq-aside-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .60);
  line-height: 1.65;
}

.faq-aside-card .btn {
  width: 100%;
  justify-content: center;
}

.btn-outlinecontac {
  background-color: var(--grey-500);
  color: white;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-text {
  color: rgba(255, 255, 255, .70);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: .97rem;
}

.contact-chs {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.cch {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

.cch:hover {
  border-color: rgba(232, 130, 12, .4);
  background: rgba(232, 130, 12, .06);
  transform: translateX(4px);
}

.cch-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(232, 130, 12, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.cch>div {
  display: flex;
  flex-direction: column;
}

.cch strong {
  font-size: .92rem;
  color: var(--white);
}

.cch span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 2rem;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ff label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .70);
}

.ff input,
.ff select,
.ff textarea {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font-size: .93rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.ff input::placeholder,
.ff textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 130, 12, .12);
}

.ff select option {
  background: var(--navy-mid);
  color: var(--white);
}

.ff textarea {
  resize: vertical;
  min-height: 100px;
}

.ferr {
  font-size: .75rem;
  color: #FF6B6B;
  min-height: .9rem;
}

.ff input.error,
.ff textarea.error {
  border-color: #FF6B6B;
}

.form-sub {
  width: 100%;
  justify-content: center;
}

.form-ok {
  display: none;
  align-items: center;
  gap: .75rem;
  background: rgba(42, 191, 191, .1);
  border: 1.5px solid rgba(42, 191, 191, .3);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--teal);
}

.form-ok.visible {
  display: flex;
}

.section-clients {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 2.5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

.clients-header {
  flex-shrink: 0;
  padding: 0 2.5rem 0 clamp(1.25rem, 4vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .10);
  min-width: 180px;
}

.clients-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  line-height: 1.3;
  white-space: nowrap;
}

.clients-track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 55s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

.clients-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
}

.clients-slide img {
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .45;
  transition: opacity var(--t-med), filter var(--t-med);
}

.footer {
  background: #06101F;
}

.footer-top {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer-logo {
  height: auto;
  width: 120px;
  filter: brightness(0.9);
}

.footer-brand p {
  font-size: .83rem;
  color: var(--grey-500);
  line-height: 1.65;
  max-width: 260px;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--grey-500);
  transition: color var(--t-fast);
}

.footer-ig:hover {
  color: var(--orange);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .4rem;
}

.footer-nav a {
  font-size: .85rem;
  color: var(--grey-500);
  transition: color var(--t-fast);
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .4rem;
}

.footer-contact a,
.footer-contact span {
  font-size: .85rem;
  color: var(--grey-500);
  transition: color var(--t-fast);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-cta {
  margin-top: .5rem;
  color: white !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 1.25rem 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: var(--grey-700);
}

.wa-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
}

.wa-lbl {
  white-space: nowrap;
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pres-grid .pcard:last-child {
    grid-column: span 2;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .step-arr {
    display: none;
  }

  .ba-wrap {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .obras-wrap {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: static;
  }

  .nos-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .nuevatec {
    font-size: 0.55rem;
  }

  .hero-product {
    display: none;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-lead {
    text-align: left;
  }

  .trust-inner {
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: space-between;
  }

  .trust-lbl {
    font-size: .72rem;
  }

  .trust-logo {
    height: 24px;
  }

  .trust-logo-sm {
    height: 20px;
  }

  .trust-sep {
    display: none;
  }

  .trust-item-wrap {
    font-size: .78rem;
  }

  .trust-items {
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .reveal-d3 {
    width: 16rem;
  }

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

  .showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-img img {
    height: 260px;
  }

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

  .pres-grid .pcard:last-child {
    grid-column: span 1;
  }

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

  .svc-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-sep {
    width: 100%;
    height: 1px;
  }

  .ficha-dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }

  .res-opts {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .nos-wrap {
    gap: 2.5rem;
  }

  .nos-vals {
    grid-template-columns: 1fr;
  }

  .obras-wrap {
    gap: 2rem;
  }

  .obras-img img {
    height: 260px;
  }

  .obras-side .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-wrap {
    gap: 2.5rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .diff-content {
    flex-direction: column;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .wa-float .wa-lbl {
    display: none;
  }

  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {

  .hero {
    min-height: 90svh;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hstat-sep {
    display: none;
  }

  .hero-stats {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: start;
  }

  .hstat {
    flex: 1;
  }

  .res-opts {
    grid-template-columns: 1fr;
  }
}

.feat-slider-controls,
.step-slider-controls {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 768px) {

  .feat-grid,
  .steps-wrap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;

    scrollbar-width: none;
  }

  .feat-grid::-webkit-scrollbar,
  .steps-wrap::-webkit-scrollbar {
    display: none;
  }

  .feat-grid .feat-card,
  .steps-wrap .step-card {
    flex: 0 0 calc(100% - 2rem);
    scroll-snap-align: center;
    margin: 0;
  }

  .feat-slider-controls,
  .step-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .fslider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--grey-300);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
    flex-shrink: 0;
  }

  .fslider-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: scale(1.05);
  }

  .fslider-btn:disabled {
    opacity: .3;
    pointer-events: none;
  }

  .fslider-dots {
    display: flex;
    align-items: center;
    gap: .45rem;
  }

  .fslider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grey-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--t-med), transform var(--t-med), width var(--t-med);
  }

  .fslider-dot.active {
    background: var(--orange);
    width: 20px;
    border-radius: 4px;
  }
}

@media (max-width: 640px) {
  .clients-track-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .clients-slide {
    width: 120px;
  }

  .clients-slide img {
    max-width: 100px;
    max-height: 44px;
  }

  .clients-track {
    gap: 1.75rem;
    animation-duration: 40s;
  }

  .section-clients {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 0 1.75rem;
  }

  .clients-header {
    padding: 0 0 1.25rem;
    width: 100%;
    text-align: center;
  }

  .clients-title {
    font-size: 1.1rem;
  }
}

@media (min-width: 1400px) {
  .hero-content {
    max-width: 900px;
  }

  .hero-title {
    font-size: 5.5rem;
  }
}
