:root {
  --teal: #168f8a;
  --teal-dark: #0b6665;
  --teal-deep: #095453;
  --teal-soft: #dcefed;
  --gold: #e6b541;
  --gold-dark: #c9921e;
  --cream: #fffaf1;
  --cream-deep: #f8f0e4;
  --sand: #f2dfc5;
  --ink: #243736;
  --muted: #617271;
  --line: #eadfce;
  --white: #ffffff;
  --shadow: 0 22px 60px rgb(19 75 72 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body,
button,
a,
summary {
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.svg-symbols {
  left: -9999px;
  position: absolute;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--teal-dark);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  line-height: 1.7;
}

[id] {
  scroll-margin-top: 92px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: 28px;
  width: 100%;
}

.announcement {
  align-items: center;
  background: var(--teal-dark);
  color: white;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.025em;
  min-height: 30px;
  padding: 6px 18px;
  text-align: center;
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(234 223 206 / 74%);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  background: var(--teal);
  border-radius: 20px;
  height: 64px;
  object-fit: cover;
  width: 79px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.desktop-nav > a:not(.button) {
  font-size: 0.93rem;
  font-weight: 700;
  position: relative;
}

.desktop-nav > a:not(.button)::after {
  background: var(--gold);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  line-height: 1.1;
  min-height: 50px;
  padding: 14px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-whatsapp {
  background: var(--gold);
  box-shadow: 0 10px 30px rgb(194 142 26 / 22%);
  color: #173d3b;
}

.button-whatsapp:hover {
  background: #efc250;
  box-shadow: 0 14px 32px rgb(194 142 26 / 30%);
}

.button-small {
  font-size: 0.82rem;
  min-height: 42px;
  padding: 11px 17px;
}

.button-secondary {
  background: white;
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-secondary:hover {
  background: var(--teal-soft);
}

.button-dark {
  background: var(--teal-dark);
  box-shadow: none;
  color: white;
}

.button-dark:hover {
  background: var(--teal-deep);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  list-style: none;
  width: 44px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  background: var(--teal-dark);
  border-radius: 2px;
  height: 2px;
  width: 20px;
}

.mobile-nav nav {
  align-items: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 245px;
  padding: 14px;
  position: absolute;
  right: 0;
  top: 53px;
}

.mobile-nav nav > a:not(.button) {
  border-radius: 10px;
  font-weight: 700;
  padding: 11px 12px;
}

.mobile-nav nav > a:not(.button):hover {
  background: var(--cream);
}

.hero {
  background:
    radial-gradient(circle at 5% 95%, rgb(230 181 65 / 14%), transparent 23rem),
    linear-gradient(180deg, white, var(--cream));
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  color: rgb(230 181 65 / 23%);
  content: "✿";
  font-size: 8rem;
  position: absolute;
  z-index: 0;
}

.hero::before {
  bottom: -2rem;
  left: -1.7rem;
  transform: rotate(-18deg);
}

.hero::after {
  right: -1.4rem;
  top: 1.5rem;
  transform: rotate(15deg);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 610px;
  padding-block: 52px 56px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

.hero-lead {
  color: #435655;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  margin-bottom: 27px;
  max-width: 520px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  max-width: 580px;
}

.hero-trust span {
  align-items: center;
  color: #526261;
  display: flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 8px;
  line-height: 1.35;
}

.hero-trust b {
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-image-wrap {
  min-height: 470px;
  position: relative;
}

.hero-image {
  border-radius: 34% 12% 28% 8% / 18% 20% 16% 12%;
  box-shadow: var(--shadow);
  height: 500px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-sticker {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 10px 30px rgb(31 82 79 / 15%);
  color: var(--teal-dark);
  display: flex;
  font-size: 0.83rem;
  font-weight: 800;
  gap: 6px;
  left: -18px;
  padding: 12px 18px;
  position: absolute;
}

.pet-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.pet-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pet-strip span {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  min-height: 92px;
}

.pet-strip span:last-child {
  border-right: 0;
}

.pet-strip b {
  font-size: 1.8rem;
}

.section {
  padding-block: 96px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.centered {
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
}

.section-intro {
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 660px;
}

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  border: 1px solid rgb(218 199 169 / 65%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card::after {
  bottom: -28px;
  color: rgb(230 181 65 / 23%);
  content: "✿";
  font-size: 6.5rem;
  position: absolute;
  right: -14px;
  transform: rotate(-12deg);
}

.service-sand { background: #fbf3e7; }
.service-mint { background: #e8f4f1; }
.service-gold { background: #fff3d5; }
.service-peach { background: #f8eae2; }

.service-icon {
  align-items: center;
  background: white;
  border: 1px solid rgb(22 143 138 / 13%);
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  height: 94px;
  justify-content: center;
  margin-bottom: 28px;
  width: 94px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #526362;
  flex: 1;
  font-size: 0.92rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-card a {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.service-card a span {
  font-size: 1.25rem;
  margin-left: 4px;
}

.home-section,
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-image,
.about-image {
  min-height: 520px;
}

.home-image img,
.about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-copy,
.about-copy {
  align-items: center;
  background: white;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 70px max(7vw, 54px);
  position: relative;
}

.home-copy::after,
.about-copy::after {
  bottom: 25px;
  color: rgb(230 181 65 / 24%);
  content: "✿";
  font-size: 8rem;
  position: absolute;
  right: 30px;
}

.home-copy > div,
.about-copy > div {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.benefit-list {
  display: grid;
  gap: 22px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.benefit-list li {
  align-items: center;
  display: flex;
  gap: 17px;
}

.benefit-list li > b {
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  display: flex;
  font-size: 1.35rem;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.benefit-list span {
  display: grid;
  gap: 3px;
}

.benefit-list strong {
  color: var(--teal-dark);
  font-size: 1.03rem;
}

.benefit-list small {
  color: var(--muted);
  font-size: 0.86rem;
}

.steps-section {
  background:
    radial-gradient(circle at 4% 20%, rgb(255 255 255 / 8%), transparent 18rem),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding-block: 88px;
  position: relative;
}

.steps-section::before,
.steps-section::after {
  color: rgb(255 255 255 / 10%);
  content: "✿";
  font-size: 9rem;
  position: absolute;
}

.steps-section::before { left: -1rem; top: -1.8rem; }
.steps-section::after { bottom: -2.5rem; right: -1rem; }

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: white;
}

.section-heading-light .eyebrow {
  opacity: 0.78;
}

.steps-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.step {
  border-right: 1px solid rgb(255 255 255 / 22%);
  min-height: 250px;
  padding: 15px 30px 15px 34px;
  position: relative;
}

.step:last-child { border-right: 0; }

.step-number {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--teal-deep);
  display: flex;
  font-size: 1.15rem;
  font-weight: 900;
  height: 47px;
  justify-content: center;
  margin-bottom: 25px;
  width: 47px;
}

.step-icon {
  color: white;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  height: 47px;
}

.step h3 {
  color: white;
  margin: 10px 0 7px;
}

.step p {
  color: rgb(255 255 255 / 82%);
  font-size: 0.88rem;
  margin: 0;
}

.about-copy {
  background: var(--cream);
}

.about-copy p:not(.eyebrow) {
  color: #4f6361;
}

.button-inline {
  margin-top: 15px;
}

.peace-section {
  background: white;
}

.peace-grid {
  align-items: center;
  display: grid;
  gap: 65px;
  grid-template-columns: 250px 1fr;
}

.phone-mockup {
  background: #182222;
  border: 3px solid #182222;
  border-radius: 31px;
  box-shadow: 0 22px 50px rgb(28 53 52 / 22%);
  margin: auto;
  max-width: 220px;
  padding: 12px 7px 8px;
  width: 100%;
}

.phone-speaker {
  background: #111818;
  border-radius: 4px;
  height: 5px;
  margin: 0 auto 9px;
  width: 45px;
}

.phone-screen {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 12px;
}

.phone-title {
  display: grid;
  gap: 2px;
  padding: 13px;
}

.phone-title strong { color: var(--teal-dark); font-size: 0.77rem; }
.phone-title small { color: #7c8a89; font-size: 0.58rem; }
.phone-screen img { height: 120px; object-fit: cover; width: 100%; }
.phone-screen p { font-size: 0.67rem; line-height: 1.35; margin: 10px 12px 6px; }
.phone-screen ul { color: #405251; font-size: 0.62rem; line-height: 1.7; list-style: none; margin: 0; padding: 0 12px; }
.phone-screen li::first-letter { color: var(--teal); }

.peace-cards {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.peace-cards article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 235px;
  padding: 27px 23px;
  text-align: center;
}

.peace-cards b {
  align-items: center;
  color: var(--teal);
  display: flex;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  height: 55px;
  justify-content: center;
}

.peace-cards h3 { margin: 18px 0 8px; }
.peace-cards p { color: var(--muted); font-size: 0.85rem; margin: 0; }

.references-section {
  background: linear-gradient(180deg, #f8f0e4, var(--cream));
}

.reference-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.reference-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 230px;
  padding: 30px;
  position: relative;
}

.reference-grid article > span {
  color: var(--teal);
  display: block;
  font-family: Georgia, serif;
  font-size: 3.6rem;
  height: 42px;
  line-height: 1;
}

.reference-grid h3 { margin: 14px 0 9px; }
.reference-grid p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.map-section {
  background: white;
  padding-block: 88px;
}

.map-grid {
  align-items: center;
  display: grid;
  gap: 45px;
  grid-template-columns: 0.72fr 1.28fr;
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
}

.map-note {
  color: var(--teal-dark) !important;
  font-weight: 800;
}

.map-art {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  padding: 16px;
}

.map-art svg { width: 100%; }
.map-land { fill: #f2e6cf; }
.map-water { fill: #b9dedc; opacity: 0.85; }
.mountains { fill: none; stroke: #8db8b2; stroke-linecap: round; stroke-linejoin: round; stroke-width: 5; }
.mountains-back { opacity: 0.4; stroke: #d2b575; stroke-width: 4; }
.route { fill: none; stroke: var(--teal); stroke-dasharray: 7 9; stroke-linecap: round; stroke-width: 4; }
.map-pin circle:first-child { fill: var(--teal-dark); }
.map-pin circle:nth-child(2) { fill: white; }
.map-pin rect { fill: var(--teal-dark); }
.map-pin text { fill: white; font-size: 14px; font-weight: 800; text-anchor: middle; }
.tree { fill: none; stroke: #7da59a; stroke-linecap: round; stroke-linejoin: round; stroke-width: 4; }

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 65px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-title > p:not(.eyebrow) { color: var(--muted); }

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-list summary {
  align-items: center;
  color: var(--teal-dark);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  padding: 19px 22px;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-dark); font-size: 1.45rem; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { border-top: 1px solid var(--line); color: var(--muted); margin: 0; padding: 18px 22px 22px; }

.final-cta {
  background: white;
  padding: 30px 0 0;
}

.final-cta-inner {
  align-items: center;
  background:
    radial-gradient(circle at 10% 15%, rgb(255 255 255 / 20%), transparent 12rem),
    var(--gold);
  border-radius: 28px 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 290px;
  overflow: hidden;
  padding: 42px 52px 0;
}

.final-cta .eyebrow { color: var(--teal-dark); }
.final-cta h2 { color: white; margin-bottom: 10px; }
.final-cta p:not(.eyebrow) { color: rgb(255 255 255 / 88%); margin-bottom: 22px; }
.final-cta img { align-self: end; height: 270px; object-fit: cover; object-position: 65% center; width: 100%; }

.site-footer {
  background: var(--teal-dark);
  color: rgb(255 255 255 / 78%);
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer-brand img {
  background: var(--teal);
  border-radius: 18px;
  height: 84px;
  object-fit: cover;
  width: 102px;
}

.footer-brand p { max-width: 270px; }
.footer-brand > a { color: white; font-weight: 800; }
.site-footer h3 { color: white; font-size: 0.93rem; letter-spacing: 0; margin: 0 0 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.site-footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 18%); display: flex; font-size: 0.75rem; justify-content: space-between; margin-top: 50px; padding-top: 20px; }

.floating-whatsapp {
  bottom: 20px;
  box-shadow: 0 16px 36px rgb(13 83 79 / 32%);
  position: fixed;
  right: 20px;
  z-index: 50;
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { margin-inline: auto; max-width: 760px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .button-row { justify-content: center; }
  .hero-trust { margin-inline: auto; }
  .hero-image-wrap { margin-top: 8px; }
  .hero-image { height: 500px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .step:nth-child(2) { border-right: 0; }
  .peace-grid { gap: 38px; grid-template-columns: 210px 1fr; }
  .peace-cards { grid-template-columns: 1fr; }
  .peace-cards article { min-height: auto; text-align: left; }
  .peace-cards b { justify-content: flex-start; }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding-inline: 20px; }
  .header-inner { min-height: 76px; }
  .brand img { border-radius: 15px; height: 54px; width: 67px; }
  .hero-grid { gap: 30px; min-height: 0; padding-block: 50px 38px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-trust { grid-template-columns: 1fr; max-width: 320px; text-align: left; }
  .hero-image-wrap { min-height: 340px; }
  .hero-image { border-radius: 30px 30px 70px 30px; height: 360px; }
  .hero-sticker { bottom: 14px; left: 14px; }
  .pet-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pet-strip span { border-bottom: 1px solid var(--line); min-height: 75px; }
  .pet-strip span:nth-child(2) { border-right: 0; }
  .section { padding-block: 72px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .home-section,
  .about-section { grid-template-columns: 1fr; }
  .home-image,
  .about-image { min-height: 330px; }
  .home-copy,
  .about-copy { min-height: auto; padding: 65px 25px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-bottom: 1px solid rgb(255 255 255 / 20%); border-right: 0; min-height: 215px; padding-left: 14px; }
  .step:last-child { border-bottom: 0; }
  .peace-grid { grid-template-columns: 1fr; }
  .phone-mockup { margin-bottom: 15px; }
  .reference-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 35px; grid-template-columns: 1fr; }
  .final-cta { padding-inline: 12px; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 38px 28px 0; text-align: center; }
  .final-cta img { height: 220px; margin-top: 25px; object-position: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .floating-label { display: none; }
  .floating-whatsapp { border-radius: 50%; bottom: 14px; height: 56px; min-height: 56px; padding: 0; right: 14px; width: 56px; }
}

@media (max-width: 430px) {
  .announcement { font-size: 0.7rem; }
  .button-row .button { width: 100%; }
  .hero-image { height: 310px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
