:root {
  --ink: #292249;
  --muted: #625d73;
  --teal: #5d9192;
  --cream: #f2ece4;
  --green: #23d366;
  --content: 1460px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #f87842;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 86px;
  padding: 0 clamp(24px, 7vw, 150px);
  background: #fff;
  box-shadow: 0 2px 18px #28204414;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand img {
  display: block;
  width: 175px;
  max-height: 64px;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 30px;
  font-weight: 700;
}
.menu-toggle { display: none; }
.header-phone,
.button {
  display: inline-block;
  padding: 14px 27px;
  border: 0;
  border-radius: 30px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.header-phone small {
  font-size: inherit;
  font-weight: inherit;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #28204422;
}
.button:active,
.header-phone:active { transform: translateY(1px); }
.whatsapp { background: var(--green); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  min-height: 610px;
  background: var(--cream);
}
.hero-copy {
  align-self: center;
  min-width: 0;
  padding: 80px clamp(32px, 8vw, 150px) 60px;
}
.hero h1 {
  margin: 0 0 23px;
  font-size: clamp(52px, 4.2vw, 72px);
  line-height: 1.03;
  letter-spacing: -2px;
}
.hero h1 span { font-size: clamp(32px, 2.4vw, 42px); }
.hero-copy > p {
  max-width: 480px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 20px;
}
.offer {
  display: block;
  margin-bottom: 30px;
  color: #4e4960;
  text-decoration: underline;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #4d9870;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  margin-top: 13px;
  color: var(--teal);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.proof {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
}
.proof strong {
  font-size: 57px;
  line-height: 1;
}
.proof span { color: var(--muted); }
.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--cream);
}
.hero-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, #f2ece4aa 14%, #f2ece400 45%);
  content: "";
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-strip {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  margin: -30px auto 0;
  padding: 0 clamp(24px, 7.5vw, 150px) 38px;
}
.service-cards {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1320px;
  margin: auto;
  align-items: stretch;
  gap: 0;
  border: 3px solid #fff;
  border-radius: 32px;
  background: var(--teal);
  box-shadow: 0 12px 30px #29224918;
}
.service-strip .service-cards { margin-bottom: 56px; }
.service-cards article {
  min-width: 0;
  min-height: 300px;
  padding: 42px 28px;
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.service-cards article + article { border-left: 3px solid #fff; }
.service-cards article:last-child { border-radius: 0 28px 28px 0; }
.service-summary {
  display: grid;
  grid-template-columns: minmax(180px, .95fr) minmax(230px, 1.05fr);
  align-items: center;
  gap: 18px;
  border-radius: 28px 0 0 28px;
  text-align: left !important;
}
.service-summary-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: start;
  column-gap: 16px;
}
.service-summary-copy h2 {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1;
}
.service-summary-copy > span:not(.service-bubble) {
  display: block;
  grid-column: 1;
  grid-row: 2;
  font-size: 17px;
}
.service-bubble {
  position: static;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px 11px 11px 2px;
  background: #f87842;
  color: #fff;
  font-size: 22px;
}
.service-bubble::after {
  position: absolute;
  bottom: -8px;
  left: 5px;
  border-top: 10px solid #f87842;
  border-right: 10px solid transparent;
  content: "";
}
.service-card-content { text-align: center; }
.service-card-content .card-icon { width: 92px; height: 92px; }
.service-featured {
  position: relative;
  z-index: 1;
  min-height: 388px !important;
  margin-top: -56px;
  margin-bottom: -56px;
  padding-top: 56px !important;
  border-radius: 32px;
  background: #2d7181 !important;
  box-shadow: 0 12px 26px #29224922;
}
.card-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.service-cards h3 {
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.service-cards a,
.detail-list a {
  color: #fff;
  font-weight: 700;
}
.section-button {
  display: block;
  width: max-content;
  margin: 42px auto 0;
}
.service-strip .section-button { margin-top: 0; }

.service-cards article,
.service-cards article:nth-child(2),
.service-cards article:nth-child(3),
.service-cards article:nth-child(4),
.card-servicio,
.card-servicio:nth-child(2),
.card-servicio:nth-child(3),
.card-servicio:nth-child(4) {
  background-color: #FFFFFF !important;
  background-image: none !important;
  border: 1px solid #E5E5E5 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  color: var(--ink) !important;
}
.btn-llamanos-destacado {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1F4D3E !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 12px 28px !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-llamanos-destacado:hover {
  background: #163028 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}
.btn-llamanos-destacado svg {
  stroke: #FFFFFF !important;
  width: 16px;
  height: 16px;
}
.detail-list article,
.detail-list article.featured {
  background-color: #FFFFFF !important;
  background-image: none !important;
  border: 1px solid #E5E5E5 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  color: var(--ink) !important;
}
.detail-list article.featured p { color: var(--muted) !important; }

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  max-width: var(--content);
  margin: auto;
  padding: clamp(76px, 6.5vw, 112px) clamp(34px, 7.5vw, 150px);
  gap: clamp(52px, 6vw, 112px);
}
.section-grid > *,
.services-detail > *,
.location-wrap > * { min-width: 0; }
.section-image {
  overflow: hidden;
  min-height: clamp(430px, 34vw, 590px);
  border-radius: 18px;
}
.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}
.section-copy h2,
.location-wrap h2 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.section-copy p {
  color: var(--muted);
  font-size: 17px;
}
.trust .section-copy { padding-right: 30px; }
.trust .text-link { color: var(--teal); }
.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.trust-points span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 13px;
}
.trust-points b {
  color: var(--teal);
  font-size: 22px;
  line-height: 1.2;
}

.decorative-paw {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
}

.services-detail {
  max-width: var(--content);
  margin: auto;
  padding: clamp(78px, 6vw, 106px) clamp(34px, 7.5vw, 150px);
  background: var(--cream);
}
.services-detail > .section-copy {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}
.services-detail > .section-copy .section-icon {
  margin-right: auto;
  margin-left: auto;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: auto;
  gap: 22px;
}
.detail-list article {
  min-width: 0;
  min-height: 300px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.detail-list article.featured {
  background: var(--teal);
  color: #fff;
}
.detail-list article > img {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 15px;
  object-fit: contain;
}
.detail-list h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}
.detail-list p {
  margin: 15px 0 28px;
  color: var(--muted);
  font-size: 14px;
}
.detail-list .featured p { color: #fff; }
.detail-list a { color: var(--teal); }
.detail-list .featured a { color: #fff; }

.priority { background: #fff; }
.priority .section-copy { order: 1; }
.priority .section-image { order: 2; }
.priority ul {
  padding: 0;
  color: var(--muted);
  list-style: none;
}
.priority li { margin: 11px 0; }
.priority li::before {
  margin-right: 10px;
  color: #ef7c45;
  content: "✓";
  font-weight: 700;
}

.location-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--content);
  margin: auto;
  padding: clamp(72px, 6vw, 104px) clamp(34px, 7.5vw, 150px);
  gap: clamp(28px, 4vw, 64px);
  background: var(--cream);
}
.hours-card,
.map-card {
  min-height: 470px;
  border-radius: var(--radius);
  background: #fff;
}
.hours-card { padding: 40px 28px; }
.hours-card h2 { font-size: 44px; }
.hours-card p {
  max-width: 520px;
  color: var(--muted);
}
.hours-card h3 { margin-top: 28px; }
.hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 27px;
}
.hours > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.hours strong { font-size: 17px; }
.map-card {
  overflow: hidden;
  padding: 0;
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 470px;
  border: 0;
}
.directions-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.equipo-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
}
.equipo-card img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  min-height: 280px;
}
.equipo-card h3 { margin: 0; }
.equipo-card p { margin: 15px 0 0; color: var(--muted); }
.hero-subtitle {
  display: block;
  color: #6B9080;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 8px;
}
.mapa-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 0;
}
.mapa-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  display: block;
}

