*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #192189;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ── Floating WhatsApp ── */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, opacity 0.35s, visibility 0.35s;
}

#wa-float:hover {
  transform: scale(1.1);
}

#wa-float.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

#wa-float svg {
  position: relative;
  z-index: 1;
}

img {
  display: block;
}

/* ── Tipografía ── */
.display {
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.subhead {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-teal {
  background: #4697B4;
  color: #fff;
  border-color: #4697B4;
  box-shadow: 0 4px 20px rgba(70, 151, 180, 0.35);
}

.btn-teal:hover {
  background: #3a7f9a;
  border-color: #3a7f9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(70, 151, 180, 0.45);
}

.btn-navy {
  background: #192189;
  color: #fff;
  border-color: #192189;
  box-shadow: 0 4px 20px rgba(25, 33, 137, 0.25);
}

.btn-navy:hover {
  background: #141b6e;
  border-color: #141b6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(25, 33, 137, 0.35);
}

.btn-white {
  background: #fff;
  color: #192189;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f0f7fb;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: #192189;
  border-color: #192189;
}

.btn-outline-navy:hover {
  background: #192189;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
  gap: 8px;
}

.btn svg {
  flex-shrink: 0;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(70, 151, 180, 0.12);
  color: #4697B4;
  margin-bottom: 18px;
}

.badge-light {
  background: rgba(70, 151, 180, 0.2);
  color: #7ec8e3;
}

/* ── Layout ── */
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
}

.section-py {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(25, 33, 137, 0.07);
  box-shadow: 0 2px 20px rgba(25, 33, 137, 0.06);
}

.nav-link {
  color: #192189;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}

.nav-link:hover {
  color: #4697B4;
  border-color: #4697B4;
}

/* ── Hero full-bleed ── */
#hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(25, 33, 137, 0.92) 0%,
      rgba(25, 33, 137, 0.80) 38%,
      rgba(25, 33, 137, 0.45) 62%,
      rgba(25, 33, 137, 0.10) 85%,
      transparent 100%);
}

#hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 160px 65px 100px;
}

.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  max-width: 480px;
  box-shadow: 0 8px 40px rgba(25, 33, 137, 0.25);
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #192189;
}

.hero-search input::placeholder {
  color: #9aabb8;
}

/* ── Split section ── */
.split {
  display: flex;
  align-items: center;
  gap: 72px;
}

.split-reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 0;
}

.split-media {
  flex: 1;
  min-width: 0;
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(25, 33, 137, 0.09);
  border: 1px solid rgba(25, 33, 137, 0.05);
}

.card-hover {
  transition: transform .22s, box-shadow .22s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(25, 33, 137, 0.14);
}

/* ── Image utilities ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-rounded {
  border-radius: 24px;
  overflow: hidden;
}

/* ── Vet links ── */
.vet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: color .18s, padding-left .2s;
}

.vet-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vet-link:hover {
  color: #4697B4;
  padding-left: 10px;
}

.vet-link svg {
  stroke: #4697B4;
  flex-shrink: 0;
  transition: transform .2s;
}

.vet-link:hover svg {
  transform: translateX(5px);
}

/* ── Diamond divider ── */
.diamond-bar {
  height: 36px;
  background-color: #192189;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpolygon points='18,5 31,18 18,31 5,18' fill='%234697B4' opacity='0.42'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 36px 36px;
}

/* ── Stat pill ── */
.stat-pill {
  background: #f4f7fc;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  border: 1px solid #eaeff7;
}

.stat-pill .num {
  font-size: 24px;
  font-weight: 900;
  color: #192189;
}

.stat-pill .lbl {
  font-size: 10px;
  font-weight: 700;
  color: #8a9abf;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ── Article card ── */
.article-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #eaeff7;
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background .18s, border-color .18s;
}

.article-card:hover {
  background: #eef6fb;
  border-color: #c8dfe9;
}

/* ── Icon circle (referral) ── */
.logo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(70, 151, 180, 0.3);
  background: rgba(70, 151, 180, 0.05);
  box-shadow: 0 0 0 20px rgba(70, 151, 180, 0.05), 0 0 0 40px rgba(70, 151, 180, 0.03);
  padding: 40px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Hamburger — hidden on desktop */
#nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #192189;
  padding: 8px;
  border-radius: 8px;
  transition: background .18s;
  flex-shrink: 0;
}

#nav-hamburger:hover {
  background: rgba(25, 33, 137, .06);
}

/* Mobile nav panel */
#nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 98;
  padding: 16px 20px 28px;
  flex-direction: column;
  border-bottom: 1px solid rgba(25, 33, 137, 0.08);
  box-shadow: 0 12px 40px rgba(25, 33, 137, 0.12);
}

#nav-mobile.open {
  display: flex;
}

