:root {
  --purple: #6b22d8;
  --purple-dark: #2f0b55;
  --purple-soft: #f4edff;
  --gold: #d79a22;
  --gold-soft: #fff3d3;
  --pink: #ff58bf;
  --mint: #25d366;
  --ink: #241331;
  --muted: #6d5b79;
  --card: rgba(255,255,255,.9);
  --line: rgba(91, 40, 138, .13);
  --shadow: 0 24px 70px rgba(64, 23, 95, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 88, 191, .22), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(215, 154, 34, .22), transparent 22rem),
    linear-gradient(180deg, #fff9fd 0%, #f7efff 42%, #fffdf7 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.paw-rail {
  position: fixed;
  top: 86px;
  bottom: 24px;
  width: 44px;
  z-index: 8;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.paw-left { left: 10px; }
.paw-right { right: 10px; }
.paw {
  width: 28px;
  height: 26px;
  display: block;
  color: transparent;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(0,0,0,.18) 0 34%, transparent 36%),
    radial-gradient(circle at 24% 28%, rgba(0,0,0,.18) 0 14%, transparent 16%),
    radial-gradient(circle at 42% 16%, rgba(0,0,0,.18) 0 13%, transparent 15%),
    radial-gradient(circle at 61% 16%, rgba(0,0,0,.18) 0 13%, transparent 15%),
    radial-gradient(circle at 78% 28%, rgba(0,0,0,.18) 0 14%, transparent 16%);
  border: 0;
  box-shadow: none;
  transform: scale(.78) rotate(var(--rot, 0deg));
  transition: .35s ease;
}
.paw.active {
  background:
    radial-gradient(ellipse at 50% 72%, rgba(0,0,0,.78) 0 34%, transparent 36%),
    radial-gradient(circle at 24% 28%, rgba(0,0,0,.78) 0 14%, transparent 16%),
    radial-gradient(circle at 42% 16%, rgba(0,0,0,.78) 0 13%, transparent 15%),
    radial-gradient(circle at 61% 16%, rgba(0,0,0,.78) 0 13%, transparent 15%),
    radial-gradient(circle at 78% 28%, rgba(0,0,0,.78) 0 14%, transparent 16%);
  transform: scale(1) rotate(var(--rot, 0deg));
  box-shadow: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 950; color: var(--purple-dark); font-size: 1.2rem; }
.brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 3px white, 0 8px 24px rgba(107,34,216,.18); }
nav { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: flex-end; }
nav a { padding: .68rem .9rem; border-radius: 999px; color: var(--muted); font-weight: 800; }
nav a:hover, .user-btn { color: var(--purple-dark); background: white; box-shadow: 0 10px 30px rgba(64,23,95,.08); }

.hero-cover {
  position: relative;
  width: min(1220px, calc(100% - 2rem));
  min-height: 650px;
  margin: 1.4rem auto 0;
  overflow: hidden;
  border-radius: 46px;
  border: 1px solid rgba(107, 34, 216, .14);
  background: linear-gradient(135deg, #fff, #fff3d3);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-pet-showcase {
  min-height: 760px;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 88, 191, .16), transparent 19rem),
    radial-gradient(circle at 78% 12%, rgba(215, 154, 34, .18), transparent 20rem),
    linear-gradient(180deg, #fff, #fff7fd 46%, #f6ecff);
}

.hero-soft-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.82) 68%, rgba(247,239,255,.95)),
    radial-gradient(circle at center 22%, rgba(107,34,216,.12), transparent 24rem);
}

.hero-logo-center {
  position: absolute;
  left: 50%;
  top: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  z-index: 7;
  width: clamp(104px, 12vw, 150px);
  height: clamp(104px, 12vw, 150px);
  border-radius: 50%;
  padding: .35rem;
  background: conic-gradient(from 160deg, var(--gold), var(--pink), var(--purple), var(--gold));
  box-shadow: 0 24px 55px rgba(64, 23, 95, .24);
}

.hero-logo-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
}

