/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INORGE SAC — Estilos Principales
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Fuentes  : Barlow 300/400/500/600/700
              Barlow Condensed 500/600/700
   Paleta   :
     --azul     #0B3A66  Azul Acero (primario)
     --rojo     #B4231C  Rojo PCI   (acento crÃ­tico)
     --ink      #0A1628  Headings
     --body     #374151  Texto cuerpo
     --muted    #6B7280  Texto secundario
     --bg       #FAFAFA  Fondo principal
     --bg-alt   #F0F5FA  Fondo secciones alternas
     --border   #E2E8F0  Bordes / lÃ­neas
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --azul:      #0B3A66;
  --azul-2:    #1A5FA3;
  --azul-bg:   #EBF3FB;
  --rojo:      #B4231C;
  --rojo-2:    #D42B23;
  --ink:       #0A1628;
  --body:      #374151;
  --muted:     #6B7280;
  --bg:        #FAFAFA;
  --bg-alt:    #F0F5FA;
  --white:     #FFFFFF;
  --border:    #E2E8F0;
  --shadow-sm: rgba(10,22,40,0.06);
  --shadow:    rgba(10,22,40,0.10);
  --shadow-md: rgba(10,22,40,0.16);
  --sans:      "Barlow", Helvetica, Arial, sans-serif;
  --cond:      "Barlow Condensed", Helvetica, Arial, sans-serif;
  --radius:    8px;
  --radius-lg: 14px;
  --nav-h:     72px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; padding: 0; }

/* â”€â”€ LAYOUT HELPERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.section-pad { padding: clamp(64px, 9vw, 108px) 0; }

/* â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.active        { opacity: 1; transform: translateY(0); }
.delay-1              { transition-delay: 80ms;  }
.delay-2              { transition-delay: 160ms; }
.delay-3              { transition-delay: 240ms; }
.delay-4              { transition-delay: 320ms; }
.delay-5              { transition-delay: 400ms; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COOKIE BANNER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9500;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
#cookie-banner.hidden {
  transform: translateX(-50%) translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0;
  flex: 1;
  min-width: 240px;
}
#cookie-banner a { color: #67b8e8; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-ok {
  padding: 9px 20px;
  background: var(--azul);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-cookie-ok:hover { background: var(--azul-2); }
.btn-cookie-no {
  padding: 9px 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-cookie-no:hover { background: rgba(255,255,255,0.18); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHATSAPP BUTTON
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease);
  animation: wa-pulse 2.8s infinite;
}
#whatsapp-btn:hover { transform: scale(1.1); }
#whatsapp-btn svg   { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
#navbar.nav-top      { background: transparent; }
#navbar.nav-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px var(--shadow-sm);
}
.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
/* Logo */
.nav-logo img {
  height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--azul);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover         { color: var(--azul); }
.nav-links a:hover::after  { width: 100%; }

/* Nav sobre fondo claro del hero â†’ links oscuros normales */
#navbar.nav-top .nav-links a { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Selector de idioma (Dropdown) */
.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: var(--cond);
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  font-family: inherit;
  line-height: 1;
}

.lang-btn:hover {
  opacity: 0.75;
}

.lang-btn .fi,
.lang-menu a .fi {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.lang-btn .arrow {
  font-size: 9px;
  color: var(--muted);
  transition: transform 0.2s;
}

.lang-dropdown:hover .lang-btn .arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 56px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 100;
  border: 1px solid var(--border);
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 5px);
}

.lang-menu a {
  padding: 7px 10px;
  color: var(--body);
  font-size: 20px;
  text-decoration: none;
  font-family: var(--cond);
  font-weight: 500;
  transition: background 0.2s;
  text-align: center;
  line-height: 1;
  display: block;
}

.lang-menu a.active {
  background: rgba(33, 82, 163, 0.07);
}

.lang-menu a:hover {
  background: var(--bg-alt);
}

.btn-nav-aula {
  padding: 9px 22px;
  background: var(--azul-2);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-nav-aula:hover {
  background: var(--azul);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11,58,102,0.28);
}

