/* ============================================================
   ESPECIALES CON MARCAS ALIADAS — El Colombiano
   ============================================================ */

:root {
  --dark: #262626;
  --dark-2: #1f1f1f;
  --footer-1: #222220;
  --footer-2: #1e1e1c;
  --line: #686868;
  --accent: #cbd225;
  --muted: #bababa;
  --muted-2: #8e8e8d;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Roboto', system-ui, -apple-system, sans-serif;
  --maxw: 1286px;
  --pad: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  height: 85px;
  display: flex; align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.site-header .wrap {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.hdr-left, .hdr-right { display: flex; align-items: center; gap: 18px; }
.hdr-utility { display: flex; align-items: center; gap: 16px; color: var(--muted-2); }
.hdr-utility a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--muted-2);
  transition: color .2s;
}
.hdr-utility a:hover { color: #1a1a1a; }
.hdr-utility .ic { font-size: 16px; }
.hdr-divider { width: 1px; height: 24px; background: #e4e4e4; }

.lang {
  display: flex; align-items: center; gap: 5px; color: var(--line);
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
}
.lang img { width: 18px; height: 18px; opacity: .75; }
.icon-btn {
  background: none; border: none; color: var(--line);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: #f3f3f3; color: #1a1a1a; }
.btn-suscribe {
  background: #1a1a1a; color: #fff; border: none; border-radius: 100px;
  padding: 11px 22px; font-size: 13px; font-weight: 500; letter-spacing: .3px;
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.btn-suscribe:hover { background: var(--accent); color: #1a1a1a; transform: translateY(-1px); }

/* Logo central flotante */
.brand-pill {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #e2e2e2; border-radius: 100px;
  box-shadow: 0 5px 12px rgba(0,0,0,.06);
  padding: 10px 26px 10px 20px;
  z-index: 5;
}
.brand-pill .mark { width: 36px; height: 30px; color: #1a1a1a; }
.brand-pill .mark .dot { color: var(--accent); }
.brand-sep { width: 1px; height: 38px; background: #e2e2e2; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt .b1 { font-family: var(--serif); font-size: 21px; letter-spacing: .5px; color: #111; }
.brand-txt .b2 { font-size: 11px; font-weight: 300; letter-spacing: 1px; color: #444; margin-top: 5px; }

/* Hamburger solo visible en mobile */
.hamburger { display: none; }
.mobile-section-nav { display: none; }

/* ===================== BURGER MENU EC ===================== */
.overlay__hamburger {
  position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.overlay__hamburger.open { opacity: 1; visibility: visible; }

.ec-burger-close {
  position: fixed; top: 18px; right: calc(340px + 14px); z-index: 251;
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; font-size: 20px;
  cursor: pointer; transition: background .2s;
}
.ec-burger-close:hover { background: rgba(255,255,255,.3); }
.ec-burger-close.open { display: flex; }

.burger-menu {
  position: fixed; top: 0; right: -360px; z-index: 250;
  width: 340px; max-width: 90vw; height: 100vh;
  background: #fff; overflow-y: auto;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.burger-menu.open { right: 0; }

.burger-menu-top {
  padding: 20px 20px 14px;
  border-bottom: 1px solid #eee;
  display: flex; flex-direction: column; gap: 10px;
}
.burger-menu-top .btn {
  display: flex; align-items: center; gap: 8px;
  border-radius: 6px; padding: 11px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  text-decoration: none; transition: opacity .2s;
}
.burger-menu-top .btn:hover { opacity: .85; }
.burger-menu-top .btn.suscribe {
  background: #1a1a1a; color: var(--accent);
}
.burger-menu-top .btn.login {
  background: #f5f5f5; color: #1a1a1a;
}

.contenedor-intelecto {
  display: flex; align-items: center; gap: 10px;
  background: #011E41; color: #fff;
  border-radius: 6px; padding: 10px 14px;
  text-decoration: none; font-size: 13px;
  transition: opacity .2s;
}
.contenedor-intelecto:hover { opacity: .88; }
.logo-intelecto {
  width: 17px; height: 20px; flex-shrink: 0;
  background: url('https://estaticos.elcolombiano.com/base-portlet/webrsrc/theme/f1826074a0d0accfd6e014c55e158d8c.png') no-repeat center / contain;
}
.texto-intelecto { font-size: 13px; color: #fff; font-weight: 500; }

.burger-menu-middle { padding: 16px 20px; flex: 1; }
.burger-menu-middle .title {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px;
  color: var(--muted-2); text-transform: uppercase;
  margin: 18px 0 10px;
}
.burger-menu-middle h2.title { font-size: 11px; margin-top: 0; }
.burger-menu-links { list-style: none; margin: 0 0 6px; padding: 0; }
.burger-menu-item { border-bottom: 1px solid #f3f3f3; }
.burger-menu-item a {
  display: block; padding: 11px 0;
  font-size: 15px; color: #1a1a1a; font-weight: 400;
  transition: color .2s;
}
.burger-menu-item a:hover { color: var(--accent); }
.burger-menu-item.is-resalt a { font-weight: 500; }
.burger-menu-item.secundario a { font-size: 14px; color: #444; }

.contenedor-newsltetter { margin: 18px 0 6px; }
.enlace-newsletter {
  display: block; font-weight: 600; color: #1a1a1a;
  font-size: 13px; border-radius: 6px;
  border: 1px solid var(--accent); padding: 12px 16px;
  transition: background .2s; text-align: center;
  text-decoration: none;
}
.enlace-newsletter:hover { background: var(--accent); }

.redes__menu__hamburguesa {
  display: flex; gap: 14px; list-style: none;
  padding: 18px 20px; border-top: 1px solid #eee;
  margin: 0;
}
.redes__menu__hamburguesa li a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f5f5f5; color: #1a1a1a; font-size: 16px;
  transition: background .2s, color .2s;
}
.redes__menu__hamburguesa li a:hover { background: #1a1a1a; color: #fff; }

.burger-menu-bottom {
  display: flex; gap: 12px;
  padding: 16px 20px; border-top: 1px solid #eee;
}
.burger-menu-bottom a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: #444; font-weight: 500;
  padding: 9px 14px; border-radius: 6px; border: 1px solid #e0e0e0;
  transition: background .2s, color .2s; text-decoration: none;
}
.burger-menu-bottom a:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ===================== HERO ===================== */
.hero {
  position: relative; background: #fff; overflow: hidden;
  min-height: 560px;
  background-image: url('../img/skyline.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
#canvas {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 430px; z-index: 2;
  pointer-events: none;
}
.hero-text {
  position: relative; z-index: 3; text-align: center;
  padding: 70px 24px 0; max-width: 880px; margin: 0 auto;
}
.hero-text h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.18; color: #000; margin: 0;
  text-wrap: balance;
}
.hero-text p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(17px, 2.2vw, 24px); color: #111; margin: 18px 0 0;
}

/* ===================== SECCIONES OSCURAS ===================== */
.section-dark { background: var(--dark); }
.section-head {
  border-bottom: 1px solid rgba(255,255,255,.85);
  padding-bottom: 14px; margin-bottom: 34px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 700; color: #fff; margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}

/* ===================== SLIDER DESTACADOS ===================== */
.featured { padding: 60px 0 70px; }
.featured-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.featured-viewport { position: relative; width: 100%; max-width: 846px; }
.featured-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, #fff 14%);
  border: 1px solid #2a2a2a; border-radius: 40px;
  padding: 30px;
  display: grid; grid-template-columns: 400px 1fr; gap: 30px; align-items: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.featured-card.grown { animation: cardGrow .6s cubic-bezier(.2,.8,.25,1); }
@keyframes cardGrow {
  from { transform: scale(.9); opacity: .2; }
  to   { transform: scale(1);  opacity: 1;  }
}
.featured-card .f-img {
  width: 400px; height: 400px; border-radius: 30px; object-fit: cover; background: #eee;
}
.featured-card .f-body {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 400px; padding: 10px 0;
}
.f-eyebrow { font-size: 12px; font-weight: 300; color: #000; letter-spacing: .3px; }
.f-title { font-family: var(--serif); font-weight: 700; font-size: 32px; color: #000; margin: 14px 0 16px; }
.f-desc { font-size: 15px; line-height: 1.6; color: #1a1a1a; margin: 0 0 26px; }
.f-link {
  align-self: flex-end; display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid #000; border-radius: 100px; padding: 11px 22px;
  font-size: 13px; color: #000; background: #fff; transition: background .2s, color .2s;
}
.f-link:hover { background: #000; color: #fff; }

/* Tarjetas laterales del slider */
.peek {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 560px; height: 300px; border-radius: 27px;
  background: #fff; border: 1px solid #2a2a2a;
  opacity: .18; filter: grayscale(1);
  display: none; pointer-events: none; overflow: hidden;
}
.peek img { width: 267px; height: 267px; border-radius: 20px; margin: 16px; object-fit: cover; }
.peek-left { left: -360px; }
.peek-right { right: -360px; }

/* Controles slider */
.f-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 1px solid #000; color: #1c1b1f;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform .2s, background .2s, color .2s;
}
.f-arrow:hover { background: #1a1a1a; color: #fff; }
.f-arrow.prev { left: -12px; }
.f-arrow.next { right: -12px; }
.f-dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.f-dots button {
  width: 30px; height: 6px; border-radius: 6px; border: none; background: rgba(255,255,255,.3);
  transition: background .3s, width .3s;
}
.f-dots button.active { background: #fff; width: 34px; }

/* ===================== PROYECTOS ===================== */
.proyectos { padding: 10px 0 70px; }

/* Category filter */
.proj-filter {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-bottom: 30px;
}
.proj-filter-label {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .3px; white-space: nowrap;
}
.proj-filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pill {
  background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
  border-radius: 100px; padding: 8px 20px; font-size: 13px; font-family: var(--sans);
  cursor: pointer; transition: background .2s, border-color .2s, color .2s;
}
.filter-pill:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.filter-pill.active { background: #fff; border-color: #fff; color: #1a1a1a; font-weight: 500; }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.proj-card {
  position: relative; border-radius: 30px; overflow: hidden;
  aspect-ratio: 1/1; background: #333; cursor: pointer;
  border: 4px solid transparent;
  transition: border-color .3s, transform .3s;
}
.proj-card.reveal-init { opacity: 0; transform: translateY(28px); }
.proj-card.revealed { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proj-card:hover { border-color: #fff; }
.proj-card:hover img { transform: scale(1.05); }
.proj-overlay {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  background: #fff; border-radius: 22px; padding: 20px 22px;
  transform: translateY(calc(100% + 16px)); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.25,1), opacity .35s ease;
}
.proj-card:hover .proj-overlay { transform: translateY(0); opacity: 1; }
.proj-overlay h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; margin: 0 0 8px; color: #000; text-align: center; }
.proj-overlay p {
  font-size: 13px; line-height: 1.45; color: #222; margin: 0; text-align: center;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.proj-card.hidden { display: none; }

.mostrar-wrap { display: flex; justify-content: center; margin-top: 44px; }
.btn-pill-ghost {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 100px; padding: 20px 44px; font-size: 14px; font-weight: 300;
  letter-spacing: .4px; transition: background .25s, transform .2s;
}
.btn-pill-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* Modal de proyecto */
.modal-back {
  position: fixed; inset: 0; z-index: 120; background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: 30px; overflow: hidden;
  max-width: 880px; width: 100%; max-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(.94); transition: transform .35s cubic-bezier(.2,.8,.25,1);
}
.modal-back.open .modal { transform: scale(1); }
.modal img { width: 100%; height: 100%; max-height: 90vh; object-fit: cover; background: #eee; }
.modal-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: auto; }
.modal-body .eyebrow { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #888; }
.modal-body h3 { font-family: var(--serif); font-weight: 700; font-size: 30px; margin: 12px 0 18px; color: #111; }
.modal-body p { font-size: 15px; line-height: 1.65; color: #333; margin: 0 0 28px; }
.modal-link {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  background: #1a1a1a; color: #fff; border-radius: 100px; padding: 14px 26px; font-size: 14px;
  transition: background .2s;
}
.modal-link:hover { background: var(--accent); color: #1a1a1a; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.06); border: none; font-size: 18px; color: #333;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.14); }

/* Modal de formulario */
.contact-modal-back {
  position: fixed; inset: 0; z-index: 130; background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(6px);
}
.contact-modal-back.open { opacity: 1; pointer-events: auto; }
.contact-modal {
  position: relative; width: min(640px, 100%); max-height: 90vh; overflow: auto;
  background: #fff; color: #151515; border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0,0,0,.38);
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.25,1);
}
.contact-modal-back.open .contact-modal { transform: translateY(0) scale(1); }
.contact-modal-head {
  padding: 34px 38px 20px; border-bottom: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, #f8f4ea 0%, #fff 100%);
}
.contact-modal-head .eyebrow {
  display: block; color: #7b6a42; font-size: 12px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 10px;
}
.contact-modal-head h3 {
  font-family: var(--serif); color: #111; font-size: 32px; line-height: 1.1;
  margin: 0; font-weight: 700;
}
.contact-form-shell { padding: 26px 38px 36px; }
#projectHubspotForm { min-height: 280px; }
.contact-modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 42px; height: 42px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.08); color: #151515; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.contact-modal-close:hover { background: rgba(0,0,0,.16); transform: translateY(-1px); }

/* ===================== ALIADOS ===================== */
.aliados { padding: 10px 0 70px; }
.aliados-bar {
  position: relative; background: #fff; border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  padding: 26px 80px; margin-bottom: 30px;
}
.aliados-viewport { overflow: hidden; }
.aliados-track {
  display: flex; align-items: center; gap: 34px;
  transition: transform .5s cubic-bezier(.2,.8,.25,1);
}
.ally {
  flex: 0 0 auto; height: 80px; min-width: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 22px; border-right: 1px solid #eee;
}
.ally:last-child { border-right: none; }
/* Cuando el aliado tiene imagen */
.ally img {
  max-height: 60px; max-width: 160px;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
/* Fallback de texto si no hay imagen */
.ally .logo {
  font-family: var(--serif); font-weight: 700; font-size: 22px; color: #1a1a1a;
  display: flex; flex-direction: column; align-items: center; line-height: 1.05; text-align: center;
}
.ally .logo small { font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 1px; color: #999; margin-top: 3px; }
.a-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1px solid #000;
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #1c1b1f;
  transition: background .2s, color .2s;
}
.a-arrow:hover { background: #1a1a1a; color: #fff; }
.a-arrow.prev { left: 14px; }
.a-arrow.next { right: 14px; }

.cta-bar {
  background: rgba(255,255,255,.05); border-radius: 30px; padding: 28px 36px;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center;
}
.cta-bar h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; color: #fff; margin: 0; }
.cta-bar p { font-size: 15px; line-height: 1.5; color: #fff; margin: 0; opacity: .85; }
.btn-pill-outline {
  border: 1px solid #fff; background: transparent; color: #fff; border-radius: 100px;
  padding: 18px 30px; font-size: 14px; font-weight: 300; letter-spacing: .4px; white-space: nowrap;
  transition: background .25s, color .25s;
}
.btn-pill-outline:hover { background: #fff; color: #1a1a1a; }

/* ===================== FOOTER ===================== */
.site-footer { background: #fff; }
.foot-cats {
  text-align: center; padding: 34px 20px 30px;
  border-bottom: 1px solid var(--line); max-width: 1240px; margin: 0 auto;
}
.foot-cats p {
  font-size: 14px; line-height: 40px; letter-spacing: .5px; color: var(--footer-1); margin: 0;
}
.foot-cats a { color: inherit; transition: color .2s; }
.foot-cats a:hover { color: var(--accent); }
.foot-main { background: var(--footer-1); color: #fff; }
.foot-main .wrap {
  display: grid; grid-template-columns: auto 1.3fr 1.3fr 1.3fr; gap: 30px;
  padding-top: 44px; padding-bottom: 44px; align-items: start;
}
.foot-ec-logo { display: block; }
.foot-c { width: 64px; height: 60px; color: #fff; }
.foot-c .dot { color: var(--accent); }
.foot-copy { font-size: 12px; line-height: 1.7; color: #ccc; }
.foot-copy a { color: #ccc; text-decoration: underline; }
.foot-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 1px; color: var(--muted-2); margin: 0 0 16px; }
.foot-links { display: flex; flex-direction: column; gap: 14px; }
.foot-links a { font-size: 12px; font-weight: 500; color: #fff; transition: color .2s; }
.foot-links a:hover { color: var(--accent); }
.foot-social { display: flex; gap: 18px; margin: 8px 0 26px; }
.foot-social a {
  color: #fff; font-size: 18px; transition: color .2s, transform .2s;
}
.foot-social a:hover { color: var(--accent); transform: translateY(-2px); }
.foot-member { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.foot-member .mlogo,
a.mlogo {
  height: 42px; padding: 0 14px; border-radius: 6px; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 1px; color: #cfcfcf; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
a.mlogo:hover { background: rgba(255,255,255,.18); }
.foot-brands { background: var(--footer-2); padding: 26px 0; }
.foot-brands .wrap {
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: center;
}
.foot-brands .bw {
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 18px;
  color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s;
}
.foot-brands .bw:hover { color: rgba(255,255,255,.9); }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 1000px) {
  .peek { display: block; }
}

@media (max-width: 1000px) {
  .featured-card { grid-template-columns: 1fr; gap: 22px; padding: 24px; border-radius: 30px; }
  .featured-card .f-img { width: 100%; height: auto; aspect-ratio: 1/1; }
  .featured-card .f-body { min-height: auto; }
  .f-body { align-items: flex-start; }
  .f-link { align-self: flex-start; }
  .f-arrow.prev { left: 6px; }
  .f-arrow.next { right: 6px; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cta-bar { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .foot-main .wrap { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .modal { grid-template-columns: 1fr; max-height: 88vh; }
  .modal img { max-height: 240px; }
  .modal-body { padding: 28px 26px; }
}

@media (max-width: 680px) {
  :root { --pad: 20px; }
  .site-header { height: 72px; }
  /* En mobile: solo brand-pill + suscríbete, sin hamburger */
  .hdr-utility, .hdr-right .lang, .hdr-right .icon-btn.menu, .hamburger { display: none; }
  .brand-pill { padding: 7px 16px 7px 12px; gap: 9px; }
  .brand-pill .mark { width: 30px; height: 25px; }
  .brand-sep { height: 30px; }
  .brand-txt .b1 { font-size: 17px; }
  .brand-txt .b2 { font-size: 9px; }
  .hero { min-height: 550px; }
  .hero-text { padding: 48px 18px 0; }
  #canvas { height: 320px; }
  .featured { padding: 44px 0 50px; }
  .featured-stage { min-height: auto; }
  .f-arrow { width: 46px; height: 46px; font-size: 17px; }
  .f-arrow.prev { left: -6px; }
  .f-arrow.next { right: -6px; }
  .f-title { font-size: 26px; }
  .proj-grid { grid-template-columns: 1fr; gap: 18px; }
  .proj-overlay { transform: translateY(0); opacity: 1; position: static; margin: 0; border-radius: 0; background: #fff; }
  .proj-card { aspect-ratio: auto; display: grid; grid-template-columns: 130px 1fr; align-items: stretch; background: rgba(255,255,255,.06); border-radius: 25px; }
  .proj-card img { height: 100%; border-radius: 0; }
  .proj-card .proj-overlay { background: transparent; padding: 16px; }
  .proj-card .proj-overlay h3 { color: #fff; text-align: left; font-size: 17px; }
  .proj-card .proj-overlay p { color: var(--muted); text-align: left; -webkit-line-clamp: 3; }
  .proj-card:hover { border-color: transparent; }
  .proj-card:hover img { transform: none; }
  .aliados-bar { padding: 18px 56px; }
  .a-arrow { width: 44px; height: 44px; }
  .a-arrow.prev { left: 8px; }
  .a-arrow.next { right: 8px; }
  .ally { min-width: 130px; height: 60px; }
  .cta-bar { padding: 24px; }
  .foot-cats p { font-size: 13px; line-height: 34px; }
  .foot-main .wrap { grid-template-columns: 1fr; gap: 28px; }
  .foot-brands .bw { font-size: 15px; }
  .contact-modal-back { padding: 14px; align-items: flex-start; }
  .contact-modal { max-height: calc(100vh - 28px); border-radius: 22px; margin-top: 14px; }
  .contact-modal-head { padding: 28px 24px 18px; }
  .contact-modal-head h3 { font-size: 26px; }
  .contact-form-shell { padding: 22px 24px 28px; }
  .contact-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .overlay__hamburger,
  .ec-burger-close,
  #nav__hamburger { display: none !important; }
  .mobile-section-nav {
    position: sticky;
    top: 72px;
    z-index: 55;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #ececec;
    scrollbar-width: none;
  }
  .mobile-section-nav::-webkit-scrollbar { display: none; }
  .mobile-section-nav a {
    flex: 1 0 auto;
    min-width: max-content;
    text-align: center;
    border: 1px solid #dcdcdc;
    border-radius: 100px;
    padding: 9px 14px;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
  }
  .mobile-section-nav a:hover,
  .mobile-section-nav a:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    color: #1a1a1a;
  }
  /* En mobile el botón de cerrar va dentro del menú (top-right) */
  /* Ocultar btn-suscribe en pantallas muy pequeñas */
  @media (max-width: 400px) {
    .btn-suscribe { display: none; }
  }
}
