/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--chivo);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img     { display: block; max-width: 100%; height: auto; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 { line-height: 1.1; font-weight: 400; }
p               { line-height: 1.7; }


/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --navy:     #0d1f2d;
  --teal:     #467f88;
  --mint:     #bdd7d4;
  --mint-bg:  #c5d8d5;
  --white:    #ffffff;
  --text-sub: #162F40;

  --asul:  'Asul', serif;
  --chivo: 'Chivo', sans-serif;

  --pad:    80px;
  --pad-sm: 24px;
  --max:    1366px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.65s;
}


/* ═══════════════════════════════════════
   ACCESIBILIDAD
═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--chivo);
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; left: 16px; }

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


/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 40px 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s;
}

#main-nav.scrolled {
  padding-bottom: 16px;
}

.nav-icon       { width: 44px; height: 44px; flex-shrink: 0; transition: opacity 0.2s; }
.nav-icon:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  margin-right: 22px;
}
.nav-links li { margin-bottom: 8px; line-height: 22px; }

.nav-links a {
  font-family: var(--asul);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--mint);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover        { color: var(--mint); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 300; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}

.hero-gradient {
  position: absolute; inset: 0;
  background-image: url('../img/bg1.jpg');
  background-size: cover;
  background-position: center bottom;
}

.hero-center {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 80px; gap: 10px;
}

.hero-logo-row  { display: flex; align-items: center; gap: 20px; margin-bottom: 6px; }

.hero-logo-icon {
  width: clamp(48px, 7vw, 80px);
  height: clamp(48px, 7vw, 80px);
  flex-shrink: 0;
}

.hero-logo-name {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(52px, 10vw, 120px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-logo-sub {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(16px, 2.8vw, 34px);
  color: var(--white);
  letter-spacing: 0.1em;
}

.hero-tagline {
  font-family: var(--chivo);
  font-weight: 400;
  font-size: clamp(14px, 2.4vw, 36px);
  color: var(--text-sub);
  margin-top: 8px;
  text-align: center;
  padding: 0 16px;
}
.hero-tagline strong { font-weight: 700; }

.hero-bottom { position: relative; z-index: 2; padding: 0 var(--pad); }

.hero-h1 {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(16px, 4vw, 52px);
  color: var(--text-sub);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-h1 .hl {
  background: var(--teal);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  display: inline;
  color: var(--white);
}

.hero-sub {
  font-family: var(--chivo);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--text-sub);
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
  line-height: 1.65;
}


/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
#stats      { background: var(--white); padding: 60px var(--pad); }
.stats-grid { max-width: var(--max); margin: 0 auto; }

.stat-card {
  border: 1.5px solid rgba(70, 127, 136, 0.35);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform 0.15s var(--ease), border-color 0.2s, background 0.2s;
  will-change: transform;
}
.stat-card:hover               { border-color: var(--teal); transform: translateY(-2px); }
.stat-card.highlight           { background: var(--teal); border-color: var(--teal); }

.stat-num {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--teal);
  line-height: 1;
  margin-bottom: 60px;
}
.stat-card.highlight .stat-num { color: var(--white); }

.stat-lbl {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  color: var(--navy);
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.stat-card.highlight .stat-lbl { color: rgba(255, 255, 255, 0.85); }


/* ═══════════════════════════════════════
   STATEMENT
═══════════════════════════════════════ */
#statement  { background: var(--white); padding: 80px var(--pad) 0; }
.stmt-inner { max-width: var(--max); margin: 0 auto; padding-bottom: 80px; }

.stmt-left h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 50px);
  color: var(--teal);
  line-height: 1.12;
}
.stmt-left h2 strong { font-weight: 700; display: block; }

.stmt-right   { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; }
.stmt-right p {
  font-family: var(--chivo);
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-sub);
  line-height: 1.7;
  text-align: center;
}

.windmills {
  width: 100%;
  height: 200px;
  background-image: url('../img/bg2.jpg');
  background-size: cover;
  background-position: center bottom;
  position: relative;
}
.windmills::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.07) 50%, var(--navy) 100%);
}


/* ═══════════════════════════════════════
   LO QUE HACEMOS — TIMELINE
═══════════════════════════════════════ */
#hacemos        { background: var(--navy); padding: 80px 0 100px; }
.hacemos-header { text-align: center; padding: 0 var(--pad) 80px; }

.hacemos-title {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  color: var(--mint);
  line-height: 1.05;
  display: inline-block;
  text-align: right;
}
.hacemos-title strong { font-weight: 700; color: var(--white); }

.timeline       { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.timeline-spine {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(189, 215, 212, 0.2);
  transform: translateX(-50%);
}

.tl-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 28px;
}

.tl-dot-wrap { display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(189, 215, 212, 0.2);
}