.btn-nav-cta {
  padding: 9px 22px;
  background: var(--rojo);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.btn-nav-cta:hover {
  background: var(--rojo-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(180,35,28,0.35);
}
/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.nav-burger span {
  display: block; width: 23px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.nav-mobile.open  { display: flex; }
.nav-mobile a {
  font-family: var(--cond);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--azul); }
.nav-mobile-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #FFFFFF 0%, #F4F8FD 60%, #EBF3FB 100%);
}
/* Fondo geomÃ©trico SVG sutil */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}
.hero-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul) 0%, var(--azul-2) 60%, var(--rojo) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
/* Badge superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 14px 5px 8px;
  border: 1px solid rgba(11,58,102,0.18);
  border-radius: 100px;
  background: rgba(11,58,102,0.05);
  margin-bottom: 1.4rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--azul);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero-badge span {
  font-family: var(--cond);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--azul);
}
.hero h1 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--azul); }
.hero h1 .accent-rojo { color: var(--rojo); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
/* Stats row */
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.hstat-num {
  font-family: var(--cond);
  font-size: 2rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
  display: block;
}
.hstat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 3px;
}
/* Imagen hero */
.hero-img-col { position: relative; }
.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Adornos de esquina */
.hero-img-col::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 52px; height: 52px;
  border-top: 3px solid var(--azul);
  border-right: 3px solid var(--azul);
  border-radius: 0 var(--radius) 0 0;
  z-index: 2;
}
.hero-img-col::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -14px;
  width: 52px; height: 52px;
  border-bottom: 3px solid var(--rojo);
  border-left: 3px solid var(--rojo);
  border-radius: 0 0 0 var(--radius);
  z-index: 2;
}
/* Card flotante sobre imagen */
.hero-badge-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 8px 30px var(--shadow);
  min-width: 160px;
}
.hero-badge-card strong {
  font-family: var(--cond);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--azul);
  display: block;
  line-height: 1;
}
.hero-badge-card span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NORMAS â€” TICKER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ticker-bar {
  background: var(--ink);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 2rem;
  white-space: nowrap;
}
.ticker-item span {
  font-family: var(--cond);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ticker-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--azul-2);
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION HELPERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sec-label {
  font-family: var(--cond);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--azul);
}
.sec-title {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem;
}
.sec-title em { font-style: normal; color: var(--azul); }
.sec-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body);
  max-width: 560px;
}

/* BOTONES GLOBALES */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--rojo);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--rojo-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180,35,28,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: none;
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  background: var(--azul);
}
.btn-secondary:hover {
  background: var(--azul-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,58,102,0.28);
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOBRE INORGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-features { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 14px; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}
.about-feat-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--azul);
  margin-top: 2px;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-stats-overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.astat {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
}
.astat strong {
  font-family: var(--cond);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--azul);
  display: block; line-height: 1;
}
.astat span {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIVISIONES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.divisions-section { background: var(--bg-alt); }
.divisions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.div-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.div-card:hover {
  border-top-color: var(--azul);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px var(--shadow);
}
.div-card.pci:hover { border-top-color: var(--rojo); }
.div-icon {
  width: 46px; height: 46px;
  background: var(--azul-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 22px;
  color: var(--azul);
  transition: background 0.3s, color 0.3s;
}
.div-card.pci .div-icon { background: rgba(180,35,28,0.08); color: var(--rojo); }
.div-card h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.div-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.div-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}
.tag {
  font-family: var(--cond);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: var(--azul-bg);
  color: var(--azul);
  border-radius: 4px;
}
.div-card.pci .tag { background: rgba(180,35,28,0.08); color: var(--rojo); }
.div-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.div-card.pci .div-link { color: var(--rojo); }
.div-link:hover { gap: 10px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POR QUÃ‰ INORGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.why-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  border-color: rgba(11,58,102,0.3);
  box-shadow: 0 4px 18px var(--shadow-sm);
}
.why-card-icon {
  width: 40px; height: 40px;
  background: var(--azul-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul);
  font-size: 19px;
  margin-bottom: 1rem;
}
.why-card h4 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.why-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROYECTOS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.projects-section { background: var(--bg-alt); }
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.proj-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-md);
}
.proj-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.proj-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.proj-card:hover .proj-img img { transform: scale(1.06); }
.proj-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--azul);
  color: #fff;
  font-family: var(--cond);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
}
.proj-tag.rojo { background: var(--rojo); }
.proj-info { padding: 1.4rem 1.6rem; }
.proj-info h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.proj-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.proj-meta span { display: flex; align-items: center; gap: 4px; }
.proj-info .div-tags { margin-top: 10px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ESTÃNDARES / CERTIFICACIONES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.certs-section {
  background: var(--azul);
  padding: clamp(36px, 5vw, 56px) 0;
}
.certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
.certs-label {
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}
.certs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}
.cert-badge {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.cert-badge:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.certs-logos-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
}
.cert-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  /* Convierte la imagen a blanco y le da opacidad */
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.cert-logo-img:hover {
  /* Vuelve a su color original y quita la opacidad */
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.05);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACTO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.contact-info-items { margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--azul-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul);
  font-size: 17px;
  flex-shrink: 0;
}
.contact-item-text strong {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 15px;
  color: var(--body);
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--azul); }

