/* ===================================================================
   FPI — Fabricantes Para Industrias
   style.css — Tokens de diseño, base y componentes principales
   =================================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* ---------- TOKENS ---------- */
:root {
  /* Paleta — identidad azul FPI, refinada */
  --ink:          #0A1424;   /* texto principal / fondo oscuro profundo */
  --navy:         #0F2657;   /* azul marca profundo */
  --blue:         #2455C9;   /* azul medio — acciones */
  --blue-light:   #5C90F2;   /* azul claro — acentos sobre oscuro */
  --steel:        #93A1C0;   /* azul-gris — texto secundario sobre oscuro */
  --paper:        #FAFBFC;   /* fondo casi blanco */
  --paper-dim:    #F1F3F8;   /* fondo gris muy claro, secciones alternas */
  --line:         #E2E6EE;   /* líneas divisorias */
  --line-dark:    rgba(255,255,255,0.12);
  --graphite:     #5A6579;   /* texto secundario sobre claro */
  --white:        #FFFFFF;

  /* Tipografía */
  --font-hero:    'Barlow Condensed', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Ritmo / espaciado */
  --edge: clamp(24px, 5vw, 96px);
  --section-y: clamp(44px, 6vw, 80px);
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  /* Transiciones */
  --ease: cubic-bezier(.22,.61,.36,1);
  --fast: 0.22s;
  --med: 0.45s;
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--edge);
}

section { padding-block: var(--section-y); position: relative; }

/* ---------- TIPOGRAFÍA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-feature-settings: "kern" 1, "liga" 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--navy);
  letter-spacing: -0.025em;
}
.section-title--onDark { color: var(--white); }
.section-lede {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--graphite);
  max-width: 640px;
}

/* Marca tipográfica de "esquina técnica" — motivo recurrente inspirado en
   marcas de recorte de planos industriales. Usada con moderación. */
.crop-corners { position: relative; }
.crop-corners::before,
.crop-corners::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.crop-corners::before {
  top: -1px; left: -1px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}
.crop-corners::after {
  bottom: -1px; right: -1px;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-s);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease),
              border-color var(--fast) var(--ease), color var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(10,20,40,0.08);
}
.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,38,87,0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--icon svg { width: 16px; height: 16px; transition: transform var(--fast) var(--ease); }
.btn--icon:hover svg { transform: translateX(3px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--edge);
  height: 76px;
  background: transparent;
  transition: background var(--med) var(--ease), height var(--med) var(--ease),
              box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(10,20,36,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(5,10,20,0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--steel);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-block: 6px;
  transition: color var(--fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--blue-light);
  transition: right var(--med) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-links a.is-active { color: var(--white); }
.nav-links a.is-active::after { right: 0; background: var(--blue-light); }

.nav-cta { display: none; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease), top var(--fast) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- HERO — imagen real de fondo ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Capa de imagen */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Overlay gradiente: oscuro fuerte a la izquierda para legibilidad,
   más transparente a la derecha para ver la máquina */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 16, 30, 0.88) 0%,
    rgba(8, 16, 30, 0.78) 42%,
    rgba(8, 16, 30, 0.45) 72%,
    rgba(8, 16, 30, 0.15) 100%
  );
}

/* Grilla blueprint encima de la imagen (decorativa) */
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 55% 80% at 20% 50%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 55% 80% at 20% 50%, black 10%, transparent 70%);
  pointer-events: none;
}

/* Resplandor azul sutil (izquierda) */
.hero-glow {
  position: absolute; z-index: 1;
  top: 20%; left: -4%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(36,85,201,0.28), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

/* Contenedor del texto */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: var(--edge);
}

.hero-text { max-width: 560px; }

.hero-title {
  margin-top: 1rem;
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(1.44rem, 2.72vw, 2.32rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-accent {
  color: var(--blue-light);
  display: block;
}

.hero-eyebrow-anim {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,215,240,0.85);
}
.hero-eyebrow-anim::before { background: rgba(200,215,240,0.5); }

.hero-sub {
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(184, 200, 224, 0.88);
  max-width: 440px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}

.hero-cta {
  margin-top: 0.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 34px; left: var(--edge);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.scroll-cue-line {
  width: 32px; height: 1px;
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-light);
  animation: scrollcue 2.2s ease-in-out infinite;
}

/* ---------- SOBRE NOSOTROS ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  background: linear-gradient(155deg, var(--navy), var(--ink) 70%);
  overflow: hidden;
  isolation: isolate;
}
.about-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}

.about-body p { font-size: 1.02rem; line-height: 1.8; color: var(--graphite); }
.about-body p + p { margin-top: 1.15rem; }

.pillars {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.pillar-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-s);
  background: rgba(36,85,201,0.08);
  color: var(--blue);
}
.pillar-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.pillar-desc { font-size: 0.86rem; line-height: 1.55; color: var(--graphite); }

/* ---------- SERVICIOS ---------- */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  padding: 2.2rem 2rem 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background var(--fast) var(--ease), box-shadow var(--fast) var(--ease), transform var(--fast) var(--ease);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.service-card:hover { background: var(--paper-dim); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.service-num-line {
  width: 28px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 1.2rem;
}

.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--blue);
  opacity: 0.75;
}

