/* ============================================================
   Clínica Jakter — nuevo sitio
   Hoja de estilos compartida
   Paleta: teal médico + dorado premium + neutros slate
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-800: #134e4a;
  --primary-soft: #ccfbf1;
  --primary-100: #f0fdfa;
  --accent: #c39a3b;
  --accent-dark: #a37e27;
  --accent-soft: #faf3e3;
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-dark: #0f172a;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 600;
}
p { margin: 0 0 1em; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
section { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #cbd5e1; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section--dark .eyebrow { background: rgba(15,118,110,.22); color: #5eead4; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s;
  line-height: 1.2;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--primary-dark); }
.btn--light:hover { background: var(--primary-soft); color: var(--primary-dark); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 40px; width: auto; }
.brand__name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.28rem; color: var(--ink); line-height: 1.1; letter-spacing: 0.01rem; }
.brand__name span { display: block; font-size: .67rem; font-weight: 500; letter-spacing: .08em; color: var(--primary); text-transform: uppercase; padding-top: 4px;}
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  color: var(--ink);
  font-weight: 500;
  font-size: .94rem;
  padding: 8px 13px;
  border-radius: 8px;
}
.nav__link:hover, .nav__link.is-active { color: var(--primary); background: var(--primary-100); }
.nav__cta { margin-left: 10px; }
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary-100) 0%, #e8f6f3 45%, #fdf8ec 100%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 72px 24px; max-width: var(--container); margin: 0 auto; }
.hero__kicker { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--primary-dark); background: #fff; border: 1px solid var(--primary-soft); padding: 8px 16px; border-radius: 999px; font-size: .85rem; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero__lead { font-size: 1.12rem; color: var(--body); max-width: 540px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stat b { font-family: 'Poppins', sans-serif; font-size: 1.6rem; color: var(--ink); display: block; }
.hero__stat span { font-size: .84rem; color: var(--muted); }
.hero__media { position: relative; }
.hero__img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
}
.hero__badge b { display: block; color: var(--ink); font-size: .95rem; }
.hero__badge--1 { top: 20px; left: -22px; }
.hero__badge--2 { bottom: 24px; right: -18px; }
.hero__badge .ico { font-size: 1.5rem; }

/* ---------- Trust bar ---------- */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 0; }
.trust__item { text-align: center; }
.trust__item b { font-family: 'Poppins', sans-serif; font-size: 1.35rem; color: var(--primary); display: block; }
.trust__item span { font-size: .86rem; color: var(--muted); }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__body { padding: 22px; }
.card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card__body p { font-size: .93rem; margin-bottom: 14px; }
.card__link { font-weight: 600; font-size: .9rem; }

.service-card { position: relative; display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__media { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.service-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.2rem; }
.service-card__body p { flex: 1; font-size: .92rem; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/5; object-fit: cover; }
.split__flag { position: absolute; bottom: -18px; left: 24px; background: var(--accent); color: #fff; font-weight: 600; border-radius: 12px; padding: 14px 20px; box-shadow: var(--shadow); }
.split__media--compact { max-width: 300px; }
.split--aside { grid-template-columns: 300px 1fr; }
.split--aside-right { grid-template-columns: 1fr 300px; }
.split--aside-right-lg { grid-template-columns: 1fr 380px; }
.split__media--380 { max-width: 380px; }
.split__flag b { display: block; font-size: 1.5rem; font-family: 'Poppins', sans-serif; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--primary); width: 20px; height: 20px; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; }

/* ---------- Contadores ---------- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter { text-align: center; padding: 30px 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.counter b { font-family: 'Poppins', sans-serif; font-size: 2.2rem; color: #5eead4; display: block; }
.counter span { font-size: .88rem; color: #cbd5e1; }

/* ---------- Testimonios ---------- */
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); flex: 1; }
.testimonial__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { margin: 0 0 18px; font-size: .98rem; font-style: italic; color: var(--body); }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif; }
.testimonial__author b { display: block; color: var(--ink); font-size: .95rem; }
.testimonial__author span { font-size: .8rem; color: var(--muted); }