.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--cond);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(11,58,102,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--rojo);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--rojo-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180,35,28,0.32);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.form-note a { color: var(--azul); text-decoration: underline; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: clamp(56px, 8vw, 90px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-brand-logo { height: 80px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 230px;
  margin: 0 0 1.4rem;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--azul); color: #fff; }
.footer-col h5 {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-policies { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-policies a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-policies a:hover { color: rgba(255,255,255,0.75); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PÃGINAS DE POLÃTICA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.policy-hero {
  background: linear-gradient(140deg, #FFFFFF 0%, #F4F8FD 100%);
  padding: calc(var(--nav-h) + 50px) 0 50px;
  border-bottom: 1px solid var(--border);
}
.policy-hero h1 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
}
.policy-hero p { font-size: 14px; color: var(--muted); margin: 0; }
.policy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px clamp(1.5rem, 5vw, 4rem) 100px;
}
.policy-body h2 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-body p  { font-size: 15px; line-height: 1.8; color: var(--body); margin: 0 0 1rem; font-weight: 300; }
.policy-body ul { list-style: disc; padding-left: 20px; margin: 0 0 1rem; }
.policy-body li { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 5px; font-weight: 300; }
.policy-body strong { font-weight: 600; color: var(--ink); }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 2rem;
  transition: gap 0.2s;
}
.policy-back:hover { gap: 11px; }

/* ══════════════════════════════════════════════════════
   CLIENTES SATISFECHOS — Carrusel
   ══════════════════════════════════════════════════════ */
.clientes-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Máscara en los bordes para un efecto de fundido (fade) suave */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.carousel-track {
  display: flex;
  width: max-content;
}
.carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4rem, 8vw, 6rem);
  padding-right: clamp(4rem, 8vw, 6rem);
  animation: scrollCarousel 30s linear infinite;
}
.carousel-track:hover .carousel-slide {
  animation-play-state: paused; /* Se detiene al pasar el puntero */
}
.carousel-logo {
  flex-shrink: 0;
  width: clamp(120px, 12vw, 160px); /* Tamaño óptimo para que no se vean gigantes ni amontonados */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.carousel-logo img {
  max-width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  /* Inicialmente opaco (escala de grises y semi-transparente) */
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.carousel-logo:hover img {
  /* A color cuando se pasa el cursor */
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .why-inner        { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-img-col     { display: none; }
  .about-inner      { grid-template-columns: 1fr; }
  .about-img-wrap   { display: none; }
  .divisions-grid   { grid-template-columns: 1fr 1fr; }
  .projects-grid    { grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .nav-links, .nav-right { display: none; }
  .nav-burger       { display: flex; }
  .hero-badge-card  { display: none; }
  .certs-label      { border-right: none; padding-right: 0; }
}
@media (max-width: 540px) {
  .divisions-grid   { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  #cookie-banner    { bottom: 0; border-radius: 0; width: 100%; left: 0; transform: translateX(0); }
  #cookie-banner.hidden { transform: translateX(0) translateY(100%); }
}


/* Modificadores para logos en fondos oscuros */
.certs-section .carousel-logo img {
  filter: brightness(0) invert(1) opacity(0.7);
}
.certs-section .carousel-logo:hover img {
  filter: brightness(1) invert(0) opacity(1);
}

/* ══════════════════════════════════════════════════════
   HERO — FLOATING ENGINEERING SHAPES
   ══════════════════════════════════════════════════════ */
.hero-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-geo-1 {
  top: 12%;
  right: 6%;
  animation: geo-float-1 8s ease-in-out infinite;
  opacity: 0.14;
}
.hero-geo-2 {
  top: 55%;
  right: 2%;
  animation: geo-float-2 10s ease-in-out infinite;
  opacity: 0.09;
}
.hero-geo-3 {
  top: 20%;
  right: 36%;
  animation: geo-float-3 6s ease-in-out infinite;
  opacity: 0.07;
}
.hero-geo-4 {
  bottom: 10%;
  right: 22%;
  animation: geo-float-1 7s ease-in-out infinite reverse;
  opacity: 0.08;
}
@keyframes geo-float-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-16px) rotate(8deg); }
  66%       { transform: translateY(7px) rotate(-4deg); }
}
@keyframes geo-float-2 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%       { transform: translateY(-22px) rotate(-14deg) scale(1.06); }
}
@keyframes geo-float-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-11px) rotate(180deg); }
}

