/* INMAG SERVICES TALENT — Sistema de diseño premium v2 */
/* Google Fonts se carga vía JS (inmag.js) solo tras consentimiento de cookies (RGPD) */

:root {
  /* ── PALETA ARQUITECTÓNICA ── */
  --navy:       #04101E;   /* fondo más profundo */
  --navy-2:     #081526;   /* superficie elevada */
  --navy-3:     #0D1F3A;   /* activa / hover dark */
  --blue:       #1A4E9C;   /* acción principal */
  --blue-2:     #235DB5;   /* hover */
  --blue-lt:    #4B84C8;   /* acento claro */
  --blue-glow:  rgba(26,78,156,.22);
  --sky:        #EBF2FF;   /* tint muy claro */

  /* ── ORO REFINADO ── */
  --gold:       #B99448;   /* oro premium, no chillón */
  --gold-2:     #CAA85A;   /* hover */
  --gold-dk:    #8A6E2E;
  --gold-lt:    rgba(185,148,72,.11);
  --gold-glow:  rgba(185,148,72,.22);
  --orange:     #D97706;   /* residual — amber para iconos de email en contacto */
  --gray-dk:    #2E3A4A;   /* residual — texto gris oscuro en páginas internas */

  /* ── NEUTROS ── */
  --dark:       #04101E;
  --dark2:      #081526;
  --gray:       #475566;
  --gray-2:     #60748B;
  --gray-lt:    #F4F7FB;
  --white:      #FFFFFF;
  --border:     #DDE6F2;
  --border-dk:  rgba(255,255,255,.08);

  /* ── GLASS ── */
  --glass:        rgba(255,255,255,.055);
  --glass-border: rgba(255,255,255,.10);

  /* ── FORMA ── */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-md:  18px;
  --radius-lg:  26px;

  /* ── ELEVACIÓN ── */
  --shadow-xs:  0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-md:  0 8px 40px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 64px rgba(0,0,0,.20);
  --shadow-blue: 0 8px 32px rgba(26,78,156,.26);
  --shadow-gold: 0 8px 32px rgba(185,148,72,.28);

  /* ── TRANSICIONES ── */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --trans-micro: all .12s cubic-bezier(.16,1,.3,1);
  --trans-fast:  all .20s cubic-bezier(.16,1,.3,1);
  --trans:       all .28s cubic-bezier(.16,1,.3,1);
  --trans-slow:  all .48s cubic-bezier(.16,1,.3,1);

  /* ── TIPOGRAFÍA ── */
  --font:      'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font);
  font-size: 16px;
  color: #374151;
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--trans-fast); }
a:hover { color: var(--blue-2); }
ul { list-style: none; }

h1 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.14;
  color: var(--dark);
  letter-spacing: -.02em;
}
h2 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -.018em;
}
h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .91rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--trans);
  letter-spacing: .025em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(140deg, var(--blue-2) 0%, var(--blue) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--blue-glow);
  border-color: transparent;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--blue-glow), 0 2px 8px rgba(0,0,0,.12);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(140deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.32);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.11);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--navy-3); color: #fff; transform: translateY(-2px); }

