/* ============ Variables ============ */
:root {
  /* Marca (brochure) */
  --rosa: #F4628D;
  --rosa-claro: #FEEFF1;
  --blanco: #FFFFFF;
  --texto: #262626;
  --linea: #E3E3E3;

  /* Ampliacion tomada de las fotos reales de la Dra. */
  --lila: #C07CDE;          /* su bata larga */
  --lila-suave: #F6EDFB;    /* fondo secundario lila */
  --magenta: #A8146F;       /* su cabello ombre */
  --naranja: #FF8A3D;       /* sus scrubs */
  --gris-estudio: #F3F2F4;  /* fondo de estudio de sus fotos */
  --texto-suave: #5C5860;

  --degradado: linear-gradient(120deg, #A8146F 0%, #F4628D 50%, #C07CDE 100%);

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --container: 1160px;
  --radius: 20px;
  --shadow: 0 20px 45px -20px rgba(244, 98, 141, 0.35);
  --shadow-soft: 0 18px 40px -24px rgba(38, 38, 38, 0.28);
  --shadow-lift: 0 28px 60px -28px rgba(168, 20, 111, 0.38);
}

/* ============ Reset ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 .5em;
  line-height: 1.2;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rosa);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .6em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--degradado);
  flex-shrink: 0;
}
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--degradado);
  flex-shrink: 0;
}

/* Palabra destacada con degradado */
.grad {
  background: var(--degradado);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ============ Animaciones de entrada ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-position .35s ease, color .18s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn-primary {
  background: var(--degradado);
  background-size: 170% 100%;
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  border-color: var(--rosa);
  color: var(--magenta);
}
.btn-ghost:hover { background: var(--blanco); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-sm { padding: 9px 18px; font-size: .85rem; margin-top: 10px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--linea);
  box-shadow: 0 10px 30px -22px rgba(38,38,38,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-icon { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--magenta);
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--degradado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--magenta); }
.nav a:hover::after { transform: scaleX(1); }
.btn-nav { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 84px 0 132px;
  background: linear-gradient(168deg, #fff 0%, var(--rosa-claro) 46%, var(--lila-suave) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.blob-1 { width: 420px; height: 420px; background: var(--lila); top: -140px; right: -80px; opacity: .35; }
.blob-2 { width: 340px; height: 340px; background: var(--rosa); bottom: -120px; left: -100px; opacity: .30; }
.blob-3 { width: 260px; height: 260px; background: var(--naranja); top: 46%; right: 44%; opacity: .16; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  max-width: 15ch;
  margin-bottom: .35em;
}
.hero-lead { max-width: 46ch; font-size: 1.06rem; color: var(--texto-suave); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,98,141,.25);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--texto-suave);
}
.hero-trust svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--rosa);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Visual del hero --- */
.hero-visual { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.hero-arch {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 26px 26px / 40% 40% 5% 5%;
  overflow: hidden;
  background: var(--gris-estudio);
  border: 10px solid #fff;
  box-shadow: var(--shadow-lift);
  animation: float 6s ease-in-out infinite;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.hero-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(158deg, rgba(244,98,141,.13) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0) 58%, rgba(192,124,222,.17) 100%);
}
.hero-arch-outline {
  position: absolute;
  z-index: 0;
  inset: -20px -20px 22px -20px;
  border-radius: 50% 50% 30px 30px / 40% 40% 5% 5%;
  border: 2px dashed rgba(192,124,222,.55);
  pointer-events: none;
}

.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 16px;
  padding: 11px 15px;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.hero-chip svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-chip-a { top: 11%; left: -14%; animation: float 5.2s ease-in-out infinite; }
.hero-chip-b { bottom: 14%; right: -13%; animation: float 6.4s ease-in-out .8s infinite; }
.hero-chip small {
  display: block;
  font-weight: 500;
  font-size: .66rem;
  color: var(--texto-suave);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mascot-badge {
  position: absolute;
  z-index: 3;
  width: 78px;
  height: 78px;
  left: -7%;
  bottom: 2%;
  filter: drop-shadow(0 8px 16px rgba(38,38,38,.18));
  animation: float 4.6s ease-in-out .4s infinite;
}
.sparkle-a, .sparkle-b { position: absolute; z-index: 3; animation: twinkle 2.4s ease-in-out infinite; }
.sparkle-a { width: 30px; top: 1%; right: 3%; }
.sparkle-b { width: 18px; bottom: 34%; right: -3%; animation-delay: 1.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 90px;
  display: block;
}

/* ============ Franja de credenciales ============ */
.band { background: var(--blanco); padding: 52px 0 8px; }
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--gris-estudio);
  border: 1px solid rgba(227,227,227,.9);
}
.band-item svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--magenta);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.band-item span { font-size: .88rem; font-weight: 600; line-height: 1.35; }

