:root {
  /* brand colors */
  --blue: #00234B;
  --blue-soft: #003a7a;
  --white: #FFFFFF;
  --black: #000000;
  --violet: #821FFF;
  --coral: #FF0063;
  --gold: #FFBF00;
  --gray-light: #F6F6F6;
  --gray-mid: #E8E8E8;
  --gray-text: #444444;
  --gray-soft: #888888;

  /* brand gradient */
  --grad-pink: #F9C0C0;
  --grad-blue: #B0E0FF;
  --grad-mint: #B0FFD8;
  --brand-grad: linear-gradient(135deg, var(--grad-pink) 0%, var(--grad-blue) 50%, var(--grad-mint) 100%);

  --nav-h: 76px;
}

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

html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--blue);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  line-height: 1.5;
  font-weight: 400;
}

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

.svg-defs { position: absolute; width: 0; height: 0; }

section[id], .cta { scroll-margin-top: var(--nav-h); }

/* ===== logo ===== */
.logo { display: inline-flex; align-items: center; color: var(--blue); }
.logo__svg { width: 110px; height: auto; display: block; }

/* ===== nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 35, 75, 0.06);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 14px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

.nav__links a { color: var(--blue); opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.nav__links a:hover { opacity: 1; color: var(--violet); }

.nav__cta {
  padding: 9px 18px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 999px;
  opacity: 1 !important;
  transition: background 0.25s, transform 0.25s;
}

.nav__cta:hover { background: var(--violet); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}

.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--violet); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(130, 31, 255, 0.3); }

.btn--ghost {
  color: var(--blue);
  border: 1.5px solid rgba(0, 35, 75, 0.25);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--blue);
  font-weight: 700;
}
.btn--gold:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 35, 75, 0.3); }

.btn--lg { padding: 20px 38px; font-size: 17px; }

.btn__arrow { transition: transform 0.25s; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ===== highlights ===== */
.hl {
  position: relative;
  white-space: nowrap;
  font-style: italic;
  font-weight: 800;
}

.hl--coral { color: var(--coral); }
.hl--violet { color: var(--violet); }
.hl--gold { color: var(--blue); }

.hl--gold::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 14px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.85;
  transform: skewX(-6deg);
}

/* ===== reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== section primitives ===== */
.section__eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin: 0 0 24px;
}

.section__eyebrow--light { color: rgba(255, 255, 255, 0.55); }

.section__title {
  font-family: "Archivo", "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 64px;
  max-width: 1100px;
  color: var(--blue);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5vh) clamp(20px, 5vw, 80px) 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__grad {
  position: absolute;
  inset: 0;
  background: var(--brand-grad);
  z-index: 0;
}

/* big blurry floating shapes */
.hero__shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.shape--violet { width: 30vw; height: 30vw; top: -5%; left: -5%; background: var(--violet); opacity: 0.35; }
.shape--coral  { width: 28vw; height: 28vw; bottom: -8%; right: -3%; background: var(--coral); opacity: 0.4; }
.shape--gold   { width: 18vw; height: 18vw; top: 18%; right: 8%; background: var(--gold); opacity: 0.5; }
.shape--blue   { width: 22vw; height: 22vw; bottom: 22%; left: 2%; background: var(--blue); opacity: 0.18; }

/* sharp dots */
.hero__dots { position: absolute; inset: 0; z-index: 2; pointer-events: none; will-change: transform; }

.dot-shape { position: absolute; border-radius: 50%; }
.dot-shape--1 { top: 14%; left: 10%; width: 12px; height: 12px; background: var(--violet); }
.dot-shape--2 { top: 22%; right: 16%; width: 8px; height: 8px; background: var(--coral); }
.dot-shape--3 { top: 70%; left: 18%; width: 14px; height: 14px; background: var(--gold); border-radius: 0; transform: rotate(45deg); }
.dot-shape--4 { bottom: 24%; right: 12%; width: 10px; height: 10px; background: var(--blue); }
.dot-shape--5 { top: 38%; right: 6%; width: 6px; height: 6px; background: var(--violet); }
.dot-shape--6 { top: 56%; left: 5%; width: 18px; height: 18px; background: transparent; border: 2px solid var(--blue); }