.nav-mobile-link {
  display: block;
  color: #192189;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 33, 137, 0.06);
  text-decoration: none;
  transition: color .18s;
}

.nav-mobile-link:hover {
  color: #4697B4;
}

#nav-mobile .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

#equipo-franja-stats {
  justify-content: flex-end;
  align-items: stretch;
}

.equipo-franja-stat {
  min-width: 96px;
  flex: 0 1 110px;
}

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .section-inner {
    padding: 0 40px;
  }

  .section-py {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #nav {
    padding: 0 40px;
  }

  #hero-content {
    padding: 0 40px;
    padding-top: 96px;
  }

  .split {
    gap: 48px;
  }

  .logo-circle {
    width: 220px;
    height: 220px;
  }

  /* Grids: 4-col → 2-col */
  #equipo-main-grid {
    grid-template-columns: 1fr !important;
  }

  #equipo-mini-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Franja equipo: stack on tablet */
  #equipo-franja {
    grid-template-columns: 1fr !important;
    padding: 28px 24px !important;
  }

  #equipo-franja-stats {
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  #porq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #servicios-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #portafolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #sedes-grid {
    grid-template-columns: 1fr !important;
  }

  /* Urgencias circle: shrink on tablet */
  #urgencias-media {
    width: 320px !important;
  }

  #urgencias-circle {
    width: 300px !important;
    height: 300px !important;
  }

  /* Para veterinarios bg */
  #vet-bg-wrap {
    width: 45% !important;
  }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {

  /* Nav */
  #nav {
    padding: 0 20px;
    height: 64px;
  }

  #nav>div {
    justify-content: space-between;
  }

  #nav-links {
    display: none !important;
  }

  #nav-cta-btn {
    display: none !important;
  }

  #nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* Hero — stacked layout on mobile */
  #hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    background: #192189;
    padding-top: 64px;
  }

  #hero-bg {
    position: relative;
    inset: auto;
    width: calc(100% - 40px);
    height: 260px;
    border-radius: 20px;
    margin: 0 auto 32px;
    order: 2;
    object-position: center 20%;
  }

  #hero-overlay {
    display: none;
  }

  #hero-content {
    order: 1;
    padding: 32px 20px 24px !important;
  }

  #hero-content>div {
    max-width: 100% !important;
  }

  .hero-search {
    max-width: 100% !important;
  }

  #hero-quick-links {
    flex-wrap: wrap !important;
    gap: 10px 16px !important;
    font-size: 13px !important;
  }

  /* Layout */
  .section-inner {
    padding: 0 20px;
  }

  .section-py {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  /* Split → column */
  .split {
    flex-direction: column !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  .split-reverse {
    flex-direction: column !important;
  }

  .split-media,
  .split-text {
    flex: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  /* Especialidades: hide decorative circle */
  #esp-circle {
    display: none !important;
  }

  .esp-heading {
    color: #4697B4 !important;
  }

  /* Especialidades images: reduce fixed heights */
  .esp-img {
    height: 190px !important;
  }

  /* Urgencias: circular image */
  #urgencias-media {
    width: 100% !important;
    flex-shrink: 1 !important;
  }

  #urgencias-circle {
    width: 240px !important;
    height: 240px !important;
  }

  /* Equipo grids */
  #equipo-main-grid {
    grid-template-columns: 1fr !important;
  }

  #equipo-mini-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Franja equipo: stack + pills en fila centrada */
  #equipo-franja {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
    gap: 20px !important;
  }

  .equipo-franja-copy {
    text-align: left;
  }

  .equipo-franja-title {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  .equipo-franja-description {
    max-width: none !important;
  }

  #equipo-franja-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 12px !important;
  }

  .equipo-franja-stat {
    min-width: 0;
    width: 100%;
    padding: 16px 10px !important;
    border-radius: 14px !important;
  }

  .equipo-franja-stat-value {
    font-size: 24px !important;
  }

  .equipo-franja-stat-label {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  /* ¿Por qué VetLevel? — 2 cols on mobile */
  #porq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* FAQ layout — stack on mobile */
  #faq-main-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  #faq-prep-grid {
    grid-template-columns: 1fr !important;
  }

  #faq-sidebar {
    position: static !important;
  }

  /* Nuevos servicios → 1-col */
  #servicios-grid {
    grid-template-columns: 1fr !important;
  }

  /* Portafolio → 2-col on mobile */
  #portafolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Para veterinarios: overlay image full width */
  #vet-bg-wrap {
    width: 100% !important;
    left: 0 !important;
    opacity: 0.2;
  }

  /* FAQ: un-fix the sidebar width */
  #faq .split-text {
    flex: none !important;
    width: 100% !important;
  }

  /* Referidos: circle logo — more breathing room on mobile */
  .logo-circle {
    width: 180px !important;
    height: 180px !important;
    padding: 24px !important;
    margin-top: 40px !important;
    margin-bottom: 48px !important;
  }

  /* Gallery carousel: handled by JS (1 per view on mobile) */

  /* Sedes → 1-col */
  #sedes-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  #footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 36px !important;
  }

  #footer-bottom {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
  }

  #footer-bottom>div {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* General: hide blobs on mobile for performance */
  .blob-float {
    display: none !important;
  }

  /* Buttons: allow wrapping */
  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ── Small mobile ≤ 400px ── */