/* Hero badge card floating */
.hero-badge-card {
  animation: badge-float 4.5s ease-in-out infinite !important;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Corner decorations animated */
.hero-img-col::before {
  animation: corner-pulse 3s ease-in-out infinite;
}
.hero-img-col::after {
  animation: corner-pulse 3s ease-in-out infinite 1.5s;
}
@keyframes corner-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* ══════════════════════════════════════════════════════
   BUTTONS — SHIMMER EFFECT
   ══════════════════════════════════════════════════════ */
.btn-primary,
.btn-nav-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.8s ease infinite 1.2s;
}
@keyframes btn-shimmer {
  0%   { left: -110%; }
  100% { left: 210%; }
}

/* ══════════════════════════════════════════════════════
   DIFERENCIADORES — Autoridad técnica (dark section)
   ══════════════════════════════════════════════════════ */
.diferencia-section {
  background: var(--ink);
  padding: clamp(72px, 10vw, 112px) 0;
  overflow: hidden;
  position: relative;
}
.diferencia-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(11,58,102,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 15%, rgba(180,35,28,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.process-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.dif-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.dif-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dif-pillar {
  background: rgba(255,255,255,0.02);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.dif-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--azul), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.dif-pillar:hover { background: rgba(255,255,255,0.05); }
.dif-pillar:hover::before { opacity: 1; }
.dif-icon {
  font-size: 1.8rem;
  color: var(--azul-2);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.dif-credential {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dif-credential::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--rojo);
  flex-shrink: 0;
}
.dif-pillar h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 0.8rem;
  line-height: 1.15;
}
.dif-pillar p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0 0 1.4rem;
  flex: 1;
}
.dif-link {
  font-family: var(--cond);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--azul-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.dif-link:hover { gap: 10px; color: #fff; }

/* ══════════════════════════════════════════════════════
   LATAM PRESENCE SECTION
   ══════════════════════════════════════════════════════ */
.latam-section {
  background: var(--white);
  padding: clamp(72px, 10vw, 112px) 0;
  overflow: hidden;
  position: relative;
}
.latam-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-alt);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.latam-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.latam-stats-row {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.latam-stat strong {
  font-family: var(--cond);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--azul);
  display: block;
  line-height: 1;
}
.latam-stat span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.latam-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.latam-country {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.28s var(--ease);
  opacity: 0;
  transform: translateX(-10px);
}
.latam-country.lc-visible {
  opacity: 1;
  transform: translateX(0);
}
.latam-country:hover {
  border-color: rgba(11,58,102,0.35);
  box-shadow: 0 3px 14px var(--shadow-sm);
  transform: translateX(4px);
}
.country-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azul);
  flex-shrink: 0;
}
.latam-country.hq .country-dot {
  background: var(--rojo);
  box-shadow: 0 0 0 3px rgba(180,35,28,0.2);
  animation: blink 2s ease infinite;
}
.latam-country .cn {
  font-family: var(--cond);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink);
}
.latam-country small {
  font-size: 10.5px;
  color: var(--muted);
  margin-left: auto;
  font-weight: 500;
}

