/* =====================================================
   POLIGOM — Estilos principales
   Mantenimiento y reparación de correas transportadoras
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --azul:          #1B6EBF;
  --azul-osc:      #0D2E4F;
  --azul-medio:    #145A99;
  --dorado:        #F5A623;
  --dorado-osc:    #D4891A;
  --dorado-claro:  #FFBE4D;
  --gris-claro:    #F4F6F9;
  --gris-medio:    #8A96A3;
  --gris-oscuro:   #3D4A58;
  --blanco:        #FFFFFF;
  --negro:         #0A0E14;
  --texto:         #1C2329;
  --borde:         #E1E7EE;
  --sombra-sm:     0 2px 8px rgba(13, 46, 79, 0.06);
  --sombra-md:     0 8px 24px rgba(13, 46, 79, 0.10);
  --sombra-lg:     0 20px 48px rgba(13, 46, 79, 0.14);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:     1240px;
}

/* ── Reset & base ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(245, 166, 35, 0.35);
  color: var(--azul-osc);
}

/* ── Utilidades ────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dorado);
  color: var(--negro);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 2000;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

section[id] {
  scroll-margin-top: 90px;
}

/* ── TOPBAR ────────────────────────────────────────── */
.topbar {
  background: var(--azul-osc);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.topbar a:hover {
  color: var(--dorado);
}

.topbar .tc-items {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar .tc-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar svg {
  flex-shrink: 0;
}

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
  box-shadow: var(--sombra-sm);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(13, 46, 79, 0.12);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: height 0.35s ease;
}

.navbar.scrolled .nav-inner {
  height: 64px;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.35s ease, transform 0.3s ease;
}

.navbar.scrolled .nav-logo img {
  height: 44px;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  justify-self: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto);
  letter-spacing: 0.01em;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--azul);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--azul);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--blanco);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.nav-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-icon-wa::before {
  background: rgba(37, 211, 102, 0.2);
}

.nav-icon-maps::before {
  background: rgba(27, 110, 191, 0.2);
}

.nav-icon:hover::before {
  opacity: 1;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.nav-icon:hover svg {
  transform: scale(1.1);
}

.nav-icon-wa {
  background: #25D366;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.32);
}

.nav-icon-wa:hover {
  background: #128C7E;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.nav-icon-maps {
  background: var(--azul);
  box-shadow: 0 3px 10px rgba(27, 110, 191, 0.32);
}

.nav-icon-maps:hover {
  background: var(--azul-osc);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(27, 110, 191, 0.45);
}

.nav-cta {
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-osc) 100%);
  background-size: 200% 200%;
  color: var(--negro);
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
  margin-left: 6px;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
  animation: gradientShift 2s ease infinite;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.nav-cta:hover::after {
  left: 150%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--gris-claro);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--texto);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-image: url('/img/hero-rodillos.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.32) saturate(1.1);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13, 46, 79, 0.92) 0%,
    rgba(13, 46, 79, 0.78) 45%,
    rgba(27, 110, 191, 0.35) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(27, 110, 191, 0.22) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 28px 100px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: var(--dorado-claro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeUp 0.6s ease 0.2s both, pulseGlow 2s ease-in-out 1s infinite;
}

.hero-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--dorado);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  color: var(--blanco);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  font-style: normal;
  color: var(--dorado);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(245, 166, 35, 0.35);
  border-radius: 2px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

/* Destello que avanza letra por letra */
.hero h1 .shimmer-char {
  display: inline-block;
  animation: shimmerChar 2.4s ease-in-out infinite;
  animation-delay: calc(0.8s + var(--i) * 0.07s);
}

@keyframes shimmerChar {
  0%, 100% {
    text-shadow: none;
    filter: none;
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 0 18px rgba(245, 166, 35, 0.55),
      0 0 32px rgba(245, 166, 35, 0.25);
    filter: brightness(1.25);
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-osc) 100%);
  background-size: 200% 200%;
  color: var(--negro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 6px 22px rgba(245, 166, 35, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5);
  animation: gradientShift 2s ease infinite;
}

.btn-primary::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--blanco);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease, background 0.3s ease,
              box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--blanco);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-stat {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--dorado);
  transition: transform 0.3s ease;
}