.hero-dogs-row {
  position: relative;
  min-height: 430px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
}

.hero-dogs-row::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1.4rem;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(107,34,216,.16), transparent 70%);
  filter: blur(10px);
}

.hero-dog-card {
  position: relative;
  z-index: 2;
  margin: 0;
  height: clamp(330px, 38vw, 470px);
  overflow: hidden;
  border-radius: 38px;
  border: 8px solid rgba(255,255,255,.9);
  background: white;
  box-shadow: 0 30px 80px rgba(64, 23, 95, .18);
}

.hero-dog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dog-left {
  transform: rotate(-2.5deg);
}

.dog-left img {
  object-position: center 34%;
}

.dog-right {
  transform: rotate(2.5deg);
}

.dog-right img {
  object-position: center 38%;
}

.hero-text-panel {
  position: relative;
  z-index: 5;
  width: min(900px, 100%);
  margin: -1.3rem auto 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  text-align: center;
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(107,34,216,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 70px rgba(64, 23, 95, .14);
}

.hero-text-panel h1 {
  margin: .2rem auto .65rem;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.hero-text-panel .cover-tag,
.hero-text-panel .cover-slogan,
.hero-text-panel .cover-lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-text-panel .cover-lead {
  max-width: 720px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-actions {
  justify-content: center;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1rem;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: .82rem 1rem;
  border-radius: 999px;
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(64,23,95,.14);
}

.instagram { background: linear-gradient(135deg, #ff7a00, #ff2f92, #7c2cff); }
.facebook { background: linear-gradient(135deg, #1877f2, #3b5fff); }
.tiktok { background: linear-gradient(135deg, #111, #ff0050); }
.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(1.08) contrast(1.04) saturate(1.04);
  opacity: .82;
  z-index: -3;
}
.cover-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 249, 253, .95) 0%, rgba(255, 249, 253, .86) 34%, rgba(255, 249, 253, .32) 60%, rgba(255, 249, 253, .38) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(247,239,255,.64) 100%);
}
.cover-shine {
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 55%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .92), rgba(255, 243, 211, .62), transparent 72%);
}
.cover-content {
  width: min(540px, 100%);
  min-height: 650px;
  padding: clamp(1.4rem, 4vw, 3.2rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.cover-content::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  width: min(510px, calc(100% - 2rem));
  height: 430px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,.72);
  z-index: -1;
}
.tag { margin: 0 0 .6rem; color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-weight: 950; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--purple-dark); margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: .98; letter-spacing: -.055em; color: var(--purple-dark); margin-bottom: 1rem; }
.cover-content h1 {
  max-width: 470px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -.055em;
  text-shadow: 0 4px 22px rgba(255,255,255,.82);
  font-size: clamp(2.45rem, 4.9vw, 4.6rem);
  line-height: .94;
}
.cover-tag {
  width: fit-content;
  padding: .48rem .78rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(64,23,95,.08);
}
.slogan {
  width: fit-content;
  margin: -.15rem 0 .8rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 950;
  text-shadow: 0 3px 18px rgba(255,255,255,.8);
}
.cover-lead {
  max-width: 455px;
  padding: .95rem 1rem;
  border-radius: 24px;
  color: #4b3758;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(4px);
  box-shadow: 0 14px 34px rgba(64,23,95,.08);
  line-height: 1.65;
}
.cover-floating {
  position: absolute;
  right: 1.3rem;
  top: 1.25rem;
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 470px;
}
.cover-floating span {
  padding: .72rem .9rem;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(107,34,216,.12);
  box-shadow: 0 12px 30px rgba(64,23,95,.1);
  font-weight: 950;
  backdrop-filter: blur(8px);
}
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .8rem; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-weight: 950;
  cursor: pointer;
}
.primary { color: white; background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 16px 36px rgba(107,34,216,.22); }
.secondary { color: var(--purple-dark); background: white; border: 1px solid var(--line); }

.info-strip, .section, .footer { width: min(1220px, calc(100% - 2rem)); margin-inline: auto; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.info-strip article, .service-pro-card, .interactive-map, .form, .agenda-copy, .reviews-grid article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.info-strip article { padding: 1.15rem; }
.info-strip span { font-size: 2rem; }
.info-strip strong { display: block; color: var(--purple-dark); margin: .35rem 0; }
.info-strip p, .section-copy p, .zone p, .agenda-copy li, .footer p, .reviews-head p { color: var(--muted); }
.section { padding: 4.5rem 0 0; }

.services-pro {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 1.3rem;
  align-items: start;
}
.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-pro-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-pro-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -28% 25%;
  height: 170px;
  border-radius: 50%;
  background: rgba(107,34,216,.08);
}
.service-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(64, 23, 95, .2);
}
.service-pro-card.featured {
  background: linear-gradient(145deg, #fff, #fff3d3);
  border-color: rgba(215,154,34,.3);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 2rem;
  background: var(--purple-soft);
}
.service-kicker {
  width: fit-content;
  margin: 1rem 0 .55rem;
  padding: .42rem .68rem;
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 950;
  font-size: .82rem;
}
.service-pro-card h3 {
  margin-bottom: .65rem;
  color: var(--purple-dark);
  font-size: 1.45rem;
}
.service-pro-card p, .service-pro-card li {
  color: var(--muted);
  line-height: 1.55;
}
.service-pro-card ul {
  padding-left: 1.15rem;
  margin: .3rem 0 1rem;
}
.price-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.price-row small {
  color: var(--muted);
  font-weight: 900;
}
.price-row strong {
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}
.service-pro-card a {
  position: relative;
  z-index: 2;
  margin-top: .9rem;
  padding: .86rem 1rem;
  text-align: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 950;
}

.zone-pro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 1.3rem;
  align-items: center;
}
.zone-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1rem 0;
}
.zone-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--purple-dark);
  border-radius: 999px;
  padding: .74rem .9rem;
  font-weight: 950;
  cursor: pointer;
}
.zone-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 16px 34px rgba(107,34,216,.18);
}
.zone-info {
  padding: 1rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.zone-info strong { display: block; color: var(--purple-dark); margin-bottom: .25rem; }
.zone-info span { color: var(--muted); }
.interactive-map {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 45%, rgba(107,34,216,.12), transparent 17rem),
    linear-gradient(135deg, #fff, #fbf5ff);
}
.map-soft-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,34,216,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,34,216,.075) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-compass {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: var(--purple);
  background: white;
  border: 1px solid var(--line);
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(64,23,95,.1);
}
.commune {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: white;
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .9rem;
  box-shadow: 0 18px 42px rgba(64,23,95,.18);
  transition: .22s ease;
  font-weight: 950;
  isolation: isolate;
}
.commune::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.45);
  z-index: -1;
}
.commune:hover, .commune.active {
  transform: translateY(-5px) scale(1.03);
  outline: 5px solid rgba(255,255,255,.82);
}
.commune small {
  display: block;
  font-size: .72rem;
  opacity: .88;
}
.commune-cisterna {
  left: 12%;
  top: 20%;
  width: 28%;
  height: 25%;
  background: linear-gradient(135deg, #7c2cff, #b15cff);
}
.commune-ramon {
  right: 16%;
  top: 22%;
  width: 26%;
  height: 25%;
  background: linear-gradient(135deg, #ff58bf, #d93a9e);
}
.commune-bosque {
  left: 22%;
  bottom: 25%;
  width: 30%;
  height: 25%;
  background: linear-gradient(135deg, #d79a22, #f5bc3c);
}
.commune-pintana {
  right: 18%;
  bottom: 24%;
  width: 28%;
  height: 25%;
  background: linear-gradient(135deg, #20c75a, #0fa64a);
}
.commune-bernardo {
  right: 6%;
  bottom: 7%;
  width: 34%;
  height: 16%;
  background: linear-gradient(135deg, #6d5b79, #2f0b55);
}
.map-legend {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: .7rem;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}
.map-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: .3rem;
}
.map-legend .ok { background: var(--purple); }
.map-legend .ask { background: #6d5b79; }

.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: .85rem; }
.gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 26px; border: 6px solid white; box-shadow: var(--shadow); background: white; }

.reviews-section { padding-top: 4.5rem; }
.reviews-head { max-width: 780px; margin-bottom: 1.3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.reviews-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.reviews-grid article:nth-child(3n + 2) { background: linear-gradient(145deg, #ffffff, #fff3d3); }
.reviews-grid div { color: var(--gold); letter-spacing: .08em; font-weight: 950; margin-bottom: .6rem; }
.reviews-grid p { color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.reviews-grid strong { color: var(--purple-dark); }

.agenda {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 1.3rem;
  align-items: start;
}
.agenda-copy { padding: 1.3rem; }
.agenda-copy ol { padding-left: 1.3rem; line-height: 1.8; }
.form { padding: 1.2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
label { display: grid; gap: .35rem; color: var(--purple-dark); font-weight: 850; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 18px;
  padding: .9rem 1rem;
  outline: none;
  font: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(107,34,216,.1); }
.wide { grid-column: 1 / -1; }
.photo-preview {
  margin-top: .9rem;
  padding: .8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-radius: 22px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 850;
}
.photo-preview img { width: 76px; height: 76px; object-fit: cover; border-radius: 18px; }
.hidden { display: none; }
.submit { width: 100%; margin-top: 1rem; font-size: 1.05rem; }
.form-message { margin: .85rem 0 0; color: var(--muted); font-weight: 850; }
.form-message.ok { color: #13813d; }
.form-message.error { color: #c52d4b; }

.footer {
  margin-top: 4rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.footer img { width: 74px; height: 74px; border-radius: 50%; }
.footer a { color: var(--purple); font-weight: 950; margin-right: .8rem; }
.whatsapp {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem .55rem .55rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #20c75a, #0fa64a);
  border: 4px solid white;
  box-shadow: 0 18px 44px rgba(18, 140, 74, .28);
  font-weight: 950;
}
.dog {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-size: 1.9rem;
  overflow: hidden;
}
.dog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.bubble { padding-right: .2rem; }

@media (max-width: 1240px) {
  .paw-rail { display: none; }
}
@media (max-width: 950px) {
  .header {
    flex-direction: row;
    align-items: center;
    padding: .7rem .8rem;
    gap: .65rem;
  }
  .brand { flex: 0 0 auto; font-size: 1rem; }
  .brand img { width: 42px; height: 42px; }
  nav {
    flex: 1;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .1rem;
    scrollbar-width: none;
  }
  nav::-webkit-scrollbar { display: none; }
  nav a { flex: 0 0 auto; padding: .58rem .72rem; font-size: .88rem; background: rgba(255,255,255,.72); }
  .info-strip, .services-pro, .zone-pro, .agenda { grid-template-columns: 1fr; }
  .service-showcase { grid-template-columns: 1fr; }
  .service-pro-card { min-height: auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-pet-showcase {
    min-height: 760px;
  }
  .hero-dogs-row {
    min-height: 360px;
    gap: .8rem;
    margin-top: 3rem;
  }
  .hero-dog-card {
    height: 360px;
    border-radius: 28px;
    border-width: 5px;
  }
  .hero-logo-center {
    top: .9rem;
  }
}
@media (max-width: 580px) {
  .brand span { display: none; }
  .hero-cover { min-height: 620px; border-radius: 32px; }
  .cover-image { object-position: center top; opacity: .72; }
  .cover-fade {
    background:
      linear-gradient(180deg, rgba(255,249,253,.86) 0%, rgba(255,249,253,.68) 42%, rgba(255,249,253,.93) 100%),
      linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.35));
  }
  .cover-content {
    min-height: 620px;
    padding: 1.1rem;
    padding-bottom: 7.2rem;
    justify-content: flex-end;
  }
  .cover-content::before {
    inset: auto .75rem 6.15rem .75rem;
    width: auto;
    height: auto;
    min-height: 340px;
    border-radius: 26px;
  }
  .cover-content h1 { font-size: 2.75rem; }
  .cover-floating {
    left: .9rem;
    right: .9rem;
    top: auto;
    bottom: .9rem;
    justify-content: flex-start;
  }
  .cover-floating span { font-size: .82rem; padding: .58rem .72rem; }
  .form-grid, .gallery, .reviews-grid { grid-template-columns: 1fr; }
  .interactive-map { min-height: 560px; }
  .commune { font-size: .84rem; border-radius: 22px; }
  .commune-cisterna { left: 7%; top: 18%; width: 42%; height: 20%; }
  .commune-ramon { right: 7%; top: 18%; width: 40%; height: 20%; }
  .commune-bosque { left: 8%; bottom: 32%; width: 43%; height: 21%; }
  .commune-pintana { right: 7%; bottom: 32%; width: 40%; height: 21%; }
  .commune-bernardo { left: 18%; right: auto; bottom: 14%; width: 64%; height: 14%; }
  .whatsapp .bubble { display: none; }
  .hero-pet-showcase {
    min-height: 740px;
    padding: .8rem;
    border-radius: 30px;
  }
  .hero-logo-center {
    width: 92px;
    height: 92px;
  }
  .hero-dogs-row {
    grid-template-columns: 1fr 1fr;
    min-height: 315px;
    margin-top: 4.6rem;
  }
  .hero-dog-card {
    height: 315px;
    border-radius: 24px;
    border-width: 4px;
  }
  .dog-left {
    transform: rotate(-1.2deg);
  }
  .dog-right {
    transform: rotate(1.2deg);
  }
  .hero-text-panel {
    margin-top: -.35rem;
    border-radius: 26px;
    padding: 1rem;
  }
  .hero-text-panel h1 {
    font-size: 2.12rem;
    line-height: .98;
  }
  .hero-text-panel .cover-slogan {
    font-size: 1.45rem;
  }
  .hero-text-panel .cover-lead {
    font-size: .96rem;
    line-height: 1.45;
  }
  .social {
    min-width: auto;
    flex: 1 1 30%;
    padding: .72rem .7rem;
    font-size: .88rem;
  }
  .whatsapp {
    right: .75rem;
    bottom: .75rem;
    padding: .38rem;
  }
  .dog {
    width: 48px;
    height: 48px;
  }
}

/* Mejoras solicitadas: mapa RM, formulario didáctico y perrito animado */
.info-strip article:first-child strong::after {
  content: "";
}

.rm-map-card {
  min-height: 560px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.9), transparent 17rem),
    linear-gradient(135deg, #fff, #f6edff 54%, #fff6df);
}

.rm-svg {
  position: absolute;
  inset: 34px 22px 70px 22px;
  width: calc(100% - 44px);
  height: calc(100% - 104px);
  filter: drop-shadow(0 28px 45px rgba(64,23,95,.16));
}

.rm-outline {
  fill: rgba(255,255,255,.78);
  stroke: rgba(47,11,85,.16);
  stroke-width: 8;
}

.rm-zone {
  cursor: pointer;
  stroke: rgba(255,255,255,.88);
  stroke-width: 7;
  transition: transform .22s ease, filter .22s ease, opacity .22s ease;
  transform-box: fill-box;
  transform-origin: center;
  opacity: .9;
}

.rm-zone:hover,
.rm-zone.active {
  transform: scale(1.035);
  filter: drop-shadow(0 14px 20px rgba(64,23,95,.24));
  opacity: 1;
}

.zone-cisterna { fill: #7c2cff; }
.zone-ramon { fill: #ff58bf; }
.zone-bosque { fill: #e5a820; }
.zone-pintana { fill: #22c55e; }
.zone-bernardo { fill: #4b266b; }

.rm-svg text {
  pointer-events: none;
  fill: white;
  font-weight: 950;
  font-size: 18px;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(47,11,85,.35);
  stroke-width: 3px;
}

.map-callout {
  position: absolute;
  right: 1rem;
  top: 1rem;
  max-width: 250px;
  padding: .85rem 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(64,23,95,.12);
}

.map-callout strong {
  display: block;
  color: var(--purple-dark);
}

.map-callout span {
  color: var(--muted);
  font-size: .9rem;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin: 1rem 0;
}

.form-steps span {
  padding: .78rem .9rem;
  border-radius: 18px;
  color: var(--purple-dark);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(64,23,95,.08);
}

.form-help {
  color: var(--muted);
  line-height: 1.6;
}

.form {
  background:
    radial-gradient(circle at top right, rgba(255,88,191,.13), transparent 13rem),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,243,211,.56));
}

.form-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: .85rem 1rem;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  color: var(--purple-dark);
  box-shadow: 0 12px 28px rgba(64,23,95,.08);
}

.form-top span,
.form-top strong {
  font-weight: 950;
}

.form label {
  position: relative;
  padding: .72rem;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(91,40,138,.08);
}

.form input,
.form select,
.form textarea {
  border-radius: 16px;
  background: rgba(255,255,255,.96);
}

.play-pup {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 75;
  width: 96px;
  height: 96px;
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0) scale(.4);
  animation: pupPlay 13s infinite ease-in-out;
}

.play-pup img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 16px 34px rgba(64,23,95,.22);
}

.play-pup span {
  position: absolute;
  right: 58px;
  top: -22px;
  padding: .42rem .65rem;
  border-radius: 999px;
  color: var(--purple-dark);
  background: white;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 950;
  box-shadow: 0 10px 25px rgba(64,23,95,.12);
}

.play-pup i {
  position: absolute;
  left: -18px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #f6c74c 55%, #d79a22);
  box-shadow: 0 8px 18px rgba(215,154,34,.28);
  animation: ballBounce 13s infinite ease-in-out;
}

@keyframes pupPlay {
  0%, 60%, 100% { opacity: 0; transform: translate(0, 0) scale(.25) rotate(0deg); }
  64% { opacity: 1; transform: translate(-10px, -92px) scale(.92) rotate(-8deg); }
  70% { opacity: 1; transform: translate(-95px, -145px) scale(1.02) rotate(7deg); }
  76% { opacity: 1; transform: translate(-190px, -112px) scale(1) rotate(-5deg); }
  82% { opacity: 1; transform: translate(-245px, -172px) scale(1.04) rotate(8deg); }
  88% { opacity: 1; transform: translate(-138px, -132px) scale(1.02) rotate(-8deg); }
  94% { opacity: .95; transform: translate(-35px, -82px) scale(.85) rotate(4deg); }
  98% { opacity: 0; transform: translate(-4px, -20px) scale(.45) rotate(0deg); }
}

@keyframes ballBounce {
  0%, 60%, 100% { transform: translate(0, 0) scale(.4); opacity: 0; }
  65% { transform: translate(-20px, -16px) scale(1); opacity: 1; }
  72% { transform: translate(-110px, 8px) scale(1); opacity: 1; }
  80% { transform: translate(-188px, -28px) scale(1); opacity: 1; }
  88% { transform: translate(-98px, 4px) scale(1); opacity: 1; }
  96% { transform: translate(-18px, 0) scale(.65); opacity: 0; }
}

@media (max-width: 950px) {
  .map-callout {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 4.4rem;
    max-width: none;
  }
}

@media (max-width: 580px) {
  .form-steps {
    grid-template-columns: 1fr;
  }

  .rm-map-card {
    min-height: 520px;
  }

  .rm-svg {
    inset: 52px 6px 122px 6px;
    width: calc(100% - 12px);
    height: calc(100% - 174px);
  }

  .rm-svg text {
    font-size: 15px;
  }

  .map-callout {
    bottom: 7rem;
  }

  .play-pup {
    width: 70px;
    height: 70px;
    right: .75rem;
    bottom: .75rem;
  }

  .play-pup img {
    width: 54px;
    height: 54px;
  }
}
