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

:root {
  --blue:      #1a5fb4;
  --blue-lt:   #4a90d9;
  --blue-dk:   #0d3b6e;
  --blue-glow: rgba(26,95,180,.18);
  --gold:      #c9a84c;
  --gold-dk:   #a8892f;
  --gold-lt:   rgba(201,168,76,.15);
  --orange:    #e8861f;
  --dark:      #0a1220;
  --dark2:     #0d1b2a;
  --gray:      #4b5566;
  --gray-lt:   #f4f6f9;
  --white:     #ffffff;
  --border:    #e2e8f0;
  --radius:    10px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.09);
  --shadow-md: 0 8px 32px rgba(0,0,0,.13);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --trans:     all .28s cubic-bezier(.4,0,.2,1);
  --font:      'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

*, *::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: #334155;
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
}
h2 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
}
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 24px; }

/* ── BOTONES ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  letter-spacing: .02em;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: var(--blue-dk); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px var(--blue-glow); }
.btn-gold     { background: var(--gold); color: #fff; }
.btn-gold:hover     { background: var(--gold-dk); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover  { background: var(--blue); color: #fff; }
.btn-dark     { background: var(--dark); color: #fff; }
.btn-dark:hover     { background: #1a2840; color: #fff; }
.btn-orange   { background: var(--orange); color: #fff; }
.btn-orange:hover   { background: #c97218; color: #fff; }

/* ── TAG / PILL ── */
.tag {
  display: inline-block;
  background: rgba(26,95,180,.1);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.tag-gold { background: var(--gold-lt); color: var(--gold-dk); }
.tag-dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.tag-white { background: rgba(255,255,255,.15); color: #fff; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  font-size: .83rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar a { color: #94a3b8; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-social  { display: flex; gap: 14px; align-items: center; }
.topbar-social a { font-size: 1rem; transition: var(--trans); }
.topbar-social a:hover { color: var(--gold); }

/* ── NAV ── */
.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
  position: relative;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: .01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: calc(100% - 24px); }
.nav-links a:hover { color: var(--blue); background: rgba(26,95,180,.05); }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 8px 22px !important; border-radius: 50px !important; }
.nav-cta:hover { background: var(--blue-dk) !important; color: #fff !important; box-shadow: 0 4px 16px var(--blue-glow); }
.nav-cta::after { display: none !important; }

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

/* ── HERO (legacy) ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dk) 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: 16px; }
.hero-text h1 span { color: var(--blue-lt); }
.hero-text p { font-size: 1.1rem; color: #cbd5e0; margin-bottom: 32px; max-width: 480px; }
.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: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.4); object-fit: cover; aspect-ratio: 3/4; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--gray-lt); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #94a3b8; }
.section-navy { background: var(--dark2); 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: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ── SERVICIOS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,95,180,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--gray); font-size: .95rem; flex: 1; }
.service-img { width: 100%; height: 160px; object-fit: contain; border-radius: 6px; margin-top: 8px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--trans);
}
.testi-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); border-color: rgba(201,168,76,.3); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-text { color: #e2e8f0; font-size: .95rem; font-style: italic; flex: 1; line-height: 1.7; }
.testi-text::before { content: '"'; font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -.5em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author strong { color: #fff; font-size: .95rem; }
.testi-author span { color: #94a3b8; font-size: .85rem; }
.testi-logo { height: 36px; width: auto; filter: brightness(0) invert(1) opacity(.6); 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-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 210px; object-fit: cover; width: 100%; transition: transform .4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
}
.blog-card-body h3 { font-size: 1.05rem; color: var(--dark); line-height: 1.45; }
.blog-card-body p { color: var(--gray); font-size: .9rem; flex: 1; }
.blog-card-body a { font-weight: 600; font-size: .88rem; color: var(--blue); margin-top: auto; }
.blog-card-body a:hover { color: var(--gold-dk); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--blue-dk) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-strip h2 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.4rem); margin-bottom: 14px; position: relative; }
.contact-strip p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.contact-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; max-width: 270px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .8rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .12em; font-family: var(--font); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #94a3b8; font-size: .9rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: #94a3b8;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .84rem; }

/* ── PÁGINA INTERIOR — HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dk) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem,4vw,2.8rem); color: #fff; margin-bottom: 14px; position: relative; }
.page-hero p { color: #cbd5e0; font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .85rem; color: #94a3b8; margin-bottom: 18px; position: relative; }
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #64748b; }

/* ── CEO PAGE ── */
.ceo-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.ceo-img { border-radius: var(--radius-lg); 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: .8rem; font-weight: 600;
  padding: 4px 14px; border-radius: 50px;
}
.ceo-text p { color: var(--gray); margin-bottom: 16px; }

.badge-linkedin {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 100%);
  border-radius: 14px; padding: 22px 26px;
  border-left: 4px solid var(--gold); margin: 24px 0;
  box-shadow: 0 4px 16px rgba(26,95,180,.08);
}
.badge-linkedin img { height: 60px; width: auto; }
.badge-linkedin div h4 { font-size: 1rem; margin-bottom: 4px; }
.badge-linkedin div p { color: var(--gray); font-size: .9rem; margin: 0; }