.btn-orange { background: #E07B1A; color: #fff; }
.btn-orange:hover { background: #C86D14; color: #fff; transform: translateY(-2px); }

/* ── TAG / PILL ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,78,156,.09);
  color: var(--blue-2);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(26,78,156,.13);
}
.tag-gold  { background: var(--gold-lt); color: var(--gold-dk); border-color: rgba(185,148,72,.18); }
.tag-dark  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.11); }
.tag-white { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.18); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: .81rem;
  color: rgba(255,255,255,.46);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar a { color: rgba(255,255,255,.46); }
.topbar a:hover { color: rgba(255,255,255,.88); }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-social  { display: flex; gap: 14px; align-items: center; }
.topbar-social a { font-size: .93rem; transition: var(--trans-fast); }
.topbar-social a:hover { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border-bottom: 1px solid rgba(4,16,30,.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 18px rgba(4,16,30,.05);
  transition: box-shadow .3s;
}
.navbar.is-scrolled { box-shadow: 0 4px 30px rgba(4,16,30,.10); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: .83rem;
  color: var(--dark);
  position: relative;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
  transition: var(--trans-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  transition: width .22s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: calc(100% - 24px); }
.nav-links a:hover { color: var(--blue); background: rgba(26,78,156,.05); }
.nav-cta {
  background: linear-gradient(140deg, var(--blue-2) 0%, var(--blue) 100%) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 14px var(--blue-glow) !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 22px var(--blue-glow) !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 6px; border-radius: var(--radius-sm);
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--dark); transition: var(--trans); border-radius: 2px; }
.nav-toggle:hover span { background: var(--blue); }

/* ── HERO (páginas interiores) ── */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-3) 60%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-text h1 { font-size: 2.6rem; color: #fff; margin-bottom: 18px; }
.hero-text h1 span { color: var(--blue-lt); }
.hero-text p { font-size: 1.08rem; color: rgba(255,255,255,.70); margin-bottom: 34px; max-width: 480px; line-height: 1.76; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { display: flex; justify-content: center; }
.hero-img img { width: 380px; max-width: 100%; border-radius: var(--radius-md); box-shadow: 0 24px 64px rgba(0,0,0,.42); object-fit: cover; aspect-ratio: 3/4; }

/* ── SECCIONES ── */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--gray-lt); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.58); }
.section-navy { background: var(--navy-2); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-gold { background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%); color: #fff; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 16px; }
.section-header p { font-size: 1.03rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.76; }

/* ── TARJETAS DE SERVICIOS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,78,156,.14);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,78,156,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(26,78,156,.10);
  transition: var(--trans);
}
.service-card:hover .service-icon { background: rgba(26,78,156,.14); }
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--gray); font-size: .93rem; flex: 1; line-height: 1.65; }
.service-img { width: 100%; height: 160px; object-fit: contain; border-radius: 6px; margin-top: 8px; }

/* ── TESTIMONIALES ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--trans);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.testi-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
  border-color: rgba(185,148,72,.28);
  box-shadow: 0 12px 44px rgba(0,0,0,.25);
}
.testi-stars { color: var(--gold); font-size: .92rem; letter-spacing: 3px; }
.testi-text {
  color: rgba(255,255,255,.74);
  font-size: .93rem;
  font-style: italic;
  flex: 1;
  line-height: 1.72;
}
.testi-text::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.45em;
  margin-right: 3px;
  opacity: .7;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author strong { color: #fff; font-size: .92rem; }
.testi-author span { color: rgba(255,255,255,.44); font-size: .82rem; }
.testi-logo { height: 33px; width: auto; filter: brightness(0) invert(1) opacity(.46); object-fit: contain; }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,78,156,.14);
}
.blog-card-img { height: 210px; object-fit: cover; width: 100%; transition: transform .5s var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag { font-size: .70rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-2); }
.blog-card-body h3 { font-size: 1.02rem; color: var(--dark); line-height: 1.44; }
.blog-card-body p { color: var(--gray); font-size: .88rem; flex: 1; line-height: 1.65; }
.blog-card-body a { font-weight: 600; font-size: .86rem; color: var(--blue); margin-top: auto; }
.blog-card-body a:hover { color: var(--gold-dk); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: linear-gradient(140deg, var(--navy-2) 0%, var(--navy-3) 55%, #122B5A 100%);
  color: #fff;
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 25% 0%, rgba(185,148,72,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 100%, rgba(26,78,156,.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact-strip h2 { color: #fff; font-size: clamp(1.9rem,3.5vw,2.7rem); margin-bottom: 16px; position: relative; }
.contact-strip p {
  color: rgba(255,255,255,.68);
  margin: 0 auto 38px;
  font-size: 1.04rem;
  position: relative;
  max-width: 560px;
}
.contact-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.46);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(185,148,72,.11);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.055);
  margin-bottom: 28px;
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1) opacity(.82); margin-bottom: 20px; }
.footer-brand p { font-size: .87rem; max-width: 260px; line-height: 1.72; color: rgba(255,255,255,.44); }
.footer-col h4 {
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-family: var(--font);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,.44); font-size: .87rem; transition: var(--trans-fast); }
.footer-col ul li a:hover { color: rgba(255,255,255,.88); padding-left: 3px; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: .87rem; }
.footer-contact a { color: rgba(255,255,255,.44); transition: var(--trans-fast); }
.footer-contact a:hover { color: rgba(255,255,255,.88); }
.footer-social { display: flex; gap: 9px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: rgba(255,255,255,.46);
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--gold-glow);
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .81rem; color: rgba(255,255,255,.30); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 65%, var(--blue) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 110%, rgba(185,148,72,.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 15%, rgba(75,132,200,.16) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem,4vw,2.9rem); color: #fff; margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.04rem; position: relative; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .82rem; color: rgba(255,255,255,.44); margin-bottom: 18px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,.44); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.28); }

/* ── CEO PAGE ── */
.ceo-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.ceo-img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.ceo-text h2 { font-size: 1.9rem; margin-bottom: 8px; }
.ceo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.ceo-tag {
  background: var(--gold-lt);
  color: var(--gold-dk);
  font-size: .78rem; font-weight: 600;
  padding: 4px 14px; border-radius: 50px;
  border: 1px solid rgba(185,148,72,.2);
}
.ceo-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.76; }