.hero-stat:hover {
  transform: translateX(4px);
}

.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dorado);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounceSoft 2s ease-in-out infinite;
}

.hero-scroll span {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--dorado);
  border-radius: 2px;
  animation: float 1.5s ease-in-out infinite;
}

/* ── TRUST STRIP ───────────────────────────────────── */
.trust-strip {
  background: var(--azul-osc);
  padding: 28px 28px;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.08), transparent 40%, rgba(245, 166, 35, 0.05));
  pointer-events: none;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background 0.3s ease, transform 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.trust-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-item:hover .trust-icon {
  background: var(--dorado);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--dorado);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.trust-item:hover .trust-icon svg {
  fill: var(--negro);
  transform: scale(1.15);
}

/* ── SECCIÓN GENÉRICA ──────────────────────────────── */
.section {
  padding: 110px 28px;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-bg {
  background: var(--gris-claro);
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(27, 110, 191, 0.04) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.04) 0%, transparent 30%);
  pointer-events: none;
}

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2.5px;
  background: var(--dorado);
  flex-shrink: 0;
  border-radius: 2px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--azul-osc);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gris-medio);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
}

/* ── NOSOTROS ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}

.about-img-wrap:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
  box-shadow: 0 30px 60px rgba(13, 46, 79, 0.18);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-img-wrap:hover::after {
  opacity: 1;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrap:hover img {
  transform: scale(1.06);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-osc) 100%);
  color: var(--negro);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--sombra-lg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.about-badge .b-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .b-txt {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gris-oscuro);
  margin-bottom: 24px;
}

.about-content p:last-of-type {
  margin-bottom: 36px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(27, 110, 191, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 110, 191, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.pillar:hover {
  background: rgba(27, 110, 191, 0.08);
  border-color: rgba(27, 110, 191, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(27, 110, 191, 0.12);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  background: rgba(27, 110, 191, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}

.pillar:hover .pillar-icon {
  background: var(--azul);
  transform: scale(1.1) rotate(-5deg);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--azul);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.pillar:hover .pillar-icon svg {
  fill: var(--blanco);
  transform: scale(1.15);
}

.pillar-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--azul-osc);
  margin-bottom: 4px;
}

.pillar-text span {
  font-size: 0.84rem;
  color: var(--gris-medio);
  line-height: 1.5;
}

/* ── SERVICIOS ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-md);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.3s ease;
  border: 1px solid var(--borde);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--dorado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(13, 46, 79, 0.14);
  border-color: rgba(27, 110, 191, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-imgs {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-imgs img.active {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover .service-imgs img.active {
  transform: scale(1.08);
}

.service-img-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.service-card:hover .service-img-nav {
  background: rgba(0, 0, 0, 0.4);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.3);
}

.dot.active {
  background: var(--dorado);
  width: 24px;
  border-radius: 4px;
}

.service-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--azul-osc);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.service-card:hover .service-body h3 {
  color: var(--azul);
}

.service-body p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gris-oscuro);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--texto);
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
  transform: translateX(4px);
}

.service-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-medio) 100%);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 3px 8px rgba(27, 110, 191, 0.25);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-osc) 100%);
  color: var(--negro);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
  position: relative;
  overflow: hidden;
}

.service-cta:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.45);
}

.service-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.service-cta:hover svg {
  transform: translateX(4px);
}

/* ── PROCESO ───────────────────────────────────────── */
.process-section {
  background: var(--azul-osc);
  padding: 110px 28px;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(27, 110, 191, 0.2) 0%, transparent 40%);
  pointer-events: none;
  animation: gradientShift 20s ease infinite;
  background-size: 200% 200%;
}

.process-section .eyebrow {
  color: var(--dorado);
}

.process-section .eyebrow::before {
  background: rgba(255, 255, 255, 0.3);
}

.process-section .section-title {
  color: var(--blanco);
}