.book-card {
  display: flex; gap: 28px; align-items: center;
  background: var(--gray-lt); border-radius: 14px; padding: 28px;
  box-shadow: var(--shadow);
}
.book-card img { width: 140px; border-radius: 8px; box-shadow: var(--shadow); }
.book-card h3 { font-size: 1.2rem; 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: 12px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }

.podcast-card {
  background: var(--gray-lt);
  border-radius: 14px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow);
}
.podcast-icon { font-size: 2.4rem; }
.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: 16px; 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: 12px; 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; }

/* ── CONTACT PAGE ── */
.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: 50px; height: 50px; min-width: 50px;
  background: var(--gold-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold-dk);
}
.contact-item-text strong { display: block; font-size: .83rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text p { color: var(--dark); font-size: .95rem; margin: 0; }
.contact-form-box { background: var(--gray-lt); border-radius: 20px; padding: 44px; box-shadow: var(--shadow); }
.contact-form-box h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; 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);
  font-family: var(--font); font-size: .95rem;
  background: #fff; transition: var(--trans);
}
.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,95,180,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.map-frame { width: 100%; height: 340px; border: none; border-radius: 14px; margin-top: 40px; }

/* ── COUNTERS STRIP ── */
.counter-strip {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--blue-dk) 50%, var(--blue) 100%);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(201,168,76,.1) 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: 12px; }
.counter-value { display: flex; align-items: baseline; justify-content: center; line-height: 1; }
.counter-num { font-size: 3rem; font-weight: 800; color: #fff; font-family: var(--font); }
.counter-suffix { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-left: 2px; }
.counter-label { font-size: .86rem; color: rgba(255,255,255,.75); margin-top: 10px; font-weight: 500; }
.counter-divider { width: 32px; height: 3px; background: var(--gold); border-radius: 2px; margin: 10px auto 0; }

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

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

/* ── PREMIUM NEW COMPONENTS ── */

/* Quote callout */
.callout-quote {
  border-left: 4px solid var(--gold);
  background: var(--gold-lt);
  padding: 20px 28px;
  border-radius: 0 12px 12px 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  margin: 32px 0;
}

/* Premium card with gold top */
.prem-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--trans);
}
.prem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Divider with center text */
.divider-center {
  display: flex; align-items: center; gap: 20px;
  color: var(--gray); font-size: .8rem; letter-spacing: .1em;
  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 */
.logo-wall {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; padding: 40px 0;
}
.logo-wall img { height: 40px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.45); transition: var(--trans); }
.logo-wall img:hover { filter: grayscale(0) opacity(1); }

/* Award / badge row */
.award-strip {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin: 24px 0;
}
.award-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold-lt);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem; font-weight: 700;
  color: var(--gold-dk);
}
.award-badge-icon { font-size: 1.1rem; }

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

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── BARRA DE PROGRESO DE LECTURA ── */
#rd-prog { position:fixed; top:0; left:0; height:3px; 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:4px solid var(--blue); border-radius:0 var(--radius) var(--radius) 0; padding:20px 24px; margin:0 0 32px; }
.toc-title { font-size:.75rem !important; font-weight:700 !important; letter-spacing:.1em; 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); }

/* ── SKELETON / ENTRADA CARRUSEL ── */
.testi-carousel { animation:carouselIn .7s ease both; }
@keyframes carouselIn { from { opacity:0; transform:translateY(16px); } 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) {
  .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: #fff; flex-direction: column; align-items: center; justify-content: flex-start; padding: 40px 20px; gap: 20px; 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: 56px; height: 56px; 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; }
  .form-2col { grid-template-columns: 1fr; }
  .logo-wall { gap: 24px; }
  .logo-wall img { height: 32px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .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: 52px; height: 52px; font-size: 1.4rem; }
  .counter-num { font-size: 2rem; }
  .counter-suffix { font-size: 1.6rem; }
  .counter-label { font-size: .8rem; }
  .navbar .container { height: 64px; }
  .nav-logo img { height: 44px; }
  .award-strip { gap: 12px; }
}