.tl-card {
  border: 1px solid rgba(189, 215, 212, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.15s var(--ease), border-color 0.2s, background 0.2s;
  will-change: transform;
}
.tl-card:hover  { border-color: rgba(189, 215, 212, 0.45); background: rgba(255, 255, 255, 0.03); }

.tl-card-right  { grid-column: 3; }
.tl-card-left   { grid-column: 1; }

.tl-card-icon {
  float: right;
  margin-left: 12px;
  width: 44px; height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.tl-label {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 24px);
  letter-spacing: 0.06em;
  color: var(--mint);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tl-card p {
  font-family: var(--chivo);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-top: 8px;
  clear: both;
}


/* ═══════════════════════════════════════
   PORQUÉ SOMOS DIFERENTES
═══════════════════════════════════════ */
#diferentes     { background: var(--navy); overflow: hidden; }
.dif-title-wrap { padding: 60px var(--pad) 40px; overflow: hidden; }

.dif-title {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 128px);
  color: var(--white);
  line-height: 0.95;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.dif-title span { color: var(--teal); }

.dif-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, 0.1); }

.dif-card {
  padding: 52px var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.dif-card:hover          { background: rgba(255, 255, 255, 0.02); }
.dif-card:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }

.dif-pre {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: 0.2em;
  color: var(--mint);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dif-card h3 {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--mint);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.3;
}

.dif-card p {
  font-family: var(--chivo);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   COBERTURAS EMPRESARIALES
═══════════════════════════════════════ */
#coberturas { background: var(--white); padding: 100px var(--pad); }
.cob-inner  { max-width: var(--max); margin: 0 auto; }

.cob-left h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 60px);
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cob-sub {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(13px, 1.7vw, 24px);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.5;
}

.cob-cards { display: flex; flex-direction: column; gap: 14px; }

.cob-card       { min-height: 280px; border: 1px solid rgba(70, 127, 136, 0.3); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s; }
.cob-card:hover { border-color: var(--teal); }

.cob-card-plain {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cob-card-plain h3 {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 30px);
  letter-spacing: 0.04em;
  color: var(--teal);
  line-height: 1.4;
}

.sector-icon-wrap {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sector-icon {
  width: 26px; height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.cob-plain-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.cob-card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 20px;
}

.cob-circle {
  width: 38px; height: 38px;
  border-radius: 50%; flex-shrink: 0;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: transform 0.2s, background 0.2s;
}
.cob-circle:hover { background: var(--navy); transform: rotate(90deg); }

.cob-img-card {
  position: relative;
  min-height: 282px;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.cob-img-bg {
  position: absolute; inset: 0;
  background-image: url('../img/movilidad-especialidades.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.cob-img-card:hover .cob-img-bg { transform: scale(1.03); }
.cob-img-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,45,0.9) 0%, rgba(13,31,45,0.2) 65%, transparent 100%);
}

.cob-img-content { position: relative; z-index: 2; padding: 0 24px; }

.cob-tag {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 6px;
}

.cob-img-content h3 {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.cob-img-content ul li {
  font-family: var(--chivo);
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255, 255, 255, 0.75);
  padding: 2px 0;
}

.cob-img-footer { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding: 14px 24px 20px; }

.cob-circle-minus {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
}
.cob-circle-minus:hover { background: rgba(255, 255, 255, 0.25); }


/* ═══════════════════════════════════════
   GRADIENT WRAP
═══════════════════════════════════════ */
.gradient-wrap {
  background: linear-gradient(to bottom, var(--mint-bg) 0%, var(--teal) 100%);
}


/* ═══════════════════════════════════════
   SECTORES
═══════════════════════════════════════ */
#sectores       { background: transparent; padding: 80px var(--pad); }
.sectores-inner { max-width: var(--max); margin: 0 auto; }

#sectores h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 62px);
  color: var(--teal);
  margin-bottom: 6px;
}

.sectores-sub {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(13px, 1.7vw, 24px);
  color: var(--navy);
  margin-bottom: 40px;
}

.sectores-grid { gap: 12px; }

.sector-cell {
  padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--teal);
  transition: background 0.15s;
}
.sector-cell:hover { background: rgba(255, 255, 255, 0.45); }

.sector-name {
  font-family: var(--chivo);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}


/* ═══════════════════════════════════════
   PROTECCIÓN PERSONAL
═══════════════════════════════════════ */
#personal       { background: transparent; padding: 60px var(--pad) 80px; }
.personal-inner { max-width: var(--max); margin: 0 auto; }

#personal h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 40px;
}


.products-row-outer {
  position: relative;
}

.products-row-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.products-row {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap;
  gap: 20px;
  will-change: transform;
  transform: translateX(0);
  transition: transform 0.05s linear;
}