/* ============ Section head ============ */
.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.1vw, 2.5rem); }
.section-lead { color: var(--texto-suave); }

/* ============ About ============ */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; width: 100%; max-width: 330px; margin: 0 auto; }
.about-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 24px 24px / 40% 40% 5% 5%;
  overflow: hidden;
  background: var(--gris-estudio);
  border: 10px solid #fff;
  box-shadow: var(--shadow-lift);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(158deg, rgba(244,98,141,.12) 0%, rgba(255,255,255,0) 45%, rgba(255,255,255,0) 60%, rgba(192,124,222,.15) 100%);
}
.about-ring {
  position: absolute;
  z-index: 0;
  inset: -18px -18px 20px -18px;
  border-radius: 50% 50% 28px 28px / 40% 40% 5% 5%;
  border: 2px dashed rgba(244,98,141,.5);
  pointer-events: none;
}
.about-dot {
  position: absolute;
  z-index: 2;
  width: 76px; height: 76px;
  right: -13%;
  bottom: 4%;
  border-radius: 50%;
  background: var(--degradado);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.25;
  box-shadow: var(--shadow-lift);
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { color: var(--texto-suave); }
.about-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.about-tags li {
  background: var(--lila-suave);
  color: var(--magenta);
  font-weight: 600;
  font-size: .82rem;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid rgba(192,124,222,.3);
}

.about-gallery {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 76px;
}
.about-gallery figure { margin: 0; text-align: center; }
.about-gallery .avatar {
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gris-estudio);
  border: 5px solid #fff;
  outline: 2px solid var(--rosa-claro);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, outline-color .3s ease;
}
.about-gallery figure:hover .avatar { transform: translateY(-6px); outline-color: var(--lila); }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery figcaption {
  margin-top: 14px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--magenta);
}

/* ============ Services ============ */
.services { padding: 96px 0; background: var(--rosa-claro); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--blanco);
  border-radius: var(--radius);
  border: 1px solid rgba(227,227,227,.8);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  width: 100%;
  display: block;
  padding: 26px 24px;
  font: inherit;
  text-align: left;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(244,98,141,.35); }
.service-card[aria-expanded="true"] { border-color: rgba(192,124,222,.5); box-shadow: var(--shadow-soft); }
.service-top { display: flex; align-items: center; gap: 16px; }
.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--lila-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.service-card:hover .service-icon { background: var(--rosa-claro); }
.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--magenta);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  line-height: 1.35;
  flex: 1;
}
.service-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--rosa);
  stroke-width: 2;
  transition: transform .25s ease;
}
.service-card[aria-expanded="true"] .service-chevron { transform: rotate(180deg); }

.service-desc-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.service-desc-wrap .service-desc { overflow: hidden; min-height: 0; }
.service-card[aria-expanded="true"] .service-desc-wrap { grid-template-rows: 1fr; }
.service-desc {
  display: block;
  padding-top: 0;
  margin-top: 0;
  font-size: .88rem;
  color: var(--texto-suave);
  line-height: 1.55;
}
.service-card[aria-expanded="true"] .service-desc {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--linea);
}

/* ============ Why choose us ============ */
.why { padding: 96px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--radius);
  transition: transform .25s ease, background .25s ease;
}
.why-card:hover { transform: translateY(-5px); background: var(--gris-estudio); }
.why-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--degradado);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.why-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 1.05rem; }
.why-card p { font-size: .92rem; color: var(--texto-suave); }

/* ============ Contact ============ */
.contact { padding: 96px 0; background: linear-gradient(160deg, var(--lila-suave) 0%, var(--rosa-claro) 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  border: 1px solid rgba(227,227,227,.8);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--lila-suave);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--magenta);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h3 { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 1rem; }
.placeholder-text {
  color: var(--rosa);
  font-size: .88rem;
  font-weight: 500;
  font-style: italic;
  border-bottom: 1px dashed var(--rosa);
  display: inline-block;
  padding-bottom: 1px;
}
.ig-link { font-weight: 600; color: var(--texto); }
.ig-link:hover { color: var(--magenta); }

