/* ===========================
   MAGNO PARTNERS — Stylesheet
   Brand: Graphite Black + Coral
   Font: Inter
   =========================== */

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

:root {
  --black:      #0F0F12;
  --black-soft: #141418;
  --dark-gray:  #2E2E2E;
  --mid-gray:   #6B6B6B;
  --light-gray: #E6E6E6;
  --white:      #FFFFFF;
  --coral:      #FF5A5F;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --section-py: 100px;
  --container: 1200px;
  --radius: 4px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark-gray);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- Utility ---------- */
.hide-mobile { display: inline; }

/* ---------- Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 15, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(15, 15, 18, 0.98);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__isologo {
  height: 34px;
  width: 34px;
  flex-shrink: 0;
}
.nav__wordmark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.nav__wordmark span {
  color: rgba(255,255,255,0.5);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }
.nav__link--cta {
  color: var(--coral);
  border: 1px solid rgba(255,90,95,0.4);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav__link--cta:hover {
  background: var(--coral);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
}
.btn--primary:hover {
  background: #e04a50;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--light-gray);
}
.btn--outline:hover {
  border-color: var(--dark-gray);
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
}

.hero__headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__headline--accent {
  color: var(--coral);
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }

.stat__number {
  font-size: 36px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.hero__scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--coral);
  animation: scrollLine 2s infinite var(--ease);
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===========================
   SECTIONS (shared)
   =========================== */
.section {
  padding: var(--section-py) 0;
}
.section--dark {
  background: var(--black);
}
.section--light {
  background: var(--white);
}

.section__header {
  margin-bottom: 64px;
}
.section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.section__tag--coral { color: var(--coral); }

.section__title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
}
.section__title--light { color: var(--white); }

.section__sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid-gray);
  max-width: 560px;
}

/* ===========================
   SOBRE / QUIÉNES SOMOS
   =========================== */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sobre__lead {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--dark-gray);
  margin-bottom: 24px;
}
.sobre__lead strong { color: var(--black); font-weight: 600; }

.sobre__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

.sobre__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--coral);
  border: 1px solid rgba(255,90,95,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

.manifesto-card {
  background: var(--black);
  border-radius: 8px;
  padding: 48px;
}
.manifesto-card__quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.manifesto-card__divider {
  width: 32px;
  height: 2px;
  background: var(--coral);
  margin-bottom: 24px;
}
.manifesto-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.manifesto-card__sign {
  display: block;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--coral);
}

/* ===========================
   EL PROBLEMA
   =========================== */
.problema__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.problema__text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.problema__text strong {
  color: var(--white);
  font-weight: 600;
}