.prod-card {
  border-radius: var(--radius-md);
  padding: 0;
  border: 1px solid rgba(70, 127, 136, 0.2);
  background: rgba(255, 255, 255, 0.5);
  display: flex; flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 160px;
  width: 250px;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}
.prod-card:hover { background: rgba(255, 255, 255, 0.85); transform: translateY(-3px); }

.prod-name {
  font-family: var(--chivo);
  font-size: clamp(11px, 1.7vw, 18px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  padding: 12px 12px 0;
  margin-bottom: 15px;
}

.prod-img {
  object-fit: contain;
  align-self: flex-start;
  filter: brightness(0) saturate(100%) invert(38%) sepia(22%) saturate(700%) hue-rotate(150deg);
  opacity: 0.75;
}

.personal-bottom { align-items: center; margin-top: 30px; }
.personal-bottom .btn-outline { color: var(--white); border: 1.5px solid var(--white); }
.personal-text-col { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }

.personal-desc {
  font-family: var(--chivo);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  max-width: 520px;
}

.big-stat { display: flex; align-items: flex-end; gap: 8px; position: relative; }

.big-plus {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(72px, 15vw, 200px);
  color: var(--navy);
  line-height: 1;
}

.big-num {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(72px, 15vw, 200px);
  color: var(--navy);
  line-height: 0.88;
  margin-right: 250px;
}

.big-desc {
  font-family: var(--chivo);
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  max-width: 300px;
  position: absolute;
  right: 60px;
  padding-bottom: 10px;
  bottom: -60px;
}


/* ═══════════════════════════════════════
   RED DE ASEGURADORAS
═══════════════════════════════════════ */
#aseguradoras { background: var(--teal); padding: 60px 80px 40px 80px; position: relative; }
.aseg-inner   { max-width: var(--max); margin: 0 auto; }

.carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 56px;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: scroll-logos 22s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-logo {
  object-fit: contain; flex-shrink: 0;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s;
}
.carousel-logo:hover { filter: grayscale(0) opacity(1); }

#aseguradoras h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 62px);
  color: var(--white);
  margin-bottom: 16px;
}

.aseg-content { position: relative; }

.aseg-content p {
  font-family: var(--chivo);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  max-width: 600px;
}

.aseg-badge {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 60px 32px;
  display: flex; align-items: baseline; gap: 4px;
  position: absolute;
  bottom: -80px;
  right: 0;
}

.aseg-plus {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--mint);
}

.aseg-num {
  font-family: var(--asul);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 68px);
  color: var(--mint);
  line-height: 1;
}

.aseg-lbl {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  color: var(--white);
  letter-spacing: 0.12em;
  margin-left: 10px;
  align-self: center;
  line-height: 1.5;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   HABLEMOS
═══════════════════════════════════════ */
#hablemos       { background: var(--white); padding: 100px var(--pad) 80px; }
.hablemos-inner { max-width: var(--max); margin: 0 auto; }

#hablemos h2 {
  font-family: var(--asul);
  font-weight: 400;
  font-size: clamp(30px, 5.5vw, 74px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 40px;
}
#hablemos h2 .hl {
  background: var(--teal);
  color: var(--white);
  padding: 2px 12px;
  border-radius: var(--radius-sm);
}

.contact-info { margin-bottom: 56px; }
.contact-info a {
  display: block;
  font-family: var(--chivo);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.9;
  transition: opacity 0.2s;
}
.contact-info a:hover { opacity: 0.7; }
.contact-info .email  { color: var(--teal); }
.contact-info .phone  { color: var(--navy); }

.office-card {
  border: 1.5px solid rgba(70, 127, 136, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.15s var(--ease), border-color 0.2s, background 0.2s;
  will-change: transform;
}
.office-card:hover { border-color: var(--teal); transform: translateY(-2px); }

.office-city {
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.office-type {
  font-family: var(--chivo);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--teal);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.office-addr {
  font-family: var(--chivo);
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.75;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--white);
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-family: var(--chivo); font-size: 13px; color: var(--text-sub); }
.footer-copy-2 { display: none; font-family: var(--chivo); font-size: 13px; color: var(--text-sub); margin-top: 15px; }

.footer-links    { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a  { font-family: var(--chivo); font-size: 13px; color: var(--text-sub); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }


/* ═══════════════════════════════════════
   COMPONENTES
═══════════════════════════════════════ */
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--chivo);
  font-weight: 500;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.18em;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }


/* ═══════════════════════════════════════
   ANIMACIONES & REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible   { opacity: 1; transform: none; }

.reveal-l {
  opacity: 0; transform: translateX(-24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal-l.visible { opacity: 1; transform: none; }

.reveal-r {
  opacity: 0; transform: translateX(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal-r.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════ */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--mint);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}