.badge-linkedin {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #EEF4FF 0%, #E8F0FF 100%);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.badge-linkedin img { height: 56px; width: auto; }
.badge-linkedin div h4 { font-size: .97rem; margin-bottom: 4px; }
.badge-linkedin div p { color: var(--gray); font-size: .87rem; margin: 0; }

.book-card {
  display: flex; gap: 28px; align-items: center;
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.book-card img { width: 140px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.book-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.book-card p { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }

.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.media-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

.podcast-card {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.podcast-icon { font-size: 2.2rem; }
.podcast-card h3 { margin-bottom: 8px; }
.podcast-card p { color: var(--gray); font-size: .9rem; }

/* ── BLOG ARTICLE ── */
.blog-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 36px; }
.article-body { max-width: 800px; margin: 0 auto; }
.article-body h1 { font-size: 2.2rem; margin-bottom: 20px; }
.article-body p { margin-bottom: 18px; color: #475569; line-height: 1.8; }
.article-body h2 { font-size: 1.5rem; margin: 32px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; color: #475569; }
.article-body ul li { margin-bottom: 8px; }
.article-body img { border-radius: var(--radius); margin: 28px 0; width: 100%; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; font-size: .9rem; color: var(--gray); flex-wrap: wrap; }
.article-meta .tag { background: var(--gold-lt); color: var(--gold-dk); padding: 3px 12px; border-radius: 50px; font-weight: 600; margin: 0; }

.blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── PÁGINA CONTACTO ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; margin-bottom: 8px; }
.contact-info p { color: var(--gray); margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold-lt);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dk);
  border: 1px solid rgba(185,148,72,.2);
}
.contact-item-text strong { display: block; font-size: .79rem; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text p { color: var(--dark); font-size: .94rem; margin: 0; }
.contact-form-box {
  background: var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .94rem;
  background: #fff; transition: var(--trans-fast);
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,78,156,.10);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.map-frame { width: 100%; height: 340px; border: none; border-radius: var(--radius); margin-top: 40px; }

/* ── COUNTER STRIP ── */
.counter-strip {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 52%, #112849 100%);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 38% 80% at 15% 50%, rgba(185,148,72,.09) 0%, transparent 60%),
    radial-gradient(ellipse 38% 80% at 85% 50%, rgba(75,132,200,.12) 0%, transparent 60%);
  pointer-events: none;
}
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; }
.counter-item { padding: 16px; }
.counter-value { display: flex; align-items: baseline; justify-content: center; line-height: 1; gap: 2px; }
.counter-num { font-size: 2.9rem; font-weight: 800; color: #fff; font-family: var(--font); letter-spacing: -.02em; }
.counter-suffix { font-size: 2rem; font-weight: 800; color: var(--gold); }
.counter-label { font-size: .82rem; color: rgba(255,255,255,.56); margin-top: 10px; font-weight: 500; }
.counter-divider { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; margin: 12px auto 0; opacity: .65; }

/* ── FLOATING WHATSAPP ── */
.floating-wa {
  position: fixed; bottom: 28px; right: 24px; z-index: 9000;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  color: #fff; text-decoration: none;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.floating-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.52);
  color: #fff;
}
.floating-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .48; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ── MOBILE STICKY BOTTOM BAR ── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8500; box-shadow: 0 -1px 18px rgba(0,0,0,.20);
}
.mobile-bar-inner { display: flex; }
.mobile-bar a {
  flex: 1; padding: 12px 6px 14px; text-align: center;
  font-size: .72rem; font-weight: 700; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; border-right: 1px solid rgba(255,255,255,.10);
  transition: filter .15s;
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a:hover { filter: brightness(1.12); color: #fff; }
.mobile-bar a.mb-phone { background: var(--blue); }
.mobile-bar a.mb-wa    { background: #25D366; }
.mobile-bar a.mb-email { background: var(--navy-3); }
.mobile-bar-icon { font-size: 1.22rem; line-height: 1; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── COMPONENTES PREMIUM ── */

.callout-quote {
  border-left: 3px solid var(--gold);
  background: var(--gold-lt);
  padding: 22px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin: 32px 0;
}

.prem-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.prem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.prem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.divider-center {
  display: flex; align-items: center; gap: 20px;
  color: var(--gray); font-size: .77rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; margin: 40px 0;
}
.divider-center::before, .divider-center::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.logo-wall {
  display: flex; align-items: center; justify-content: center;
  gap: 44px; flex-wrap: wrap; padding: 40px 0;
}
.logo-wall img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.36); transition: var(--trans); }
.logo-wall img:hover { filter: grayscale(0) opacity(1); transform: scale(1.04); }

.award-strip { display: flex; gap: 18px; flex-wrap: wrap; margin: 24px 0; }
.award-badge {
  display: flex; align-items: center; gap: 9px;
  background: var(--gold-lt);
  border: 1px solid rgba(185,148,72,.24);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .81rem; font-weight: 700;
  color: var(--gold-dk);
  transition: var(--trans-fast);
}
.award-badge:hover { background: rgba(185,148,72,.17); }
.award-badge-icon { font-size: 1rem; }

.stat-big { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--blue); line-height: 1; letter-spacing: -.03em; }
.stat-label { font-size: .85rem; color: var(--gray); font-weight: 500; margin-top: 4px; }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .60s var(--ease-out), transform .60s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── BARRA DE PROGRESO DE LECTURA ── */
#rd-prog {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 9999; width: 0; pointer-events: none;
  transition: width .1s linear;
}

/* ── TABLA DE CONTENIDOS ── */
.article-toc {
  background: var(--gray-lt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 0 0 32px;
}
.toc-title { font-size: .71rem !important; font-weight: 700 !important; letter-spacing: .13em; text-transform: uppercase; color: var(--blue) !important; margin-bottom: 12px !important; line-height: 1.4 !important; }
.article-toc ol { list-style: decimal; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.article-toc ol li a { font-size: .9rem; color: var(--dark); font-weight: 500; }
.article-toc ol li a:hover { color: var(--blue); }

/* ── ANIMACIÓN CAROUSEL ── */
.testi-carousel { animation: carouselIn .65s var(--ease-out) both; }
@keyframes carouselIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ceo-profile { grid-template-columns: 280px 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-img img { width: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    position: fixed; inset: 76px 0 0 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    flex-direction: column; align-items: center;
    justify-content: flex-start; padding: 36px 20px; gap: 4px;
    border-top: 1px solid var(--border); z-index: 999; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .ceo-profile { grid-template-columns: 1fr; }
  .ceo-img { max-width: 300px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .book-card { flex-direction: column; }
  .topbar { display: none; }
  .mobile-bar { display: block; }
  body { padding-bottom: 58px; }
  .floating-wa { bottom: 78px; right: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .counter-num { font-size: 2.4rem; }
  .contact-strip-btns { flex-direction: column; align-items: center; }
  .contact-strip-btns .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .form-2col { grid-template-columns: 1fr; }
  .logo-wall { gap: 24px; }
  .logo-wall img { height: 30px; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.78rem; }
  .topbar .container { flex-direction: column; gap: 6px; }
  .contact-form-box { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .floating-wa { bottom: 70px; right: 12px; width: 50px; height: 50px; font-size: 1.35rem; }
  .counter-num { font-size: 2rem; }
  .counter-suffix { font-size: 1.5rem; }
  .counter-label { font-size: .78rem; }
  .navbar .container { height: 64px; }
  .nav-logo img { height: 42px; }
  .award-strip { gap: 10px; }
}