/* Map SVG wrapper */
.latam-map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latam-svg {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 8px 40px rgba(11,58,102,0.12));
  display: block;
  margin: 0 auto;
}
/* Map connector line draw animation */
.map-connector-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.latam-map-active .map-connector-line { animation: draw-line 1.2s ease forwards; }
.latam-map-active .map-connector-line:nth-child(1) { animation-delay: 0.1s; }
.latam-map-active .map-connector-line:nth-child(2) { animation-delay: 0.25s; }
.latam-map-active .map-connector-line:nth-child(3) { animation-delay: 0.4s; }
.latam-map-active .map-connector-line:nth-child(4) { animation-delay: 0.55s; }
.latam-map-active .map-connector-line:nth-child(5) { animation-delay: 0.7s; }
.latam-map-active .map-connector-line:nth-child(6) { animation-delay: 0.85s; }
.latam-map-active .map-connector-line:nth-child(7) { animation-delay: 1.0s; }
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
/* Satellite pins pulse */
.map-pin {
  animation: pin-pulse 2.8s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.map-pin:nth-child(2) { animation-delay: 0.3s; }
.map-pin:nth-child(3) { animation-delay: 0.6s; }
.map-pin:nth-child(4) { animation-delay: 0.9s; }
.map-pin:nth-child(5) { animation-delay: 1.2s; }
.map-pin:nth-child(6) { animation-delay: 1.5s; }
.map-pin:nth-child(7) { animation-delay: 1.8s; }
@keyframes pin-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
/* HQ hub glow */
.map-hub {
  animation: hub-glow 2.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes hub-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(180,35,28,0.5)); }
  50%       { filter: drop-shadow(0 0 14px rgba(180,35,28,0.9)); }
}

/* ══════════════════════════════════════════════════════
   CTA SECTION — ENHANCED WITH ORB GLOWS
   ══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: rgba(26,95,163,0.18);
  top: -180px; left: -120px;
  animation: orb-drift 8s ease-in-out infinite;
}
.cta-orb-2 {
  width: 350px; height: 350px;
  background: rgba(180,35,28,0.14);
  bottom: -100px; right: -80px;
  animation: orb-drift 6s ease-in-out infinite reverse 2s;
}
.cta-orb-3 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  top: 30%; left: 45%;
  animation: orb-drift 10s ease-in-out infinite 1s;
}
@keyframes orb-drift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.12) translate(20px, -15px); }
  66%       { transform: scale(0.92) translate(-15px, 10px); }
}
/* CTA SVG grid overlay */
.cta-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.cta-content {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   TRUST / GLOBAL BAR
   ══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cond);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item i {
  font-size: 17px;
  color: var(--azul);
}
.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   SECTION WAVE DIVIDERS
   ══════════════════════════════════════════════════════ */
.wave-top, .wave-bottom {
  display: block;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.wave-top  { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }

/* ══════════════════════════════════════════════════════
   FAQ — ANIMATED DETAILS
   ══════════════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-summary {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  transition: color 0.2s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--azul); }
.faq-icon {
  font-size: 1.1rem;
  color: var(--azul);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
  padding: 0 2.5rem 1.2rem 0;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .normas-grid    { grid-template-columns: repeat(2, 1fr) !important; }
  .latam-section::before { display: none; }
}
@media (max-width: 768px) {
  .latam-inner    { grid-template-columns: 1fr; }
  .latam-map-wrap { display: none; }
  .trust-divider  { display: none; }
}
@media (max-width: 900px) {
  .dif-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .dif-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .latam-countries   { grid-template-columns: 1fr 1fr; }
  .hero-geo          { display: none; }
}