.hero__meta {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
  will-change: transform;
}

.hero__meta--tl { top: calc(var(--nav-h) + 22px); left: clamp(20px, 5vw, 80px); }
.hero__meta--tr { top: calc(var(--nav-h) + 22px); right: clamp(20px, 5vw, 80px); text-align: right; align-items: flex-end; }

.meta__label { opacity: 0.55; }
.meta__val { font-weight: 700; }

@media (max-width: 900px) { .hero__meta { display: none; } }

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  will-change: transform;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.rotator { position: relative; display: inline-block; min-width: 220px; text-align: left; }
.rotator__word { position: absolute; top: 0; left: 0; opacity: 0; transform: translateY(6px); transition: opacity 0.5s, transform 0.5s; }
.rotator__word.is-active { opacity: 1; transform: none; position: relative; }

.hero__logo {
  width: clamp(280px, 50vw, 620px);
  height: auto;
  color: var(--blue);
  margin: 0 auto 32px;
  display: block;
  opacity: 0;
  animation: heroLogoIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: none; }
}

.hero__title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__line {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero__line:nth-child(1) { animation-delay: 1s; }
.hero__line:nth-child(2) { animation-delay: 1.2s; }

.hero__tag {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 580px;
  color: var(--blue);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s forwards;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.6s forwards; }

.hero__scroll {
  position: absolute;
  bottom: calc(60px + 4vh);
  right: clamp(20px, 5vw, 80px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  animation: fadeUp 1s ease-out 1.8s forwards;
  will-change: transform;
}

.hero__scroll svg { animation: bob 1.8s ease-in-out infinite; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero__marquee, .email-marquee {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0, 35, 75, 0.92);
  backdrop-filter: blur(8px);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--white);
}

.marquee__track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: marquee 45s linear infinite; }
.marquee__track .sep { color: var(--gold); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== clientes ===== */
.clientes {
  padding: 10vh clamp(20px, 5vw, 80px);
  text-align: center;
  background: var(--white);
  position: relative;
}

.clientes .section__eyebrow { margin-bottom: 36px; }

.clientes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.client {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--blue);
  opacity: 0.45;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
  letter-spacing: -0.01em;
}

.client:hover { opacity: 1; transform: translateY(-2px); color: var(--violet); }

/* ===== about ===== */
.about {
  padding: 14vh clamp(20px, 5vw, 80px);
  background: var(--gray-light);
}

.about__inner { max-width: 1200px; margin: 0 auto; }

.about__title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 72px;
  max-width: 1000px;
  color: var(--blue);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 35, 75, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 35, 75, 0.08); }

.stat__num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.stat__label { font-family: "Manrope", sans-serif; font-size: 14px; color: var(--gray-text); line-height: 1.4; }
.flag { font-size: 18px; }

/* ===== productos ===== */
.productos {
  padding: 14vh clamp(20px, 5vw, 80px);
  background: var(--white);
}

.productos__inner { max-width: 1200px; margin: 0 auto; }

.productos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product {
  position: relative;
  padding: 32px 28px;
  background: var(--gray-light);
  border-radius: 18px;
  border: 1.5px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 50%; height: 70%;
  background: var(--accent);
  opacity: 0;
  border-radius: 50%;
  filter: blur(50px);
  transition: opacity 0.4s;
}

.product:hover { transform: translateY(-6px); border-color: var(--accent); background: var(--white); box-shadow: 0 24px 60px rgba(0, 35, 75, 0.1); }
.product:hover::before { opacity: 0.15; }
.product > * { position: relative; z-index: 1; }

