:root {
  --ts-blue-900: #0b3a66;
  --ts-blue-700: #0c78cc;
  --ts-blue-500: #2e91dd;
  --ts-blue-300: #77bbf0;
  --ts-blue-100: #eaf5fd;
  --ts-purple: #6060eb;
  --ts-purple-100: #ededfd;
  --ts-yellow: #ffd34d;
  --ts-orange: #feb34d;
  --ts-ink: #122340;
  --ts-slate: #5b6b85;
  --ts-cloud: #f5f9fd;
  --ts-line: #e1ebf5;
  --ts-shadow-soft: 0 20px 45px -22px rgba(11, 58, 102, 0.28);
  --ts-shadow-card: 0 14px 30px -18px rgba(11, 58, 102, 0.22);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ts-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Baloo 2", sans-serif;
}

.ts-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.ts-btn:hover { transform: translateY(-2px); }
.ts-btn-primary {
  color: #fff;
  background: var(--ts-blue-500);
  box-shadow: 0 14px 26px -12px rgba(46, 145, 221, 0.65);
}
.ts-btn-primary:hover { color: #fff; background: var(--ts-blue-700); }
.ts-btn-ghost {
  color: var(--ts-blue-700);
  background: #fff;
  border: 2px solid var(--ts-blue-100);
}
.ts-btn-ghost:hover { color: var(--ts-blue-900); border-color: var(--ts-blue-300); }
.ts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--ts-blue-100);
  color: var(--ts-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ts-eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ts-yellow);
}
.ts-section { padding: 88px 0; }
.ts-section-head { max-width: 650px; margin: 0 auto 46px; text-align: center; }
.ts-section-title {
  margin: 14px 0 0;
  color: var(--ts-blue-900);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}
.ts-section-lead {
  margin: 13px 0 0;
  color: var(--ts-slate);
  font-size: 16px;
  line-height: 1.7;
}

/* Header */
.ts-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid var(--ts-line);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}
.ts-header.is-scrolled { box-shadow: 0 12px 32px -24px rgba(11, 58, 102, 0.65); }
.ts-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
}
.ts-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ts-brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 10px; }
.ts-brand span { color: var(--ts-blue-900); font-family: "Baloo 2", sans-serif; font-size: 18px; font-weight: 800; }
.ts-nav-links { display: flex; align-items: center; justify-content: center; gap: 23px; }
.ts-nav-links a {
  color: var(--ts-ink);
  opacity: 0.72;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.ts-nav-links a:hover { color: var(--ts-blue-700); opacity: 1; }
.ts-nav-actions { display: flex; align-items: center; gap: 8px; }
.ts-nav-actions .ts-btn { min-height: 38px; padding: 9px 17px; font-size: 12px; }
.ts-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--ts-blue-100);
  align-items: center;
  justify-content: center;
}
.ts-menu-toggle span,
.ts-menu-toggle span::before,
.ts-menu-toggle span::after {
  content: "";
  display: block;
  position: relative;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ts-blue-900);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.ts-menu-toggle span::before { position: absolute; top: -6px; }
.ts-menu-toggle span::after { position: absolute; top: 6px; }
.ts-menu-toggle.is-open span { background: transparent; }
.ts-menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.ts-menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }
.ts-mobile-menu { display: none; }