/* ============ Footer ============ */
.site-footer { background: var(--texto); color: #fff; padding-top: 56px; }
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-footer .brand-text { color: #fff; }
.brand-footer .brand-text small { color: var(--rosa); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; margin-right: auto; margin-left: 12px; }
.footer-nav a { font-size: .9rem; color: #d8d6d4; }
.footer-nav a:hover { color: #fff; }
.footer-ig { font-weight: 600; color: var(--rosa); }
.footer-bottom { padding: 22px 24px; font-size: .82rem; color: #aeacaa; text-align: center; }

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(244,98,141,.6);
  z-index: 90;
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .hero { padding: 60px 0 110px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; max-width: 300px; }
  .hero-chip-a { left: -9%; }
  .hero-chip-b { right: -9%; }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-text { order: 2; }
  .about-tags { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--linea);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open { max-height: 400px; }
  .nav a { padding: 14px 24px; border-top: 1px solid var(--linea); }
  .nav a::after { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .footer-nav { margin-left: 0; }
  /* Los chips flotantes taparian la foto y se saldrian del borde en pantallas chicas */
  .hero-chip { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px 20px; }
  .hero { padding: 44px 0 84px; }
  .hero-visual { max-width: 248px; }
  .mascot-badge { width: 60px; height: 60px; left: -8%; }
  .hero-wave { height: 55px; }
  .band { padding: 40px 0 4px; }
  .about, .services, .why, .contact { padding: 64px 0; }
  .about-gallery { gap: 18px; margin-top: 48px; }
  .about-gallery .avatar { width: 96px; height: 96px; }
  /* right negativo causaba scroll horizontal en movil */
  .about-dot { width: 62px; height: 62px; font-size: .48rem; right: 0; bottom: 2%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-arch, .hero-chip, .mascot-badge, .sparkle-a, .sparkle-b { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
/* ============ Cursor de varita mágica (solo desktop con mouse) ============ */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM2IDM2Ij4KICA8bGluZSB4MT0iNyIgeTE9IjI5IiB4Mj0iMjIiIHkyPSIxNCIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxsaW5lIHgxPSI3IiB5MT0iMjkiIHgyPSIyMiIgeTI9IjE0IiBzdHJva2U9IiNFNkE4MTciIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPGNpcmNsZSBjeD0iNyIgY3k9IjI5IiByPSIyLjYiIGZpbGw9IiNGNDYyOEQiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPHBhdGggZD0iTTI3IDUuMmwyIDUuMkwzNC4yIDEybC01LjIgMS44TDI3IDE5bC0yLTUuMkwxOS44IDEybDUuMi0xLjh6IiBmaWxsPSIjRjVDMTQzIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgPGNpcmNsZSBjeD0iMTguNSIgY3k9IjIwIiByPSIxLjciIGZpbGw9IiNGNUMxNDMiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIwLjYiLz4KICA8Y2lyY2xlIGN4PSIzMS41IiBjeT0iMjEuNSIgcj0iMS4zIiBmaWxsPSIjRjVDMTQzIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMC41Ii8+CiAgPGNpcmNsZSBjeD0iMTIiIGN5PSIyNSIgcj0iMSIgZmlsbD0iI0Y0NjI4RCIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjAuNCIvPgo8L3N2Zz4K") 27 12, auto;
  }
  a, button, .btn, .nav-toggle, .service-card, .why-card, .contact-card, input, textarea, select, label {
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM2IDM2Ij4KICA8bGluZSB4MT0iNyIgeTE9IjI5IiB4Mj0iMjIiIHkyPSIxNCIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxsaW5lIHgxPSI3IiB5MT0iMjkiIHgyPSIyMiIgeTI9IjE0IiBzdHJva2U9IiNFNkE4MTciIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPGNpcmNsZSBjeD0iNyIgY3k9IjI5IiByPSIyLjYiIGZpbGw9IiNGNDYyOEQiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPHBhdGggZD0iTTI3IDUuMmwyIDUuMkwzNC4yIDEybC01LjIgMS44TDI3IDE5bC0yLTUuMkwxOS44IDEybDUuMi0xLjh6IiBmaWxsPSIjRjVDMTQzIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgPGNpcmNsZSBjeD0iMTguNSIgY3k9IjIwIiByPSIxLjciIGZpbGw9IiNGNUMxNDMiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIwLjYiLz4KICA8Y2lyY2xlIGN4PSIzMS41IiBjeT0iMjEuNSIgcj0iMS4zIiBmaWxsPSIjRjVDMTQzIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMC41Ii8+CiAgPGNpcmNsZSBjeD0iMTIiIGN5PSIyNSIgcj0iMSIgZmlsbD0iI0Y0NjI4RCIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjAuNCIvPgo8L3N2Zz4K") 27 12, pointer;
  }
}