.process-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-line {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.process-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--dorado), rgba(245, 166, 35, 0.4));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-steps.in .process-line-progress {
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-steps.in .step {
  opacity: 1;
  transform: translateY(0);
}

.process-steps.in .step:nth-child(1) { transition-delay: 0.1s; }
.process-steps.in .step:nth-child(2) { transition-delay: 0.25s; }
.process-steps.in .step:nth-child(3) { transition-delay: 0.4s; }
.process-steps.in .step:nth-child(4) { transition-delay: 0.55s; }

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.step:hover .step-circle {
  background: var(--dorado);
  border-color: var(--dorado);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.4);
}

.step-circle svg {
  width: 26px;
  height: 26px;
  fill: var(--dorado);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.step:hover .step-circle svg {
  fill: var(--negro);
  transform: scale(1.15);
}

.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blanco);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-osc) 100%);
  padding: 72px 28px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--negro);
  line-height: 1.05;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
  max-width: 520px;
}

.btn-dark {
  background: var(--negro);
  color: var(--blanco);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.btn-dark:hover {
  background: var(--azul-osc);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-dark::after {
  content: '→';
  transition: var(--transition);
}

.btn-dark:hover::after {
  transform: translateX(4px);
}

/* ── CONTACTO ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-oscuro);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: rgba(27, 110, 191, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 110, 191, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.contact-item:hover {
  background: rgba(27, 110, 191, 0.08);
  border-color: rgba(27, 110, 191, 0.18);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(27, 110, 191, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(27, 110, 191, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--azul);
  transform: scale(1.1) rotate(-5deg);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--azul);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.contact-item:hover .contact-icon svg {
  fill: var(--blanco);
  transform: scale(1.15);
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gris-medio);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  font-size: 1rem;
  color: var(--texto);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--azul);
}

/* Formulario */
.contact-form {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--sombra-lg);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--azul), var(--dorado));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--azul-osc);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--azul-osc);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--borde);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
              transform 0.3s ease, background 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(27, 110, 191, 0.12);
  transform: translateY(-2px);
  background: var(--blanco);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gris-medio);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gris-medio);
  transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: var(--gris-medio);
}

.form-group input:valid:not(:placeholder-shown):not(:focus),
.form-group textarea:valid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(37, 211, 102, 0.4);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(231, 76, 60, 0.4);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-medio) 100%);
  background-size: 200% 200%;
  color: var(--blanco);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(27, 110, 191, 0.35);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27, 110, 191, 0.5);
  animation: gradientShift 2s ease infinite;
}

.form-submit:active {
  transform: translateY(-1px);
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.form-submit:hover::after {
  left: 150%;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gris-medio);
  text-align: center;
  margin-top: 14px;
}

#formSuccess {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(27, 110, 191, 0.08);
  border: 1px solid rgba(27, 110, 191, 0.2);
  border-radius: var(--radius-sm);
  color: var(--azul-osc);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--borde);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blanco);
  box-shadow: var(--sombra-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.faq-item.open {
  border-color: rgba(27, 110, 191, 0.25);
  box-shadow: 0 8px 24px rgba(27, 110, 191, 0.1);
}

.faq-q {
  width: 100%;
  background: var(--blanco);
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto);
  text-align: left;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-q:hover {
  background: var(--gris-claro);
}

.faq-item.open .faq-q {
  background: rgba(27, 110, 191, 0.04);
  color: var(--azul-osc);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  fill: none;
  stroke: var(--azul);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--blanco);
}

.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gris-oscuro);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.faq-item.open .faq-a-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHATSAPP FLOAT ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: white;
  transition: transform 0.3s ease;
}

.wa-float:hover svg {
  transform: scale(1.1);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--negro);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 28px 28px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--dorado));
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius-md);
  filter: grayscale(30%) contrast(1.05);
  display: block;
  margin-top: 6px;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-map-link:hover {
  color: var(--dorado);
}

.footer-map-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 18px;
  filter: brightness(10) saturate(0);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-brand img:hover {
  opacity: 1;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dorado);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dorado);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--blanco);
  transform: translateX(4px);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--dorado);
}