.problema__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problema__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.problema__item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.problema__arrow {
  color: var(--coral);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.problema__item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.conclusion-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.conclusion-bar__line {
  width: 48px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.conclusion-bar__text {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.conclusion-bar__text em { color: var(--white); font-style: normal; }
.conclusion-bar__text strong { color: var(--coral); font-weight: 600; }

/* ===========================
   QUÉ HACEMOS
   =========================== */
.pilares__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.pilar {
  background: var(--white);
  padding: 48px;
  position: relative;
  transition: background 0.2s;
}
.pilar:hover { background: #fafafa; }

.pilar__number {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 20px;
}
.pilar__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.3;
}
.pilar__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 24px;
}
.pilar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pilar__list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  padding-left: 16px;
  position: relative;
}
.pilar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

/* ===========================
   CÓMO TRABAJAMOS
   =========================== */
.metodologia {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.metodologia__principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.metodo-card {
  background: var(--black-soft);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.metodo-card__icon {
  display: block;
  font-size: 18px;
  color: var(--coral);
  margin-bottom: 16px;
  font-weight: 700;
}
.metodo-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.metodo-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

.kpi-display {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,90,95,0.04);
  border: 1px solid rgba(255,90,95,0.15);
  border-radius: 8px;
  padding: 8px 0;
}

.kpi {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  gap: 4px;
}
.kpi__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.03em;
  line-height: 1;
}
.kpi__unit {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.kpi__label {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.kpi__separator {
  height: 1px;
  background: rgba(255,90,95,0.15);
  margin: 0 40px;
}

/* ===========================
   EXPERTISE
   =========================== */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.expertise-item {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.expertise-item:hover { background: #f9f9f9; }

.expertise-item__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.expertise-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-gray);
}

/* ===========================
   CASOS
   =========================== */
.casos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.caso {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
}
.caso:hover {
  border-color: rgba(255,90,95,0.3);
  background: rgba(255,90,95,0.03);
}
.caso--confidential {
  border-style: dashed;
  opacity: 0.7;
}

.caso__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.caso__org {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.caso__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.caso__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.caso__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.caso__tags span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ===========================
   FORMATOS
   =========================== */
.formatos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.formato {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.formato:hover {
  border-color: #ccc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.formato--featured {
  border-color: var(--coral);
  background: #fff9f9;
}
.formato--featured:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(255,90,95,0.12);
}

.formato__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.formato__duration {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.formato__weeks {
  font-size: 40px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.03em;
  line-height: 1;
}
.formato__unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-gray);
}
.formato__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.formato__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid-gray);
  flex: 1;
}
.formato__deliverables {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.formato__deliverables li {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-gray);
  padding-left: 14px;
  position: relative;
}
.formato__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

/* ===========================
   POR QUÉ MAGNO
   =========================== */
.porque__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.porque__item {
  padding: 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.porque__item:hover { background: rgba(255,255,255,0.02); }
.porque__item:nth-child(3n) { border-right: none; }
.porque__item:nth-last-child(-n+3) { border-bottom: none; }

.porque__number {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 16px;
}
.porque__item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}
.porque__item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* ===========================
   EQUIPO
   =========================== */
.equipo__card {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 64px;
  background: var(--black);
  border-radius: 12px;
}

.equipo__isologo { flex-shrink: 0; }
.equipo__img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--coral);
}

.equipo__name {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.equipo__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.equipo__divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}
.equipo__creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.equipo__creds li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.cred__arrow {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   CONTACTO
   =========================== */
.section--contacto {
  padding-bottom: 0;
}

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 100px;
}

.contacto__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.contacto__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.contacto__info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.contacto__info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.contacto__info svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--coral);
}
.contacto__info a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.contacto__info a:hover {
  color: var(--white);
}

.contacto__logo-img {
  height: 56px;
  width: auto;
  opacity: 0.5;
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form__group input,
.form__group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: rgba(255,90,95,0.5);
}

.form__feedback {
  font-size: 13px;
  min-height: 18px;
  margin-top: -8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer__isologo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}
.footer__wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.footer__wordmark span { color: rgba(255,255,255,0.3); }
.footer__logo p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .formatos__grid { grid-template-columns: repeat(2, 1fr); }
  .porque__grid { grid-template-columns: repeat(2, 1fr); }
  .porque__item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .porque__item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .container { padding: 0 24px; }
  .hide-mobile { display: none; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    padding: 24px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__links.open { display: flex; }
  .nav__link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav__link--cta { border: none; }
  .nav__burger { display: flex; }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .stat__divider { width: 100%; height: 1px; }
  .stat { padding: 0; }
  .hero__scroll { display: none; }

  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .problema__grid { grid-template-columns: 1fr; gap: 40px; }
  .pilares__grid { grid-template-columns: 1fr; gap: 2px; }
  .metodologia { grid-template-columns: 1fr; gap: 48px; }
  .metodologia__principles { grid-template-columns: 1fr; }
  .expertise__grid { grid-template-columns: 1fr; }
  .casos__grid { grid-template-columns: 1fr; }
  .formatos__grid { grid-template-columns: 1fr; }
  .porque__grid { grid-template-columns: 1fr; }
  .porque__item { border-right: none !important; }

  .equipo__card {
    flex-direction: column;
    gap: 40px;
    padding: 40px 32px;
    text-align: center;
  }
  .equipo__divider { margin: 24px auto; }

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

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