/* Hero */
.ts-hero {
  overflow: hidden;
  padding: 68px 0 58px;
  background: linear-gradient(180deg, var(--ts-blue-100) 0%, #fff 82%);
}
.ts-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}
.ts-hero-copy h1 {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--ts-blue-900);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.ts-hero-copy h1 em { color: var(--ts-blue-500); font-style: normal; }
.ts-hero-copy > p {
  max-width: 530px;
  margin: 20px 0 0;
  color: var(--ts-slate);
  font-size: 17px;
  line-height: 1.7;
}
.ts-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ts-hero-art { position: relative; min-width: 0; padding: 18px; }
.ts-hero-blob {
  position: absolute;
  inset: -9% -7% -8% -8%;
  background:
    radial-gradient(circle at 25% 18%, var(--ts-yellow) 0, rgba(255, 211, 77, 0) 38%),
    radial-gradient(circle at 82% 76%, var(--ts-purple-100) 0, rgba(237, 237, 253, 0) 52%);
}
.ts-hero-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px;
  border-radius: 32px;
  background: var(--ts-blue-500);
  box-shadow: var(--ts-shadow-soft);
}
.ts-hero-slides { position: relative; aspect-ratio: 1.22 / 1; overflow: hidden; border-radius: 22px; background: #dcedfb; }
.ts-hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.ts-hero-slides img.is-active { opacity: 1; transform: scale(1); }
.ts-hero-slides img.ts-hero-fallback {
  object-position: left center;
  transform: scale(1.27);
  transform-origin: left center;
}
.ts-hero-slides img.ts-hero-fallback.is-active { transform: scale(1.24); }
.ts-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ts-blue-900);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%);
}
.ts-hero-arrow.prev { left: 26px; }
.ts-hero-arrow.next { right: 26px; }
.ts-hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 27px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}
.ts-hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(255, 255, 255, 0.55); }
.ts-hero-dots button.is-active { width: 24px; background: #fff; }
.ts-hero-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 15px;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--ts-shadow-card);
}
.ts-hero-badge.top { top: 0; left: 0; }
.ts-hero-badge.bottom { right: 0; bottom: 0; }
.ts-hero-badge > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--ts-blue-700);
  background: var(--ts-blue-100);
  font-size: 17px;
}
.ts-hero-badge.bottom > i { color: #b9790a; background: #fff3d6; }
.ts-hero-badge b { display: block; color: var(--ts-blue-900); font-family: "Baloo 2", sans-serif; font-size: 14px; line-height: 1.1; }
.ts-hero-badge span { display: block; color: var(--ts-slate); font-size: 11px; font-weight: 600; }

/* Counters */
.ts-trust-strip { padding: 30px 0; background: var(--ts-blue-900); }
.ts-counter-row { display: flex; align-items: center; justify-content: center; }
.ts-counter-group { display: flex; align-items: center; flex: 1; }
.ts-counter-separator { width: 1px; height: 42px; flex: 0 0 1px; background: rgba(255, 255, 255, 0.14); }
.ts-counter { flex: 1; text-align: center; }
.ts-counter b { display: block; color: #fff; font-family: "Baloo 2", sans-serif; font-size: 32px; line-height: 1; }
.ts-counter span { display: block; margin-top: 6px; color: #9fbbd6; font-size: 11px; font-weight: 700; letter-spacing: 0.03em; }

/* About */
.ts-about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
.ts-about-visual {
  position: relative;
  display: grid;
  width: min(100%, 410px);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 47% 53% 45% 55%;
  background: var(--ts-blue-100);
}
.ts-about-mark {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--ts-blue-500), var(--ts-purple));
  box-shadow: var(--ts-shadow-soft);
  font-size: 72px;
  transform: rotate(-4deg);
}
.ts-shape { position: absolute; display: block; }
.ts-shape-one { top: 52px; left: 54px; width: 30px; height: 30px; border-radius: 50%; background: var(--ts-yellow); }
.ts-shape-two { right: 48px; top: 72px; width: 20px; height: 20px; border-radius: 6px; background: var(--ts-purple); transform: rotate(18deg); }
.ts-shape-three { right: 58px; bottom: 52px; width: 34px; height: 34px; border-radius: 10px; background: var(--ts-orange); transform: rotate(-14deg); }
.ts-pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 27px; }
.ts-pillar-card { padding: 20px; border: 1px solid var(--ts-line); border-radius: 18px; background: #fff; box-shadow: var(--ts-shadow-card); }
.ts-pillar-icon { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 13px; border-radius: 12px; font-size: 18px; }
.ts-pillar-icon.blue { color: var(--ts-blue-700); background: var(--ts-blue-100); }
.ts-pillar-icon.purple { color: var(--ts-purple); background: var(--ts-purple-100); }
.ts-pillar-icon.orange { color: #c86e00; background: #fff0d9; }
.ts-pillar-icon.yellow { color: #9c7600; background: #fff6d6; }
.ts-pillar-card h3 { margin: 0 0 5px; color: var(--ts-blue-900); font-size: 17px; font-weight: 700; }
.ts-pillar-card p { margin: 0; color: var(--ts-slate); font-size: 13px; line-height: 1.55; }

/* Plans */
.planes-section { padding: 88px 0; background: var(--ts-cloud); }
.planes-section .container { max-width: 1180px; }
.planes-section .text-center.mb-5 { max-width: 660px; margin: 0 auto 46px !important; }
.planes-title { color: var(--ts-blue-900); font-size: clamp(30px, 3.5vw, 42px); font-weight: 700; }
.planes-title .text-primary { color: var(--ts-blue-500) !important; }
.planes-subtitle { color: var(--ts-slate); font-size: 16px; line-height: 1.7; }
.plan-card-modern {
  overflow: visible;
  border: 1px solid var(--ts-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--ts-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card-modern:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -20px rgba(11, 58, 102, 0.32); }
.plan-foto-wrap { height: 205px; border-radius: 28px 28px 0 0; background: var(--ts-blue-100); }
.plan-foto-wrap img { object-fit: cover; border-radius: 28px 28px 0 0; }
.plan-card-body { padding: 25px 22px 27px; border-radius: 0 0 28px 28px; }
.plan-name-sm { color: var(--ts-blue-900) !important; font-size: 21px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.plan-tagline { min-height: 46px; color: var(--ts-slate); font-size: 13px; line-height: 1.55; }
.btn-plan-sm { padding: 10px 19px; color: var(--ts-blue-700) !important; border: 1px solid var(--ts-blue-100); background: var(--ts-blue-100) !important; }
.plan-popular-badge { top: -13px; right: auto; left: 22px; padding: 6px 13px; border-radius: 999px; color: var(--ts-blue-900); background: var(--ts-yellow); }
.plan-modal { overflow: hidden; border: 0; border-radius: 24px; }
.plan-modal-header.basico,
.plan-modal-header.integral,
.plan-modal-header.premium { background: linear-gradient(120deg, var(--ts-blue-500), var(--ts-blue-900)); }
.btn-plan.basico,
.btn-plan.integral,
.btn-plan.premium { border-radius: 999px; background: var(--ts-blue-500); }

/* CTA */
.cta-strip { padding: 0 24px 88px; background: var(--ts-cloud); }
.cta-strip-inner {
  width: min(1132px, 100%);
  min-height: 160px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--ts-blue-900);
  box-shadow: var(--ts-shadow-soft);
}
.cta-half { padding: 36px; }
.cta-half:first-child { border-right-color: rgba(255, 255, 255, 0.12); }
.cta-ico { color: var(--ts-yellow); }
.cta-text-block strong { font-family: "Baloo 2", sans-serif; font-size: 19px; }
.cta-text-block span { color: #c9def3; }
.btn-cta-outline,
.btn-cta-solid { padding: 11px 18px; border-radius: 999px; text-decoration: none; }
.btn-cta-outline { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-cta-solid { color: var(--ts-blue-900); background: var(--ts-yellow); }

/* Branches */
.sedes-section { padding: 88px 0; background: #fff; }
.sedes-section .container { max-width: 1180px; }
.section-title-dark { color: var(--ts-blue-900); font-size: clamp(30px, 3.5vw, 42px); font-weight: 700; }
.section-title-dark .text-primary { color: var(--ts-blue-500) !important; }
.section-subtitle-dark { color: var(--ts-slate); font-size: 16px; }
.sede-card-v2 {
  overflow: hidden;
  border: 1px solid var(--ts-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ts-shadow-card);
}
.sede-card-v2:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -22px rgba(11, 58, 102, 0.34); }
.sede-img-wrap { height: 205px; }
.sede-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sede-body-v2 { padding: 23px; }
.sede-name-v2 { color: var(--ts-blue-900); font-size: 20px; font-weight: 700; }
.sede-info-row i { color: var(--ts-blue-500); }
.sede-horario { background: var(--ts-blue-100); }
.btn-sede-v2 { border-radius: 999px; background: var(--ts-blue-500); }

/* FAQ */
.ts-faq { background: var(--ts-cloud); }
.ts-faq-list { display: flex; max-width: 820px; margin-inline: auto; flex-direction: column; gap: 12px; }
.ts-faq-item { overflow: hidden; border: 1px solid var(--ts-line); border-radius: 17px; background: #fff; }
.ts-faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: var(--ts-blue-900);
  font-family: "Baloo 2", sans-serif;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.ts-faq-item summary::-webkit-details-marker { display: none; }
.ts-faq-plus { display: grid; width: 30px; height: 30px; place-items: center; margin-left: auto; flex: 0 0 30px; border-radius: 50%; color: var(--ts-blue-700); background: var(--ts-blue-100); transition: transform 0.2s ease; }
.ts-faq-item[open] .ts-faq-plus { transform: rotate(45deg); }
.ts-faq-item > p { margin: 0; padding: 0 22px 22px; color: var(--ts-slate); font-size: 14px; line-height: 1.65; }

/* Footer */
.footer-main { color: #cfe0f2; background: var(--ts-blue-900); }
.footer-main .container { max-width: 1180px; }
.footer-brand-name { font-family: "Baloo 2", sans-serif; font-size: 19px; }
.footer-desc,
.footer-links a,
.footer-contact li,
.footer-contact a { color: #9fbbd6; }
.footer-col-title { font-family: "Baloo 2", sans-serif; font-size: 14px; letter-spacing: 0; text-transform: none; }
.footer-social a { border-radius: 11px; }
.footer-social a:hover { background: var(--ts-blue-500); }
.footer-bottom { border-color: rgba(255, 255, 255, 0.12); color: #82a0c0; }

/* Floating contact and emergency modal */
.ts-whatsapp-fab,
.ts-emergency-fab { position: fixed; z-index: 1080; }
.ts-whatsapp-fab {
  right: 24px;
  bottom: 102px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #24c875;
  box-shadow: 0 14px 28px -10px rgba(36, 200, 117, 0.7);
  font-size: 24px;
  text-decoration: none;
}
.ts-whatsapp-fab:hover { color: #fff; transform: translateY(-2px); }
.ts-emergency-fab {
  right: 22px;
  bottom: 24px;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #e4483a;
  box-shadow: 0 16px 30px -10px rgba(228, 72, 58, 0.6);
  font-size: 14px;
  font-weight: 800;
}
.ts-emergency-fab > i { font-size: 19px; }
.ts-emergency-pulse { position: absolute; inset: -7px; z-index: -1; border: 2px solid rgba(228, 72, 58, 0.4); border-radius: 999px; animation: ts-pulse 1.8s infinite; }
@keyframes ts-pulse { from { transform: scale(0.92); opacity: 1; } to { transform: scale(1.17); opacity: 0; } }
.ts-emergency-dialog { max-width: 760px; }
.ts-emergency-modal { overflow: hidden; border: 0; border-radius: 26px; box-shadow: 0 30px 70px -24px rgba(11, 58, 102, 0.52); }
.ts-emergency-modal-head { display: flex; align-items: center; gap: 14px; padding: 23px 25px; background: var(--ts-blue-100); }
.ts-emergency-modal-icon { display: grid; width: 46px; height: 46px; place-items: center; flex: 0 0 46px; border-radius: 14px; color: #fff; background: #e4483a; font-size: 20px; }
.ts-emergency-modal-head > div:nth-child(2) { flex: 1; }
.ts-emergency-modal-head span { color: #e4483a; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.ts-emergency-modal-head h2 { margin: 2px 0 0; color: var(--ts-blue-900); font-size: 24px; }
.ts-emergency-modal-body { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; padding: 25px; }
.ts-emergency-modal-body > img { width: 100%; height: 100%; max-height: 290px; object-fit: cover; border-radius: 18px; }
.ts-emergency-actions { display: flex; flex-direction: column; justify-content: center; gap: 13px; }
.ts-emergency-action { display: flex; align-items: center; gap: 13px; padding: 14px; border: 1px solid var(--ts-line); border-radius: 16px; color: var(--ts-ink); text-decoration: none; transition: transform 0.18s ease, border-color 0.18s ease; }
.ts-emergency-action:hover { color: var(--ts-ink); border-color: var(--ts-blue-300); transform: translateY(-2px); }
.ts-emergency-action .icon { display: grid; width: 42px; height: 42px; place-items: center; flex: 0 0 42px; border-radius: 12px; color: #fff; background: #e4483a; font-size: 17px; }
.ts-emergency-action.whatsapp-action .icon { background: #24c875; }
.ts-emergency-action b,
.ts-emergency-action small { display: block; }
.ts-emergency-action b { color: var(--ts-blue-900); font-family: "Baloo 2", sans-serif; font-size: 15px; }
.ts-emergency-action small { color: var(--ts-slate); font-size: 12px; }

@media (max-width: 1060px) {
  .ts-nav-links { gap: 14px; }
  .ts-nav-links a { font-size: 12px; }
  .ts-nav-actions .ts-btn-ghost { display: none; }
}

@media (max-width: 900px) {
  .ts-nav-links,
  .ts-nav-actions { display: none; }
  .ts-menu-toggle { display: flex; }
  .ts-mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 20px 36px -24px rgba(11, 58, 102, 0.55);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
  }
  .ts-mobile-menu.is-open { max-height: 420px; padding: 10px; opacity: 1; transform: translateY(0); }
  .ts-mobile-menu a { padding: 13px 14px; border-radius: 11px; color: var(--ts-blue-900); font-size: 14px; font-weight: 700; text-decoration: none; }
  .ts-mobile-menu a:hover { background: var(--ts-blue-100); }
  .ts-mobile-menu a.primary { margin-top: 5px; text-align: center; color: #fff; background: var(--ts-blue-500); }
  .ts-hero { padding-top: 42px; }
  .ts-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ts-hero-art { order: -1; width: min(100%, 560px); margin-inline: auto; }
  .ts-hero-copy { max-width: 650px; text-align: center; margin-inline: auto; }
  .ts-hero-copy > p { margin-inline: auto; }
  .ts-hero-actions { justify-content: center; }
  .ts-about-grid { grid-template-columns: 1fr; }
  .ts-about-visual { width: min(75vw, 370px); }
  .cta-strip-inner { flex-direction: column; }
  .cta-half:first-child { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .ts-emergency-modal-body { grid-template-columns: 1fr; }
  .ts-emergency-modal-body > img { max-height: 260px; }
}

@media (max-width: 620px) {
  .ts-wrap,
  .ts-nav { width: min(100% - 32px, 1180px); }
  .ts-nav { min-height: 64px; }
  .ts-brand img { width: 34px; height: 34px; }
  .ts-brand span { font-size: 17px; }
  .ts-mobile-menu { left: 16px; right: 16px; }
  .ts-section { padding: 62px 0; }
  .ts-section-head { margin-bottom: 32px; }
  .ts-hero { padding: 24px 0 45px; }
  .ts-hero-art { padding: 12px 7px 22px; }
  .ts-hero-card { padding: 9px; border-radius: 24px; }
  .ts-hero-slides { border-radius: 17px; }
  .ts-hero-copy h1 { font-size: clamp(34px, 11vw, 46px); }
  .ts-hero-copy > p { font-size: 15px; }
  .ts-hero-actions { display: grid; grid-template-columns: 1fr; }
  .ts-hero-actions .ts-btn { width: 100%; }
  .ts-hero-badge { min-width: 0; padding: 9px 11px; border-radius: 13px; }
  .ts-hero-badge.top { left: -2px; top: 1px; }
  .ts-hero-badge.bottom { right: -2px; bottom: 4px; }
  .ts-hero-badge > i { width: 31px; height: 31px; font-size: 14px; }
  .ts-hero-badge b { font-size: 12px; }
  .ts-hero-badge span { display: none; }
  .ts-hero-arrow { width: 32px; height: 32px; }
  .ts-hero-arrow.prev { left: 16px; }
  .ts-hero-arrow.next { right: 16px; }
  .ts-counter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .ts-counter-group { display: block; }
  .ts-counter-separator { display: none; }
  .ts-counter b { font-size: 28px; }
  .ts-counter span { font-size: 10px; }
  .ts-pillar-grid { grid-template-columns: 1fr; }
  .planes-section,
  .sedes-section { padding: 62px 0; }
  .planes-section .text-center.mb-5 { margin-bottom: 32px !important; }
  .plan-foto-wrap { height: 190px; }
  .cta-strip { padding: 0 16px 62px; }
  .cta-strip-inner { border-radius: 25px; }
  .cta-half { flex-direction: column; padding: 28px 22px; text-align: center; }
  .cta-text-block span { display: block; margin-top: 5px; }
  .btn-cta-outline,
  .btn-cta-solid { width: 100%; }
  .footer-main .container.py-5 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  .ts-whatsapp-fab { right: 17px; bottom: 88px; width: 48px; height: 48px; }
  .ts-emergency-fab { right: 16px; bottom: 18px; width: 54px; height: 54px; justify-content: center; padding: 0; border-radius: 50%; }
  .ts-emergency-fab > span:last-child { display: none; }
  .ts-emergency-pulse { border-radius: 50%; }
  .ts-emergency-dialog { margin: 16px; }
  .ts-emergency-modal-head { padding: 18px; }
  .ts-emergency-modal-head h2 { font-size: 20px; }
  .ts-emergency-modal-body { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ts-emergency-pulse { animation: none; }
  .ts-hero-slides img,
  .ts-mobile-menu { transition: none; }
}