.product__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  margin-bottom: 18px;
}

.product h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: var(--blue);
}

.product__sub { font-weight: 400; color: var(--gray-soft); }

.product p { font-family: "Manrope", sans-serif; font-size: 14.5px; color: var(--gray-text); margin: 0; line-height: 1.55; }

.product__arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  border: 1.5px solid currentColor;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.product:hover .product__arrow { background: var(--accent); color: var(--white); transform: translate(3px, -3px); }

/* ===== servicios ===== */
.servicios { padding: 14vh clamp(20px, 5vw, 80px); background: var(--gray-light); }
.servicios__inner { max-width: 1200px; margin: 0 auto; }

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service {
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 35, 75, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.service:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 40px rgba(0, 35, 75, 0.08); }

.service__icon { width: 44px; height: 44px; color: var(--accent); }
.service__icon svg { width: 100%; height: 100%; }

.service h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.service p { font-family: "Manrope", sans-serif; font-size: 14px; color: var(--gray-text); margin: 0; line-height: 1.5; }

/* ===== proceso ===== */
.proceso { padding: 14vh clamp(20px, 5vw, 80px); background: var(--white); }
.proceso__inner { max-width: 1200px; margin: 0 auto; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

.step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 35, 75, 0.12);
}

.step__num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--coral);
  flex-shrink: 0;
  min-width: 54px;
}

.step__body h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.step__sep { color: var(--gold); margin: 0 4px; }
.step__body p { font-family: "Manrope", sans-serif; font-size: 14.5px; color: var(--gray-text); margin: 0; line-height: 1.55; max-width: 420px; }

/* ===== portafolio ===== */
.portfolio {
  position: relative;
  background: var(--blue);
  color: var(--white);
  padding: 16vh clamp(20px, 5vw, 80px);
  overflow: hidden;
  text-align: center;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(circle, var(--violet) 0%, transparent 60%);
  opacity: 0.35;
  filter: blur(40px);
}

.portfolio::after {
  content: "";
  position: absolute;
  bottom: -15%; right: -10%;
  width: 45%; height: 60%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  opacity: 0.3;
  filter: blur(40px);
}

.portfolio__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.portfolio__title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--white);
}

.portfolio__title .hl--gold { color: var(--gold); }
.portfolio__title .hl--gold::after { display: none; }

.portfolio__sub {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 48px;
  line-height: 1.55;
  max-width: 640px;
}

.portfolio__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 48px;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.chip:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }

.chip--more {
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
  font-weight: 700;
}

.chip--more:hover { background: var(--gold); color: var(--blue); }

.portfolio__cta { display: flex; justify-content: center; }

/* ===== cta ===== */
.cta {
  position: relative;
  padding: 20vh clamp(20px, 5vw, 80px);
  text-align: center;
  overflow: hidden;
}

.cta__grad {
  position: absolute;
  inset: 0;
  background: var(--brand-grad);
  z-index: 0;
}

.cta__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.cta__title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  color: var(--blue);
}

/* ===== email marquee ===== */
.email-marquee {
  position: relative;
  background: var(--gold);
  padding: 22px 0;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--blue);
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.email-marquee .marquee__track--big { animation-duration: 28s; gap: 32px; }
.email-marquee .sep { color: var(--coral); }
.email-marquee .italic { font-style: italic; font-weight: 600; }

/* ===== footer ===== */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 14vh clamp(20px, 5vw, 80px) 6vh;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
}

.footer__col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}

