/* =====================================================================
   Aulapp · Sistema de diseño moderno (2026)
   Marca: marino #243060 · periwinkle #6078b4 · cian #00a9df
   Tipografía de marca: Cleon (títulos/nav) · Grift (cuerpo)
   Autocontenido: no depende de Bootstrap ni Font Awesome.
   ===================================================================== */

/* ---------- Cleon (display / títulos / navegación) ---------- */
@font-face {
  font-family: "Cleon"; font-weight: 300; font-style: normal; font-display: swap;
  src: url("../fonts/cleon-light-webfont.woff2") format("woff2"),
       url("../fonts/cleon-light-webfont.woff") format("woff");
}
@font-face {
  font-family: "Cleon"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../fonts/cleon-webfont.woff2") format("woff2"),
       url("../fonts/cleon-webfont.woff") format("woff");
}
@font-face {
  font-family: "Cleon"; font-weight: 500; font-style: normal; font-display: swap;
  src: url("../fonts/cleon-webfont.woff2") format("woff2"),
       url("../fonts/cleon-webfont.woff") format("woff");
}
@font-face {
  font-family: "Cleon"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("../fonts/cleon-bold-webfont.woff2") format("woff2"),
       url("../fonts/cleon-bold-webfont.woff") format("woff");
}
/* ---------- Grift (cuerpo) ---------- */
@font-face { font-family: "Grift"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/Grift-Regular.otf") format("opentype"); }
@font-face { font-family: "Grift"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/Grift-Medium.otf") format("opentype"); }
@font-face { font-family: "Grift"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/Grift-SemiBold.otf") format("opentype"); }
@font-face { font-family: "Grift"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/Grift-Bold.otf") format("opentype"); }
@font-face { font-family: "Grift"; font-weight: 800; font-style: normal; font-display: swap; src: url("../fonts/Grift-ExtraBold.otf") format("opentype"); }
@font-face { font-family: "Grift"; font-weight: 900; font-style: normal; font-display: swap; src: url("../fonts/Grift-Black.otf") format("opentype"); }

:root {
  --navy:       #243060;
  --navy-800:   #1b2547;
  --navy-900:   #131a35;
  --indigo:     #16337a;
  --periwinkle: #6078b4;
  --peri-300:   #93a6d6;
  --cyan:       #00a9df;
  --cyan-600:   #008ec0;
  --sky:        #0e69b7;

  --ink:        #1a2138;
  --muted:      #5a6685;
  --line:       #e4e8f2;
  --bg:         #ffffff;
  --bg-soft:    #f4f6fc;
  --bg-tint:    #eef2fb;

  --grad-brand: linear-gradient(135deg, #243060 0%, #16337a 45%, #0e69b7 100%);
  --grad-cyan:  linear-gradient(135deg, #0e69b7 0%, #00a9df 100%);
  --grad-soft:  linear-gradient(180deg, #f7f9ff 0%, #eef2fb 100%);

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --shadow-sm:  0 1px 2px rgba(19,26,53,.06), 0 2px 8px rgba(19,26,53,.05);
  --shadow:     0 10px 30px rgba(19,26,53,.10);
  --shadow-lg:  0 24px 60px rgba(19,26,53,.16);
  --ring:       0 0 0 4px rgba(0,169,223,.18);

  --maxw: 1180px;
  --font-body: "Grift", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Grift", var(--font-body);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--cyan); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.14; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--grad-soft); }
.section--dark { background: var(--grad-brand); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.82); }

.head { max-width: 760px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.head--left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad-cyan); border-radius: 2px; }
.section--dark .eyebrow { color: var(--cyan); }
.lead { font-size: 1.14rem; color: var(--muted); }
.section--dark .lead { color: rgba(255,255,255,.85); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-cyan); color: #fff; box-shadow: 0 8px 22px rgba(0,169,223,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,169,223,.45); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-800); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--periwinkle); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }

/* ---------- top navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s ease, border-color .2s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; min-width: 0; }
.nav__brand { display: flex; align-items: center; flex: none; }
.nav__brand img { height: 40px; width: auto; display: block; }
.nav__mcta { display: none; }
.nav__mcta a.btn, .nav__mcta a.btn:hover { color: #fff; background: var(--grad-cyan); }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: block; padding: 9px 13px; border-radius: 10px;
  font-size: .93rem; font-weight: 500; color: var(--navy); white-space: nowrap;
}
.nav__links a:hover { background: var(--bg-tint); color: var(--indigo); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: .2s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 76px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease;
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 14px; font-size: 1rem; }
  .nav__cta .btn { display: none; }        /* en móvil solo el hamburguesa */
  .nav__mcta { display: block; margin-top: 10px; }
  .nav__mcta a { justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; padding-block: clamp(70px, 11vw, 140px); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -180px; right: -120px; background: radial-gradient(circle at center, rgba(0,169,223,.55), transparent 62%); }
.hero::after { width: 460px; height: 460px; bottom: -220px; left: -140px; background: radial-gradient(circle at center, rgba(96,120,180,.5), transparent 62%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 48px; align-items: center; }
.hero__grid > *, .split > *, .grid > *, .stats > *, .audience > *, .contact-grid > *, .hero__art-row > *, .chips > *, .logos > * { min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; font-size: .84rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 22px; color: #fff;
}
.hero__badge b { color: var(--cyan); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(120deg, #7fd6f5, #00a9df); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.24rem; color: rgba(255,255,255,.88); max-width: 30ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .96rem; color: rgba(255,255,255,.85); }
.hero__tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero__tags svg { width: 18px; height: 18px; color: var(--cyan); }
.hero__art {
  position: relative; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); backdrop-filter: blur(4px);
}
.hero__art-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero__chip {
  background: rgba(255,255,255,.95); color: var(--navy); border-radius: var(--radius-sm); padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero__chip svg { width: 26px; height: 26px; color: var(--sky); }
.hero__chip b { font-family: var(--font-head); font-size: 1rem; }
.hero__chip small { color: var(--muted); font-size: .82rem; line-height: 1.35; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: minmax(0,1fr); gap: 36px; }
  .hero__lead { max-width: none; }
}

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .95rem; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--peri-300); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--sky); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 6px; }
.card .kicker { font-family: var(--font-head); font-weight: 600; color: var(--cyan); font-size: .92rem; margin-bottom: 8px; display: block; }
.card p { margin: 0; font-size: .96rem; }

/* icon color variants */
.i-cyan  { background: rgba(0,169,223,.12);  color: var(--cyan); }
.i-navy  { background: rgba(36,48,96,.10);   color: var(--navy); }
.i-peri  { background: rgba(96,120,180,.14); color: var(--periwinkle); }
.i-sky   { background: rgba(14,105,183,.12); color: var(--sky); }

/* ---------- audience (para quién es) ---------- */
.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 780px) { .audience { grid-template-columns: 1fr; } }
.aud {
  display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud img { width: 96px; height: 96px; object-fit: contain; }
.aud h3 { margin-bottom: 4px; }
.aud .kicker { color: var(--cyan); font-weight: 600; font-family: var(--font-head); font-size: .92rem; margin-bottom: 8px; display: block; }
.aud p { margin: 0; font-size: .95rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split__media { position: relative; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } .split--rev .split__media { order: 0; } }
.feature-list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.feature-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.feature-list .fi { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--bg-tint); color: var(--sky); }
.feature-list .fi svg { width: 20px; height: 20px; }
.feature-list b { font-family: var(--font-head); color: var(--navy); display: block; font-size: 1rem; }
.feature-list small { color: var(--muted); font-size: .92rem; }

/* ---------- logo wall ---------- */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: center; }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .logos { grid-template-columns: repeat(3, 1fr); } }
.logos a, .logos .logo {
  display: grid; place-items: center; padding: 18px 14px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); min-height: 92px;
}
.logos img { max-width: 100%; max-height: 52px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .68; transition: .2s ease; }
.logos a:hover img, .logos .logo:hover img { filter: none; opacity: 1; }
/* logos claros (blancos) sobre fondo oscuro: sin grayscale, ya son claros */
.logos--light a, .logos--light .logo { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.logos--light img { filter: none; opacity: .82; }
.logos--light a:hover img, .logos--light .logo:hover img { opacity: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .18s ease;
}
.faq details[open] { border-color: var(--peri-300); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--font-head);
  font-weight: 600; color: var(--navy); font-size: 1.04rem; display: flex; gap: 14px; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 12px; height: 12px; flex: none; border-right: 2px solid var(--sky); border-bottom: 2px solid var(--sky);
  transform: rotate(45deg); transition: transform .2s ease; margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq__a { padding: 0 0 18px; color: var(--muted); font-size: .98rem; }

/* ---------- quote / benefit chips ---------- */
.chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 700px) { .chips { grid-template-columns: 1fr; } }
.chip {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm);
  color: var(--ink); font-size: .98rem;
}
.chip svg { width: 22px; height: 22px; color: var(--cyan); margin-top: 2px; }
.chip a { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; background: var(--grad-brand); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: var(--shadow-lg);
}
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; top: -160px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(0,169,223,.5), transparent 60%); }
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.86); max-width: 60ch; margin-inline: auto; }
.cta .hero__actions { justify-content: center; margin-top: 26px; margin-bottom: 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit; color: var(--ink); background: #fbfcff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: var(--ring); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.info-block { display: grid; gap: 18px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.info-item .fi { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--sky); display: grid; place-items: center; }
.info-item .fi svg { width: 22px; height: 22px; }
.info-item b { font-family: var(--font-head); color: var(--navy); display: block; }
.info-item span, .info-item a { color: var(--muted); font-size: .95rem; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding-block: 58px 30px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--cyan); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; font-size: .95rem; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--cyan); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- misc ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
.ic { width: 1em; height: 1em; vertical-align: -.125em; flex: none; }
.center { text-align: center; }

/* ---------- compatibilidad con vistas legacy (detalle de clientes) ---------- */
#second, #first, #third, #fourth { padding-block: clamp(48px, 7vw, 90px); }
#second .container, #first .container, #third .container, #fourth .container { max-width: var(--maxw); }
.content .row { display: block; }
.content [class*="col-lg-"], .content [class*="col-sm-"] { width: 100%; margin-bottom: 14px; }
.text-center { text-align: center; }
.img-responsive { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin-inline: auto; box-shadow: var(--shadow-sm); }
.carousel .inactive.item { display: none; }        /* oculta duplicados/placeholders */
img[src*="placehold"] { display: none !important; } /* placehold.it está muerto y es http */
.content .icons i { color: var(--sky); }
.mt-40 { margin-top: 40px; }
.quote { font-family: var(--font-head); font-style: italic; color: var(--periwinkle); }