/* ── MOBILE NAV ────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: var(--blanco);
  z-index: 998;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(13, 46, 79, 0.22);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--borde);
}

.mobile-logo img {
  height: 48px;
  width: auto;
}

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gris-claro);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.mobile-close:hover {
  background: var(--borde);
}

.mobile-close span {
  position: absolute;
  width: 20px;
  height: 2.5px;
  background: var(--texto);
  border-radius: 2px;
}

.mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--texto);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
  background: var(--gris-claro);
  color: var(--azul);
}

.mobile-menu-nav a svg {
  color: var(--gris-medio);
  transition: var(--transition);
}

.mobile-menu-nav a:hover svg {
  color: var(--azul);
  transform: translateX(3px);
}

.mobile-menu-actions {
  padding: 22px 24px 28px;
  border-top: 1px solid var(--borde);
  background: linear-gradient(to top, rgba(244, 246, 249, 0.6), transparent);
}

.m-cta {
  display: block;
  text-align: center;
  background: var(--dorado);
  color: var(--negro);
  font-weight: 800;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.m-cta:hover {
  background: var(--dorado-osc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.m-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.m-wa,
.m-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 13px 10px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}

.m-wa svg,
.m-maps svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.m-wa {
  background: #25D366;
  color: var(--blanco);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.m-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.m-maps {
  background: var(--azul);
  color: var(--blanco);
  box-shadow: 0 4px 14px rgba(27, 110, 191, 0.35);
}

.m-maps:hover {
  background: var(--azul-osc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 110, 191, 0.5);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 56px;
  }

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

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

  .nav-actions {
    gap: 8px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap img {
    height: 340px;
  }

  .about-badge {
    bottom: -18px;
    right: 18px;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-line {
    display: none;
  }

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

@media (max-width: 640px) {
  .topbar {
    font-size: 0.75rem;
    padding: 8px 0;
  }

  .topbar .inner > .tc-items:first-child {
    display: none;
  }

  .topbar .tc-items {
    gap: 14px;
  }

  .nav-inner {
    padding: 0 20px;
    height: 68px;
  }

  .mobile-menu {
    width: min(340px, 92vw);
  }

  .mobile-menu-header,
  .mobile-menu-nav,
  .mobile-menu-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-menu-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stat {
    padding-left: 14px;
  }

  .hero-stat .num {
    font-size: 2.2rem;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .trust-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 80px 20px;
  }

  .section-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .about-img-wrap img {
    height: 280px;
  }

  .about-badge {
    padding: 18px 22px;
    right: 12px;
    bottom: -16px;
  }

  .about-badge .b-num {
    font-size: 2.4rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 24px;
  }

  .service-imgs {
    height: 220px;
  }

  .service-body {
    padding: 24px;
  }

  .service-body h3 {
    font-size: 1.4rem;
  }

  .process-section {
    padding: 80px 20px;
  }

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

  .cta-banner {
    padding: 56px 20px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px 22px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col ul li a:hover {
    transform: none;
  }

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

  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    padding: 22px 20px;
  }

  .trust-item {
    padding: 12px;
  }

  .about-badge {
    right: 8px;
    bottom: -12px;
    padding: 14px 18px;
  }

  .about-badge .b-num {
    font-size: 2rem;
  }

  .service-imgs {
    height: 200px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .service-body {
    padding: 20px;
  }

  .service-body h3 {
    font-size: 1.25rem;
  }

  .faq-q {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-a-inner {
    padding: 0 20px 20px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .cta-text h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

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

/* ── GLOBAL EFFECTS & ACCESSIBILITY ────────────────── */
:focus-visible {
  outline: 3px solid var(--azul);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(245, 166, 35, 0.35);
  color: var(--azul-osc);
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img.loaded,
img[loading="eager"] {
  opacity: 1;
}

/* Magnetic / lift hover utility */
.lift {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}

.lift:hover {
  transform: translateY(-6px);
}

/* Shine effect for buttons */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.shine:hover::before {
  left: 150%;
}

/* Reveal directions */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.in,
.reveal-right.in,
.reveal-scale.in {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fd1 { animation-delay: 0.1s; }
.fd2 { animation-delay: 0.25s; }
.fd3 { animation-delay: 0.4s; }
.fd4 { animation-delay: 0.55s; }

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes draw {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bounceSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
  }

  .mobile-menu.open {
    animation: none;
  }

  .hero-bg,
  .hero::before {
    animation: none;
  }

  .hero h1 .shimmer-char {
    animation: none;
    filter: none;
    text-shadow: none;
  }
}
