/* ============================================================
   CLINICAL PLUS — main.css
   Paleta: Azul/Índigo #4F46E5 | Menta #00D4AA | Blanco/Gris
   Tipografía: Outfit (sans) + Fraunces (serif display)
   ============================================================ */

:root {
  --primary:     #4F46E5;
  --primary-dk:  #3730A3;
  --primary-lt:  #EEF2FF;
  --accent:      #00D4AA;
  --accent-dk:   #00A688;
  --wa:          #25D366;
  --wa-dk:       #1DA851;
  --text:        #0F172A;
  --text-muted:  #64748B;
  --border:      #E2E8F0;
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFC;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(79,70,229,.10);
  --shadow-lg:   0 8px 48px rgba(79,70,229,.15);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --container:   1200px;
  --font-sans:   'Outfit', sans-serif;
  --font-serif:  'Fraunces', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-family: var(--font-sans); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--whatsapp { background: var(--wa); color: #fff; }
.btn--whatsapp:hover { background: var(--wa-dk); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dk); }
.btn--outline-white { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: .9rem 2.25rem; font-size: 1rem; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); background: var(--primary-lt);
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: .75rem;
}
.section-tag--light { background: rgba(255,255,255,.15); color: #fff; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 600; line-height: 1.2; margin-bottom: .75rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── TOP BAR ── */
.topbar { background: var(--primary); color: rgba(255,255,255,.9); font-size: .8rem; padding: .5rem 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__link { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.9); }
.topbar__link:hover { color: #fff; }
.topbar__schedule { display: flex; align-items: center; gap: .4rem; color: var(--accent); font-weight: 600; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.12); }
.navbar__inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.navbar__logo { display: flex; align-items: center; margin-right: auto; }
.navbar__logo img { height: 52px; width: auto; display: block; }

.navbar__nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .85rem; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: var(--text-muted); transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-lt); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.5rem; display: none;
  grid-template-columns: repeat(3,1fr); gap: 1.5rem; min-width: 560px;
  margin-top: .5rem;
}
/* Puente invisible para que el mouse pueda llegar al menú sin que se cierre */
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: -.75rem; left: 0; right: 0; height: .75rem;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown__menu.is-open { display: grid; }
.nav-dropdown__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: .5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.nav-dropdown__col a { display: block; font-size: .875rem; color: var(--text-muted); padding: .3rem 0; transition: color var(--transition); }
.nav-dropdown__col a:hover { color: var(--primary); }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ── HERO ── */
.hero { position: relative; height: clamp(380px, 500px, 500px); overflow: hidden; }
.hero__slides { position: relative; height: 100%; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,10,40,.72) 0%, rgba(10,10,40,.35) 60%, transparent 100%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero__card { max-width: 480px; animation: heroIn .7s ease forwards; }
@keyframes heroIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero__tag { display: inline-block; background: var(--accent); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.hero__title { font-family: var(--font-serif); font-size: clamp(2rem,6vw,3.25rem); font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.hero__desc { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.hero__arrow:hover { background: rgba(255,255,255,.3); }
.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }
.hero__dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 5; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.hero__dot.active { background: var(--accent); transform: scale(1.3); }

/* ── COVERAGE BAR ── */
.coverage-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 1.75rem 0; text-align: center; }
.coverage-bar__title { font-weight: 600; font-size: 1.05rem; margin-bottom: 1rem; }
.coverage-bar__cities { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: .75rem; }
.city-pill {
  background: #fff; border: 1.5px solid var(--primary); color: var(--primary);
  padding: .4rem 1.1rem; border-radius: 50px; font-size: .875rem; font-weight: 600;
  transition: all var(--transition);
}
.city-pill:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.coverage-bar__sub { font-size: .875rem; color: var(--text-muted); }
.coverage-bar__sub a { color: var(--primary); font-weight: 600; }
.coverage-bar__sub a:hover { text-decoration: underline; }

/* ── TRUST ── */
.trust { background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.trust__item { display: flex; align-items: center; gap: .85rem; }
.trust__item strong { display: block; font-size: .9rem; font-weight: 600; }
.trust__item span { font-size: .8rem; color: var(--text-muted); }
.trust__sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.trust__logos { display: flex; gap: .4rem; margin-bottom: .25rem; }
.trust__badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: 3px 10px; border-radius: 4px; background: #fff; }
.trust__badge--fonasa { color: #002D82; border: 1.5px solid #002D82; }
.trust__badge--dipreca { color: #CC0000; border: 1.5px solid #CC0000; }

/* ── SERVICES ── */
.services { padding: 5rem 0; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }

.service-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card__img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }
.service-card__cat {
  position: absolute; top: .75rem; left: .75rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .75rem; border-radius: 50px;
}
.service-card__cat--blue   { background: #EEF2FF; color: #4F46E5; }
.service-card__cat--green  { background: #ECFDF5; color: #059669; }
.service-card__cat--purple { background: #F5F3FF; color: #7C3AED; }
.service-card__cat--coral  { background: #FFF1F2; color: #E11D48; }
.service-card__cat--teal   { background: #F0FDFA; color: #0D9488; }
.service-card__cat--amber  { background: #FFFBEB; color: #D97706; }

.service-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.service-card__title a:hover { color: var(--primary); }
.service-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.service-card__actions { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.service-card__link { font-size: .875rem; font-weight: 600; color: var(--primary); }
.service-card__link:hover { text-decoration: underline; }
.service-card__wa {
  display: flex; align-items: center; gap: .35rem;
  background: var(--wa); color: #fff;
  font-size: .8rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 50px;
  transition: background var(--transition);
}
.service-card__wa:hover { background: var(--wa-dk); }

/* Service Featured */
.service-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; background: var(--bg-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.service-featured__img { height: 100%; min-height: 340px; }
.service-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.service-featured__body { padding: 2.5rem 2.5rem 2.5rem 0; }
.service-featured__title { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2rem); font-weight: 600; margin: .75rem 0 1rem; }
.service-featured__desc { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.service-featured__list { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.service-featured__list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.service-featured__list li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── EMPRESAS ── */
.empresas { background: var(--primary); padding: 5rem 0; }
.empresas__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.empresas__left { color: #fff; }
.empresas__title { font-family: var(--font-serif); font-size: clamp(1.6rem,3.5vw,2.25rem); font-weight: 600; color: #fff; margin: .75rem 0 1rem; line-height: 1.2; }
.empresas__desc { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; line-height: 1.7; }
.empresas__right { display: flex; flex-direction: column; gap: 1rem; }
.empresas__card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 1.25rem;
  transition: all var(--transition);
}
.empresas__card:hover { background: rgba(255,255,255,.18); transform: translateX(4px); }
.empresas__num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.empresas__card strong { display: block; color: #fff; font-size: .95rem; margin-bottom: .25rem; }
.empresas__card p { color: rgba(255,255,255,.7); font-size: .85rem; line-height: 1.5; margin: 0; }

/* ── PROFESIONALES ── */
.profesionales { padding: 5rem 0; background: var(--bg-soft); }
.profesionales__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.prof-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.prof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prof-card__img { aspect-ratio: 4/3; overflow: hidden; }
.prof-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prof-card:hover .prof-card__img img { transform: scale(1.06); }
.prof-card__cat { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); padding: 1rem 1.25rem .25rem; }
.prof-card__title { font-size: 1.1rem; font-weight: 600; padding: 0 1.25rem .5rem; }
.prof-card__desc { font-size: .85rem; color: var(--text-muted); padding: 0 1.25rem 1rem; line-height: 1.6; }
.prof-card__link { display: block; font-size: .85rem; font-weight: 600; color: var(--primary); padding: .75rem 1.25rem; border-top: 1px solid var(--border); }
.prof-card__link:hover { background: var(--primary-lt); }

/* ── DROGAS BANNER ── */
.drogas-banner { padding: 5rem 0; }
.drogas-banner__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.drogas-banner__body .section-tag { margin-bottom: .75rem; }
.drogas-banner__title { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2rem); font-weight: 600; margin: .75rem 0 1rem; }
.drogas-banner__desc { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.7; }
.drogas-banner__img img { border-radius: var(--radius-lg); width: 100%; height: 380px; object-fit: cover; }

/* ── FAQ ── */
.faq { padding: 5rem 0; background: var(--bg-soft); }
.faq__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--primary); }
.faq__question {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  list-style: none; color: var(--text);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon { flex-shrink: 0; color: var(--primary); transition: transform var(--transition); }
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer { font-size: .875rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: #1E2A3A; color: #94A3B8; padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__about { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer__avales { margin-top: .5rem; }
.footer__heading { color: #fff; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.footer__col nav { display: flex; flex-direction: column; gap: .45rem; }
.footer__col nav a { font-size: .85rem; color: #94A3B8; transition: color var(--transition); }
.footer__col nav a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: #64748B; margin-bottom: .15rem; }
.footer__contact-item a, .footer__contact-item address, .footer__contact-item time { font-size: .875rem; color: #CBD5E1; }
.footer__contact-item a:hover { color: var(--accent); }
.footer__bottom { padding: 1.25rem 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; }
.footer__bottom-inner div { display: flex; gap: 1.5rem; }
.footer__bottom-inner a { color: #64748B; }
.footer__bottom-inner a:hover { color: var(--accent); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.12); background: var(--wa-dk); }
.wa-float__tooltip {
  position: absolute; right: 72px;
  background: #1a202c; color: #fff;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  padding: .45rem .9rem; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float__tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #1a202c;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ── MOBILE MENU ── */
@media (max-width: 1024px) {
  .navbar__nav, .btn--whatsapp { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { height: 64px; }
  .topbar__info { gap: .75rem; }
  .topbar__schedule { display: none; }
}

/* ── DRAWER MOBILE (slide desde derecha) ── */
.mobile-drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 100vw);
  height: 100%; background: #fff; z-index: 9999;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.18);
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-drawer__overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-drawer__overlay.open { opacity: 1; pointer-events: all; }
.mobile-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.mobile-drawer__close {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--bg-soft); cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 1.25rem;
}
.mobile-drawer__body { padding: 1rem 1.5rem 2rem; flex: 1; }
.drawer-section { margin-bottom: 1.5rem; }
.drawer-section__label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--primary); display: block;
  margin-bottom: .5rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.drawer-link {
  display: block;
  padding: .6rem 0; font-size: .9rem; font-weight: 400;
  color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
  letter-spacing: .01em;
}
.drawer-link:hover { color: var(--primary); padding-left: .35rem; }
.drawer-link:last-child { border-bottom: none; }
.drawer-wa {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--wa); color: #fff; padding: .9rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; text-decoration: none; margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar__hamburger.open span:nth-child(2) { opacity: 0; }
  .navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 768px) {
  .trust__sep { display: none; }
  .trust__inner { gap: 1.25rem; }
  .service-featured { grid-template-columns: 1fr; }
  .service-featured__body { padding: 1.75rem; }
  .service-featured__img { min-height: 220px; }
  .empresas__inner { grid-template-columns: 1fr; gap: 2rem; }
  .drogas-banner__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .topbar__info { gap: .5rem; font-size: .72rem; }
  .coverage-bar__cities { gap: .4rem; }
  .city-pill { font-size: .8rem; padding: .35rem .9rem; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .profesionales__grid { grid-template-columns: 1fr; }
  .drogas-banner__img img { height: 220px; }
}

/* ── ANIMATIONS ON SCROLL ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Fallback: si JS no activa visible, mostrar igual después de 1s */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