/* ---------- Videos / contenido ---------- */
.video-frame { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__body { padding: 18px 20px; }
.video-card__body h3 { font-size: 1rem; }
.video-card__body p { font-size: .85rem; margin: 0; }
.video-meta { font-size: .8rem; color: var(--muted); }

/* ---------- Podcast ---------- */
.podcast { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.podcast__art { background: linear-gradient(135deg, var(--primary) , var(--primary-800)); color: #fff; padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.podcast__art .ico { font-size: 3rem; margin-bottom: 12px; }
.podcast__art h3 { color: #fff; font-size: 1.6rem; }
.podcast__art p { color: #ccfbf1; }
.podcast__embed { padding: 24px; }
.podcast__embed iframe { width: 100%; border-radius: 12px; border: 0; min-height: 420px; }

/* ---------- Blog ---------- */
.tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--primary) 0%, var(--primary-800) 100%); border-radius: 22px; color: #fff; padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 6px; }
.cta-banner p { color: #ccfbf1; margin: 0; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; align-items: flex-start; }
.contact-card .ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--primary-100); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-card b { display: block; color: var(--ink); margin-bottom: 2px; }
.contact-card p { margin: 0; font-size: .92rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Mapa ---------- */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-frame iframe { width: 100%; height: 360px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #cbd5e1; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: #5eead4; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { font-size: .9rem; }
.footer ul li { margin-bottom: 10px; font-size: .92rem; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; transition: .2s; }
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: #94a3b8; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Page hero (interiores) ---------- */
.page-hero { background: linear-gradient(135deg, var(--primary-100), #eef6f9); padding: 64px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.page-hero .breadcrumb a { color: var(--primary); }

/* ---------- Detalles de servicio ---------- */
.svc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.svc-top img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.pathology-chip { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #ecd9ac; padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-weight: 500; margin: 0 8px 8px 0; }

/* ---------- Detalles <details> para blog ---------- */
details.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
details.article summary { cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details.article summary::-webkit-details-marker { display: none; }
details.article summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); font-weight: 400; }
details.article[open] summary::after { content: "–"; }
details.article .article__body { padding-top: 16px; border-top: 1px solid var(--line); margin-top: 16px; }

/* ---------- Línea de tiempo ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline__item { position: relative; margin-bottom: 24px; }
.timeline__item::before { content: ""; position: absolute; left: -31px; top: 22px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.timeline__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.timeline__year { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 1rem; letter-spacing: .02em; display: inline-block; background: var(--primary-100); border: 1px solid var(--primary-soft); padding: 3px 12px; border-radius: 999px; margin-bottom: 10px; }
.timeline__card h3 { font-size: 1.05rem; margin: 0 0 6px; }
.timeline__card p { font-size: .93rem; margin: 0; }

/* ---------- Libros ---------- */
.book-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.book-card__cover { position: relative; width: 128px; height: 182px; margin: 0 auto 18px; border-radius: 8px; background: linear-gradient(160deg, var(--primary) 0%, var(--primary-800) 100%); box-shadow: var(--shadow); overflow: hidden; }
.book-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.book-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.book-card .book-year { font-size: .85rem; color: var(--accent-dark); font-weight: 600; letter-spacing: .06em; }
.book-card p:last-child { font-size: .9rem; color: var(--muted); margin: 10px 0 0; }

/* ---------- Slider testimonios ---------- */
.tslider { position: relative; max-width: 1000px; margin: 0 auto; touch-action: pan-y; }
.tslider__viewport { overflow: hidden; }
.tslider__track { display: flex; transition: transform .5s ease; }
.tslider__slide { flex: 0 0 33.3333%; min-width: 0; padding: 0 12px; box-sizing: border-box; display: flex; }
.tslider__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); z-index: 2; transition: .2s; }
.tslider__arrow:hover { border-color: var(--primary); color: var(--primary); }
.tslider__arrow--prev { left: -64px; }
.tslider__arrow--next { right: -64px; }
.tslider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.tslider__dot { width: 9px; height: 9px; border-radius: 999px; background: var(--line); border: 0; cursor: pointer; padding: 0; transition: .2s; }
.tslider__dot.is-active { background: var(--primary); width: 24px; }

/* ---------- Tarjetas clicables ---------- */
.is-clickable { cursor: pointer; }

/* ---------- Subtítulos dentro de secciones ---------- */
.sub-title { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: var(--primary); margin: 46px 0 20px; display: flex; align-items: center; gap: 10px; }
.sub-title::before { content: ""; width: 4px; height: 18px; border-radius: 4px; background: var(--accent); }

/* ---------- Redes sociales ---------- */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.social-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.social-card__head { display: flex; align-items: center; gap: 14px; }
.social-card__logo { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 auto; }
.social-card__logo--fb { background: #1877F2; }
.social-card__logo--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card h3 { margin: 0; font-size: 1.15rem; }
.social-card__head p { margin: 2px 0 0; font-size: .85rem; color: var(--muted); }
.social-card__embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.social-card__embed iframe { display: block; width: 100%; height: 460px; border: 0; }
.ig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ig-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; display: block; }
@media (max-width: 760px) { .social-grid { grid-template-columns: 1fr; } }

/* Instagram destacado */
.social-featured { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; align-items: center; border-radius: var(--radius); padding: 32px; color: #fff; background: linear-gradient(120deg, #405de6, #833ab4 40%, #c13584 65%, #e1306c 85%, #fd1d1d); box-shadow: var(--shadow-sm); }
.social-featured__head { display: flex; align-items: center; gap: 14px; }
.social-featured__head .social-card__logo { width: 56px; height: 56px; border-radius: 16px; }
.social-featured__tag { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: .92; margin: 0 0 2px; }
.social-featured h3 { color: #fff; font-size: 1.5rem; margin: 0; }
.social-featured__handle { font-size: .98rem; opacity: .95; margin: 2px 0 0; }
.social-featured__desc { font-size: .98rem; line-height: 1.55; margin: 16px 0 20px; max-width: 420px; }
.social-featured__info .btn--primary { background: #fff; color: #c13584; }
.social-featured__info .btn--primary:hover { background: #fce7f3; }
.ig-grid--6 { grid-template-columns: repeat(3, 1fr); }
.social-card__logo--tt { background: #111; }
@media (max-width: 760px) {
  .social-featured { grid-template-columns: 1fr; padding: 24px; }
  .ig-grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .tslider__arrow--prev { left: -12px; }
  .tslider__arrow--next { right: -12px; }
}
@media (max-width: 760px) {
  .tslider__slide { flex-basis: 100%; }
  .tslider__arrow--prev { left: 2px; }
  .tslider__arrow--next { right: 2px; }
}

/* ---------- Animaciones ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner, .split, .svc-top, .podcast, .contact-grid { grid-template-columns: 1fr; }
  .split__media--compact { width: min(100%, 300px); margin-inline: auto; }
  .split__media--380 { width: min(100%, 380px); }
  .hero__badge--1 { left: 12px; }
  .hero__badge--2 { right: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .3s;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { width: 100%; }
  .nav__cta { margin: 12px 0 0; width: 100%; text-align: center; }
  .nav__toggle { display: block; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}