/* ---------- FRANJA CRECEMOS ---------- */
.grow {
  background: var(--navy);
  background-image: linear-gradient(155deg, var(--navy) 0%, #0C1D48 100%);
  overflow: hidden;
  position: relative;
}
.grow-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px,
    transparent 1px, transparent 20px
  );
  pointer-events: none;
}
.grow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.grow-title {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--white);
}
.grow-title span { color: var(--blue-light); display: block; }
.grow-body {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

/* Imagen lado derecho */
.grow-img-wrap {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(5,12,30,0.6);
}

/* Slider de imágenes */
.grow-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.grow-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  filter: brightness(0.75) saturate(0.8);
}
.grow-slide.active {
  opacity: 1;
}
/* Overlay azul sobre la imagen */
.grow-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 38, 87, 0.55) 0%,
    rgba(36, 85, 201, 0.35) 50%,
    rgba(15, 38, 87, 0.6) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}
.grow-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(92,144,242,0.35);
  pointer-events: none;
  z-index: 2;
}

/* Badge flotante sobre la imagen */
.grow-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,20,40,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(92,144,242,0.3);
  border-radius: var(--radius-m);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.grow-img-badge-num {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--blue-light);
  line-height: 1;
}
.grow-img-badge-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}

/* ---------- CONTACTO ---------- */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-intro { font-size: 1rem; line-height: 1.75; color: var(--graphite); margin-bottom: 2.2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-of-type { border-top: 1px solid var(--line); }

.contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-s);
  background: rgba(36,85,201,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.contact-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.contact-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-value { margin-top: 0.2rem; font-size: 0.98rem; color: var(--ink); }
.contact-value a { text-decoration: none; transition: color var(--fast) var(--ease); }
.contact-value a:hover { color: var(--blue); }

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.field .req { color: var(--blue); }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--paper-dim);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
  appearance: none;
}
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-error {
  font-size: 0.78rem;
  color: #C0362C;
  min-height: 1em;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #C0362C; }

.form-submit {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn--submit { position: relative; min-width: 190px; justify-content: center; }
.btn--submit .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn--submit.is-loading .spinner { display: inline-block; }
.btn--submit.is-loading .btn-label { opacity: 0.85; }
.btn--submit:disabled { cursor: not-allowed; opacity: 0.85; }

.form-msg {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-s);
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.form-msg.is-visible { display: flex; }
.form-msg--ok { background: rgba(30,140,90,0.1); color: #1B7A4F; }
.form-msg--err { background: rgba(192,54,44,0.1); color: #C0362C; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--white);
}
.footer-links { display: flex; gap: 1.8rem; list-style: none; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--steel);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-block: 2rem;
}

/* ---------- WHATSAPP FLOTANTE — azul FPI ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 150;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(92,144,242,0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(15,38,87,0.45);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease),
              background var(--fast) var(--ease);
}
.wa-float svg { width: 27px; height: 27px; fill: var(--white); }
.wa-float:hover {
  background: var(--blue);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(36,85,201,0.55);
  border-color: rgba(92,144,242,0.6);
}

/* ---------- SKIP LINK / ACCESIBILIDAD ---------- */
.skip-link {
  position: absolute;
  left: -999px; top: auto;
  background: var(--blue); color: var(--white);
  padding: 0.8rem 1.2rem; z-index: 999;
  border-radius: var(--radius-s);
}
.skip-link:focus { left: var(--edge); top: 12px; }

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ---------- SOBRE NOSOTROS — layout 2 columnas (texto | pilares) ---------- */
.about-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-content2 {}

.about-pillars2 {
  display: flex;
  flex-direction: column;
}

.pillar2 {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.pillar2:first-child { border-top: 1px solid var(--line); }

.pillar2-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(36,85,201,0.3);
}
.pillar2-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.pillar2-body {}

.pillar2-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.pillar2-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--graphite);
}

/* ---------- GROW VIDEO ---------- */
.grow-video-wrap {
  margin-top: 3rem;
}

/* Fila lado a lado, cada video ocupa ~46% del ancho */
.grow-videos-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.grow-video-item {
  flex: 0 0 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
}

.grow-video-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.7rem;
}

.grow-video-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.grow-video-container {
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  aspect-ratio: 16/9;
  background: #000;
}

.grow-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.grow-video-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0.8;
  pointer-events: none;
}

/* Mobile: apilar verticalmente */
@media (max-width: 600px) {
  .grow-videos-row {
    flex-direction: column;
  }
  .grow-video-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