@media (max-width: 400px) {
  .display {
    font-size: 34px !important;
  }

  .heading {
    font-size: 26px !important;
  }

  #porq-grid {
    grid-template-columns: 1fr !important;
  }

  #portafolio-grid {
    grid-template-columns: 1fr !important;
  }

  #equipo-mini-grid {
    grid-template-columns: 1fr !important;
  }

  #equipo-franja-stats {
    grid-template-columns: 1fr !important;
  }

  .equipo-franja-copy {
    text-align: center;
  }

  .equipo-franja-title br {
    display: none;
  }

  .btn {
    font-size: 13px !important;
    padding: 12px 20px !important;
  }
}

/* Hero decorative radial — hide on mobile */
@media (max-width: 768px) {
  #hero>div[style*="radial-gradient"] {
    display: none !important;
  }
}

/* Prevent decorative elements from causing overflow */
@media (max-width: 768px) {
  section {
    overflow-x: hidden;
  }

  /* Doctor cards: show avatar smaller on mobile */
  .doc-avatar {
    width: 72px !important;
    height: 72px !important;
    flex-shrink: 0 !important;
  }

  .doc-specialty {
    display: none !important;
  }

  .doc-specialty-mobile {
    display: block !important;
  }

  .doc-card {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 20px 16px !important;
    border-top: 4px solid #4697B4 !important;
    gap: 14px !important;
  }

  .doc-card>div[style*="flex:1"] {
    width: 100% !important;
    min-width: 0 !important;
  }

  .doc-card h3 {
    font-size: 16px !important;
  }

  /* Hero: hide background image on mobile, keep gradient only */
  #hero-bg {
    display: none !important;
  }

  #hero {
    background: #192189 !important;
    min-height: 100vh !important;
    padding-top: 64px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #hero-content {
    order: 1;
    padding: 40px 20px 52px !important;
  }

  #hero-overlay {
    display: none !important;
  }

  /* Sedes: buttons stack vertically */
  .sede-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .sede-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Gallery track: no gap between slides */
  #gallery-track {
    gap: 0 !important;
  }

  /* Gallery slide: aspect ratio on single image */
  .gal-slide .gal-item {
    aspect-ratio: 4/3 !important;
  }
}
/* ════════════════════════════════════════
   ESPECIALIDAD TAGS (botones clickeables)
════════════════════════════════════════ */
.esp-tag {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.esp-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(25,33,137,0.18);
}
.esp-tag--dark {
  background: #192189;
  color: #fff;
}
.esp-tag--dark:hover { background: #1e28a8; }
.esp-tag--light {
  background: rgba(70,151,180,0.12);
  color: #192189;
  border: 1px solid rgba(70,151,180,0.3);
}
.esp-tag--light:hover { background: rgba(70,151,180,0.22); }

.esp-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  margin-left: 7px;
  vertical-align: middle;
  transition: transform .2s;
}
.esp-tag--dark .esp-tag-icon {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.esp-tag--light .esp-tag-icon {
  background: #4697B4;
  color: #fff;
}
.esp-tag:hover .esp-tag-icon {
  transform: scale(1.2);
}

/* ════════════════════════════════════════
   MODAL ESPECIALIDADES
════════════════════════════════════════ */
#esp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,50,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#esp-modal-overlay.open {
  display: flex;
}
#esp-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(25,33,137,0.18);
  animation: modal-in .25s cubic-bezier(0.22,1,0.36,1);
}
@keyframes modal-in {
  from { opacity:0; transform:translateY(24px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
#esp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #556070;
  transition: background .15s;
}
#esp-modal-close:hover { background: #e0e8f0; }
#esp-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
#esp-modal-title {
  color: #192189;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
#esp-modal-desc {
  color: #556070;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.modal-section-label {
  color: #192189;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 13px;
  color: #556070;
  line-height: 1.6;
}
.modal-item svg { flex-shrink: 0; margin-top: 2px; }
#esp-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: #192189;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background .2s;
}
#esp-modal-cta:hover { background: #1e28a8; }
@media (max-width: 768px) {
  #esp-modal { padding: 28px 20px; border-radius: 18px; }
}