.footer__col p { font-family: "Manrope", sans-serif; margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__col--cta { display: flex; align-items: flex-start; justify-content: flex-end; }

.footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

@media (max-width: 720px) {
  .footer__bottom { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
}

.footer__logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.footer__social a:hover { background: var(--gold); color: var(--blue); border-color: var(--gold); }

.footer__copy { font-family: "Manrope", sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.45); margin: 0; }

/* ===== v2: parallax bg layers ===== */
.clientes, .about, .productos, .servicios, .proceso, .portfolio, .cta { overflow: hidden; }
.clientes, .about, .productos, .servicios, .proceso { position: relative; }

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

.about__inner, .productos__inner, .servicios__inner, .proceso__inner, .portfolio__inner, .cta__inner { position: relative; z-index: 2; }
.clientes .section__eyebrow, .clientes__grid { position: relative; z-index: 2; }

/* soft float shapes (radial-gradient instead of blur for perf) */
.float-shape {
  position: absolute;
  border-radius: 50%;
  background-image: radial-gradient(circle, currentColor 0%, transparent 65%);
  color: var(--violet);
}

.fs--violet-sm  { width: 22vw; height: 22vw; color: var(--violet); opacity: 0.22; top: 8%;   left: -6%;  }
.fs--coral-sm   { width: 20vw; height: 20vw; color: var(--coral);  opacity: 0.2;  bottom: 0%; right: -5%; }
.fs--gold-tiny  { width: 12vw; height: 12vw; color: var(--gold);   opacity: 0.45; top: 30%;  right: 22%; }
.fs--gold-sm    { width: 18vw; height: 18vw; color: var(--gold);   opacity: 0.4;  top: 20%;  right: 8%;  }
.fs--coral-tiny { width: 10vw; height: 10vw; color: var(--coral);  opacity: 0.25; bottom: 18%; left: 10%; }
.fs--violet-md  { width: 30vw; height: 30vw; color: var(--violet); opacity: 0.22; top: -8%;  right: -10%; }
.fs--coral-md   { width: 28vw; height: 28vw; color: var(--coral);  opacity: 0.22; bottom: -10%; left: -8%; }
.fs--gold-md    { width: 22vw; height: 22vw; color: var(--gold);   opacity: 0.35; bottom: 10%; left: 12%; }
.fs--violet-lg  { width: 36vw; height: 36vw; color: var(--violet); opacity: 0.18; top: 25%;  right: -12%; }

/* hard-edge gold rotated square */
.fs--gold-sq {
  position: absolute;
  width: 28vw; height: 28vw;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 20px;
  top: 15%; right: 5%;
  transform: rotate(18deg);
}

/* huge background text */
.huge-bg-text {
  position: absolute;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.huge-bg-text--200 {
  top: 4%;
  right: -3%;
  font-size: clamp(10rem, 24vw, 20rem);
  color: var(--blue);
  opacity: 0.05;
}

.huge-bg-text--servicios {
  bottom: -6%;
  left: -3%;
  font-size: clamp(8rem, 18vw, 16rem);
  color: var(--blue);
  opacity: 0.045;
  font-style: italic;
}

.huge-bg-text--portfolio {
  top: 38%;
  left: -2%;
  font-size: clamp(10rem, 22vw, 20rem);
  color: var(--white);
  opacity: 0.05;
  font-style: italic;
}

/* huge process numbers as background */
.huge-num--bg {
  position: absolute;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(9rem, 20vw, 18rem);
  line-height: 0.85;
  color: var(--blue);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.huge-num--bg.huge-num--1 { top: 4%;  left: 3%;  }
.huge-num--bg.huge-num--2 { top: 28%; right: 4%; }
.huge-num--bg.huge-num--3 { bottom: 28%; left: 4%; }
.huge-num--bg.huge-num--4 { bottom: 4%;  right: 3%; }

/* logo watermark big */
.bg-watermark {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 90vw;
  max-width: 1400px;
  height: auto;
  color: var(--blue);
  opacity: 0.035;
  margin-left: -45vw;
  pointer-events: none;
  user-select: none;
}

/* ===== reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  [data-speed] { transform: none !important; }
  .hero__line, .hero__logo, .hero__meta, .hero__tag, .hero__actions, .hero__scroll, .hero__eyebrow { opacity: 1 !important; }
}