.faq-section {
  max-width: 980px;
  margin: auto;
  padding: clamp(72px, 7vw, 110px) 28px;
}
.section-heading { text-align: center; }
.section-heading .decorative-paw { margin: 0 auto 15px; }
.section-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}
.faq-list {
  margin-top: 36px;
  border-top: 1px solid #ded8d2;
}
.faq-list details { border-bottom: 1px solid #ded8d2; }
.faq-list summary {
  position: relative;
  padding: 22px 38px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  right: 5px;
  content: "+";
  color: var(--teal);
  font-size: 25px;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  max-width: 760px;
  margin: -4px 0 22px;
  color: var(--muted);
}
.gallery-section {
  padding: clamp(72px, 7vw, 110px) clamp(24px, 7vw, 150px);
  background: #fff;
}
.gallery-section > .section-heading {
  max-width: 720px;
  margin: auto;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin: 40px auto 0;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--cream);
  cursor: zoom-in;
}
.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  content: "＋";
  font-size: 20px;
  box-shadow: 0 3px 12px #0002;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-modal {
  width: min(900px, calc(100vw - 32px));
  max-width: none;
  padding: 12px;
  border: 0;
  border-radius: 18px;
  background: #171522;
}
.gallery-modal::backdrop { background: #171522cc; }
.gallery-modal img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.gallery-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.mobile-actions { display: none; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 7vw, 150px);
  border-top: 4px solid #f87842;
  background: #2d7181;
  color: #fff;
  font-size: 13px;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: inherit;
}
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #6B9080;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-top-btn:hover {
  background: #557866;
  transform: translateY(-2px);
}
.scroll-top-btn.visible { display: flex; }
.whatsapp-teaser a,
.chat-message a { color: inherit; font-weight: 700; text-decoration: underline; }
@media (max-width: 768px) {
  .scroll-top-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    left: 16px;
  }
}
.floating-whatsapp {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 7px 18px #0003;
  transition: transform .2s, box-shadow .2s;
}
.floating-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px #0004;
}
.whatsapp-glyph {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  transform: rotate(-16deg);
}
.whatsapp-glyph svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.whatsapp-teaser {
  position: absolute;
  right: 0;
  bottom: 75px;
  width: 280px;
  padding: 16px 17px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 9px 28px #2820442b;
  animation: teaser-in .35s ease-out;
}
.whatsapp-teaser::after {
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}
.teaser-close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.teaser-close:hover {
  background: #f1ede9;
  color: var(--ink);
}
.whatsapp-teaser strong,
.whatsapp-teaser span { display: block; }
.whatsapp-teaser span {
  margin-top: 3px;
  color: #4d9870;
  font-size: 11px;
}
.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #4d9870;
  vertical-align: middle;
}
.whatsapp-teaser p {
  margin: 9px 0 0;
  color: var(--muted);
}
.typing-indicator i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 2px;
  border-radius: 50%;
  background: #4d9870;
  animation: typing 1s infinite;
}
.typing-indicator i:nth-child(2) { animation-delay: .15s; }
.typing-indicator i:nth-child(3) { animation-delay: .3s; }
.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 75px;
  width: min(350px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: #f4f0eb;
  box-shadow: 0 12px 36px #28204435;
  animation: panel-in .25s ease-out;
}
.whatsapp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  background: var(--teal);
  color: #fff;
}
.whatsapp-panel-header strong,
.whatsapp-panel-header span { display: block; }
.whatsapp-panel-header strong { font-size: 14px; }
.whatsapp-panel-header span {
  margin-top: 3px;
  font-size: 11px;
  opacity: .95;
}
.whatsapp-panel-header b {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #84e0a0;
}
.whatsapp-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.chat-messages {
  height: 265px;
  overflow: auto;
  padding: 17px;
  background: linear-gradient(#f4f0eb, #eee8e1);
}
.chat-message {
  width: max-content;
  max-width: 88%;
  margin-bottom: 10px;
  padding: 11px 13px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 2px 5px #28204410;
}
.chat-message small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.chat-message.visitor {
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
  background: #d9fdd3;
}
.typing-indicator {
  width: max-content;
  padding: 9px 12px;
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
}
.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e5dfd9;
  background: #fff;
}
.chat-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 13px;
  border: 1px solid #d8d1c9;
  border-radius: 22px;
  outline-color: var(--teal);
  font-size: 13px;
}
.chat-form button {
  padding: 0 16px;
  border: 0;
  border-radius: 22px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.is-open .whatsapp-teaser { display: none; }
.teaser-dismissed .whatsapp-teaser { display: none; }

@keyframes typing {
  0%, 60%, 100% { opacity: .5; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes teaser-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: none; }
}

#inicio,
#servicios,
#ubicacion { scroll-margin-top: 100px; }

@media (max-width: 1100px) and (min-width: 801px) {
  .site-header { padding-right: 38px; padding-left: 38px; }
  .hero-copy { padding-right: 52px; padding-left: 52px; }
  .section-grid,
  .services-detail,
  .location-wrap {
    padding-right: 48px;
    padding-left: 48px;
  }
  .detail-list { gap: 14px; }
  .detail-list article { padding-right: 16px; padding-left: 16px; }
  .detail-list h3 { font-size: 16px; }
}

@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 0;
    padding: 14px 18px;
  }
  .brand img { width: 140px; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px;
    place-content: center;
    gap: 4px;
    border: 0;
    border-radius: 10px;
    background: var(--cream);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }
  .header-phone {
    padding: 10px 13px;
    font-size: 12px;
  }
  .header-phone small { display: none; }
  nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  nav.is-open { display: flex; }
  nav a {
    min-height: 44px;
    padding: 11px 4px;
    border-bottom: 1px solid #eee8e1;
  }
  .hero {
    display: block;
    min-height: 0;
  }
  .hero-copy { padding: 52px 20px 36px; }
  .hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    letter-spacing: -1.5px;
  }
  .hero h1 span { font-size: 17px; }
  .hero-copy > p { font-size: 17px; }
  .actions .button {
    flex: 1 1 142px;
    min-width: 142px;
    padding: 12px 14px;
  }
  .hero-image { height: 310px; }
  .hero-highlights {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    font-size: 13px;
  }
  .service-strip {
    margin: -28px 0 0;
    padding: 0 16px 30px;
  }
  .service-cards {
    grid-template-columns: 1fr;
    gap: 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
  .service-cards article,
  .service-cards article:first-child,
  .service-cards article:last-child {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 22px;
    border: 0;
  }
  .service-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center !important;
  }
  .service-summary-copy h2 {
    margin-bottom: 9px;
    font-size: 34px;
  }
  .service-summary-copy {
    grid-template-columns: 1fr 44px;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
  }
  .service-bubble {
    align-self: start;
  }
  .service-featured {
    min-height: 0 !important;
    margin: 0;
    padding-top: 24px !important;
    border-radius: 22px !important;
    box-shadow: none;
  }
  .service-strip .section-button { margin-top: 24px; }
  .service-strip .section-button {
    width: 100%;
    max-width: 300px;
  }
  .card-icon {
    width: 76px;
    height: 76px;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px;
  }
  .section-image {
    min-height: 300px;
    border-radius: 14px;
  }
  .priority .section-image { min-height: 420px; }
  .section-copy h2,
  .location-wrap h2,
  .hours-card h2 { font-size: 32px; }
  .trust .section-copy { padding: 0; }
  .trust-points { gap: 8px; margin: 22px 0; }
  .trust-points b { font-size: 18px; }
  .trust-points span { font-size: 11px; }
  .decorative-paw {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  .services-detail { padding: 64px 18px; }
  .services-detail > .section-copy { margin-bottom: 30px; }
  .detail-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .detail-list article {
    min-height: 0;
    padding: 24px 20px;
  }
  .detail-list article > img {
    width: 64px;
    height: 64px;
  }
  .location-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 56px 16px;
  }
  .hours-card,
  .map-card {
    min-height: 0;
    border-radius: 18px;
  }
  .hours-card { padding: 28px 22px; }
  .map-card iframe { min-height: 320px; }
  footer {
    flex-direction: column;
    padding: 26px 20px;
  }
  footer { padding-bottom: 92px; }
  .faq-section { padding: 64px 20px 100px; }
  .gallery-section { padding: 64px 20px 80px; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .gallery-item { border-radius: 12px; }
  .gallery-item::after {
    right: 8px;
    bottom: 8px;
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
  .section-heading h2 { font-size: 32px; }
  .faq-list summary { font-size: 16px; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 64px;
    background: #fff;
    box-shadow: 0 -4px 18px #28204418;
  }
  .mobile-actions a {
    display: grid;
    place-content: center;
    gap: 1px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
  }
  .mobile-actions a + a { border-left: 1px solid #e5dfd9; }
  .mobile-actions a.whatsapp { color: #146b38; }
  .mobile-actions span { font-size: 19px; line-height: 1; }
  .whatsapp-widget {
    right: 16px;
    bottom: 76px;
  }
  .whatsapp-teaser {
    display: none;
  }
  .whatsapp-panel {
    right: -2px;
    bottom: 70px;
    width: calc(100vw - 28px);
  }
}

@media (min-width: 1536px) {
  .hero-copy { padding-left: 150px; }
  .service-strip { padding-right: 150px; padding-left: 150px; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .site-header { padding-right: 64px; padding-left: 64px; }
  .hero-copy { padding-right: 72px; padding-left: 72px; }
  .section-grid,
  .services-detail,
  .location-wrap { padding-right: 72px; padding-left: 72px; }
}

@media (max-width: 1024px) and (min-width: 801px) {
  .site-header { gap: 18px; padding-right: 30px; padding-left: 30px; }
  nav { gap: 16px; font-size: 14px; }
  .header-phone { padding: 12px 16px; font-size: 13px; }
  .hero-copy { padding-right: 38px; padding-left: 38px; }
  .hero h1 { font-size: 50px; }
  .hero h1 span { font-size: 26px; }
  .service-summary { grid-template-columns: 1fr; }
  .service-summary-copy { text-align: center; }
  .service-card-content { align-self: center; }
  .detail-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .site-header { padding: 10px 14px; }
  .brand img { width: 124px; }
  .header-phone { padding: 10px 12px; font-size: 12px; }
  .hero-copy { padding: 42px 18px 30px; }
  .hero h1 { font-size: 38px; }
  .hero h1 span { font-size: 16px; }
  .hero-image { height: 270px; }
  .actions .button { min-width: 100%; }
  .trust-points { grid-template-columns: 1fr; }
  .trust-points span { flex-direction: row; align-items: baseline; gap: 6px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 320px) {
  .brand img { width: 112px; }
  .header-phone { padding: 9px 10px; }
  .hero h1 { font-size: 35px; }
  .hero h1 span { font-size: 15px; }
  .section-grid { padding-right: 16px; padding-left: 16px; }
  .services-detail { padding-right: 14px; padding-left: 14px; }
  .location-wrap { padding-right: 12px; padding-left: 12px; }
}

@media (max-width: 390px) {
  .brand img { width: 126px; }
  .header-phone {
    padding: 9px 10px;
    font-size: 11px;
  }
  nav {
    gap: 16px;
    font-size: 13px;
  }
  .hero h1 { font-size: 39px; }
  .hero h1 span { font-size: 15px; }
  .actions .button { flex-basis: 100%; }
}

@media (max-width: 800px) {
  .equipo-grid { grid-template-columns: 1fr; gap: 14px; }
  .equipo-card { padding: 24px 20px; min-height: 438px; }
}

.mapa-container iframe { min-height: 0; }

.scroll-top-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: auto !important;
  right: 90px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #6B9080 !important;
  color: #FFFFFF !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  z-index: 9998 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
}
.scroll-top-btn.visible { display: flex !important; }
@media (max-width: 768px) {
  .scroll-top-btn {
    width: 48px !important;
    height: 48px !important;
    bottom: 16px !important;
    left: auto !important;
    right: 76px !important;
  }
  .whatsapp-widget {
    right: 16px !important;
    bottom: calc(64px + 16px) !important;
  }
}

/* Keep floating actions clear of the mobile action bar. */
@media (max-width: 800px) {
  .scroll-top-btn {
    bottom: calc(64px + 16px) !important;
  }

  .whatsapp-widget {
    bottom: calc(64px + 16px) !important;
  }

  /* The cards already provide their own surfaces on small screens. */
  .service-strip {
    background: #fff;
  }

  .service-cards {
    background: transparent;
  }
}

