:root {
  --teal: #168f8a;
  --teal-dark: #0b6665;
  --teal-deep: #084f4e;
  --teal-soft: #e2f2ef;
  --gold: #e6b541;
  --gold-dark: #c9921e;
  --cream: #fffaf1;
  --cream-deep: #f8f0e4;
  --ink: #243736;
  --muted: #607270;
  --line: #eadfce;
  --white: #ffffff;
  --shadow: 0 20px 52px 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 {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

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

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

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

h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

h3 { font-size: 1.12rem; }
p { line-height: 1.62; }
[id] { scroll-margin-top: 92px; }

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

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

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

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

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

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 150px;
}

.brand img {
  background: transparent;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 1.8vw, 2rem);
  justify-content: flex-end;
  margin-left: auto;
}

.desktop-nav > a:not(.button) {
  font-size: 0.9rem;
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}

.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.9rem;
  font-weight: 850;
  gap: 9px;
  justify-content: center;
  line-height: 1.1;
  min-height: 48px;
  padding: 13px 21px;
  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 28px 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.8rem;
  min-height: 42px;
  padding: 11px 17px;
  white-space: nowrap;
}

.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: 250px;
  padding: 14px;
  position: absolute;
  right: 0;
  top: 53px;
}

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

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

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

.hero::before,
.hero::after {
  color: rgb(230 181 65 / 22%);
  content: "✿";
  font-size: 7rem;
  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: 32px;
  grid-template-columns: minmax(430px, 0.82fr) minmax(570px, 1.18fr);
  min-height: 610px;
  padding-block: 38px 45px;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(3.35rem, 4.9vw, 5.5rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

.hero-lead {
  color: #435655;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  margin-bottom: 24px;
  max-width: 610px;
}

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

.hero-trust {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, max-content);
  margin-top: 28px;
  max-width: 720px;
}

.hero-trust span {
  align-items: center;
  color: #526261;
  display: flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 9px;
  line-height: 1.25;
  min-width: 0;
}

.hero-trust b {
  color: var(--teal);
  display: flex;
  flex: 0 0 auto;
}

.hero-trust em { font-style: normal; white-space: nowrap; }

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

.hero-image {
  border-radius: 36px 36px 110px 36px;
  box-shadow: var(--shadow);
  height: 515px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.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: 850;
  gap: 12px;
  justify-content: center;
  min-height: 88px;
}

.pet-strip span:last-child { border-right: 0; }
.pet-strip b { color: var(--teal-dark); }

.section { padding-block: 82px; }
.section-heading { margin-bottom: 32px; }
.section-heading h2 { margin-bottom: 0; }

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

.section-intro { color: var(--muted); margin: 14px auto 0; max-width: 850px; }
.services-section { background: var(--cream); }

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

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

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

.service-card::after {
  bottom: -30px;
  color: rgb(230 181 65 / 23%);
  content: "✿";
  font-size: 6rem;
  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;
  height: 72px;
  justify-content: center;
  margin-bottom: 22px;
  width: 72px;
}

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

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

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

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

.rates-section {
  background:
    radial-gradient(circle at 95% 8%, rgb(230 181 65 / 14%), transparent 22rem),
    linear-gradient(180deg, white, #fbf7ef);
  border-top: 1px solid rgb(234 223 206 / 65%);
}

.rates-wrap { max-width: 1500px; }

.rates-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rate-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgb(22 77 74 / 6%);
  min-height: 285px;
  overflow: hidden;
  padding: 27px 25px;
  position: relative;
}

.rate-card::after {
  border: 1px solid rgb(22 143 138 / 12%);
  border-radius: 50%;
  bottom: -62px;
  content: "";
  height: 150px;
  position: absolute;
  right: -48px;
  width: 150px;
}

.rate-featured { background: #e9f5f2; }
.rate-monthly { background: var(--teal-dark); border-color: var(--teal-dark); color: white; }
.rate-policy { background: #fff5db; }

.rate-icon {
  align-items: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 21px;
  width: 58px;
}

.rate-monthly .rate-icon { background: rgb(255 255 255 / 14%); color: white; }

.rate-label {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.rate-monthly .rate-label,
.rate-monthly h3 { color: white; }

.rate-price {
  align-items: baseline;
  display: flex;
  gap: 9px;
  line-height: 1;
  margin-bottom: 16px;
}

.rate-price strong { color: var(--teal-dark); font-size: clamp(2.65rem, 3.4vw, 4rem); letter-spacing: -0.06em; }
.rate-price span { color: var(--muted); font-size: 0.88rem; font-weight: 800; }
.rate-card > p:last-child { color: var(--muted); font-size: 0.87rem; margin: 0; position: relative; z-index: 1; }
.rate-card h3 { font-size: 1.55rem; margin: 0 0 13px; }
.rate-monthly .rate-price strong,
.rate-monthly .rate-price span,
.rate-monthly > p:last-child { color: white; }

.rate-was {
  color: rgb(255 255 255 / 72%) !important;
  font-size: 0.78rem !important;
  margin-top: -8px !important;
}

.rate-badge {
  background: var(--gold);
  border-radius: 0 0 0 16px;
  color: var(--teal-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}

.rates-action {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 18px;
  padding: 17px 20px;
}

.rates-action p { color: var(--teal-dark); font-weight: 850; margin: 0; }

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

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

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

.home-copy {
  align-items: center;
  background: white;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 62px clamp(45px, 6vw, 105px);
  position: relative;
}

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

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

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

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

.benefit-list li > b {
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  display: flex;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.benefit-list span { display: grid; gap: 2px; }
.benefit-list strong { color: var(--teal-dark); font-size: 1rem; }
.benefit-list small { color: var(--muted); font-size: 0.84rem; }

.about-process-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;
  overflow: hidden;
  position: relative;
}

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

.about-process-section::before { left: -1rem; top: -1.8rem; }
.about-process-section::after { bottom: -2.5rem; right: -1rem; }
.about-process-section > .container { position: relative; z-index: 1; }

.about-profile {
  align-items: stretch;
  display: grid;
  gap: clamp(38px, 5vw, 78px);
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  padding-block: 44px 26px;
}

.about-image {
  border-radius: 32px 32px 88px 32px;
  box-shadow: 0 24px 58px rgb(17 53 51 / 28%);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  position: absolute;
  width: 100%;
}

.about-copy {
  align-items: center;
  display: flex;
  min-height: 480px;
  padding: 20px 0;
  position: relative;
}

.about-copy::after {
  bottom: -18px;
  color: rgb(255 255 255 / 10%);
  content: "✿";
  font-size: 8rem;
  position: absolute;
  right: 0;
}

.about-copy > div { max-width: 720px; position: relative; z-index: 1; }
.about-copy h2 { color: white; }
.about-copy .eyebrow { color: var(--gold); }
.about-copy p:not(.eyebrow) { color: rgb(255 255 255 / 82%); }
.about-copy .about-lead { color: white; font-size: 1.05rem; font-weight: 750; }

.steps-section {
  border-top: 1px solid rgb(255 255 255 / 20%);
  color: white;
  padding-block: 42px 60px;
  position: relative;
}

.steps-section .section-heading {
  align-items: baseline;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
  max-width: none;
}

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

.section-heading-light .eyebrow { margin: 0; opacity: 0.8; white-space: nowrap; }
.steps-section .section-heading h2 { margin: 0; white-space: nowrap; }

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

.step {
  border-right: 1px solid rgb(255 255 255 / 22%);
  min-height: 175px;
  padding: 8px 26px 8px 30px;
  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: 1rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.step-icon { color: white; display: flex; height: 40px; }

.step h3 {
  color: white;
  margin: 9px 0 6px;
  white-space: nowrap;
}

.step p { color: rgb(255 255 255 / 82%); font-size: 0.84rem; margin: 0; }
.button-inline { margin-top: 13px; }
.peace-section { background: white; }

.peace-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 5vw, 85px);
  grid-template-columns: minmax(320px, 0.55fr) 1.45fr;
}

.update-device {
  background: #fbfcfc;
  border: 10px solid #183130;
  border-radius: 40px;
  box-shadow: 0 24px 60px rgb(28 53 52 / 24%);
  margin: auto;
  max-width: 330px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.device-top {
  align-items: center;
  background: #183130;
  display: flex;
  height: 25px;
  justify-content: center;
}

.device-top span {
  background: #071414;
  border-radius: 99px;
  height: 6px;
  width: 72px;
}

.device-top i {
  background: #335453;
  border-radius: 50%;
  height: 7px;
  margin-left: 8px;
  width: 7px;
}

.update-header {
  align-items: center;
  background: var(--teal-dark);
  color: white;
  display: grid;
  gap: 10px;
  grid-template-columns: 42px 1fr auto;
  padding: 12px 14px;
}

.update-avatar {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--teal-dark);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.update-header > div:nth-child(2) { display: grid; gap: 1px; }
.update-header strong { font-size: 0.78rem; }
.update-header small { font-size: 0.6rem; opacity: 0.78; }

.update-online {
  background: rgb(255 255 255 / 16%);
  border-radius: 99px;
  font-size: 0.56rem;
  padding: 4px 7px;
}

.update-device > img { height: 190px; object-fit: cover; width: 100%; }

.update-message {
  background: #eef8f5;
  border-radius: 16px 16px 3px 16px;
  margin: 13px;
  padding: 13px 14px 11px;
}

.update-message p {
  color: #405251;
  font-size: 0.72rem;
  line-height: 1.45;
  margin-bottom: 6px;
}

.update-message p strong { color: var(--teal-dark); font-size: 0.78rem; }
.update-checks { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }

.update-checks span {
  background: white;
  border: 1px solid #cfe8e3;
  border-radius: 99px;
  color: var(--teal-dark);
  font-size: 0.57rem;
  font-weight: 750;
  padding: 4px 6px;
}

.update-message > small {
  color: #738886;
  display: block;
  font-size: 0.55rem;
  margin-top: 7px;
  text-align: right;
}

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

.peace-cards article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 210px;
  padding: 24px 20px;
  text-align: center;
}

.peace-cards b { align-items: center; color: var(--teal); display: flex; height: 48px; justify-content: center; }
.peace-cards h3 { margin: 15px 0 7px; }
.peace-cards p { color: var(--muted); font-size: 0.82rem; margin: 0; }
.references-section { background: linear-gradient(180deg, #f8f0e4, var(--cream)); }

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

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

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

.reference-grid h3 { margin: 12px 0 8px; white-space: nowrap; }
.reference-grid p { color: var(--muted); font-size: 0.85rem; margin: 0; }

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

.map-grid {
  align-items: center;
  display: grid;
  gap: clamp(30px, 4vw, 70px);
  grid-template-columns: minmax(260px, 0.5fr) minmax(680px, 1.5fr);
}

.map-copy p:not(.eyebrow) { color: var(--muted); }
.map-note { color: var(--teal-dark) !important; font-weight: 850; }

.map-art {
  background: #fff7e7;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgb(36 75 72 / 8%);
  overflow: hidden;
  padding: 10px;
}

.map-art img { border-radius: 20px; height: auto; width: 100%; }
.faq-section { background: var(--cream); }

.faq-grid {
  display: grid;
  gap: clamp(35px, 5vw, 80px);
  grid-template-columns: minmax(300px, 0.55fr) 1.45fr;
}

.faq-title > p:not(.eyebrow) { color: var(--muted); }
.faq-list { display: grid; gap: 9px; }

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  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: 17px 20px;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-dark); font-size: 1.4rem; 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: 17px 20px 20px; }

.final-cta { background: white; padding: 52px 25px; }

.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;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 310px;
  overflow: hidden;
  padding: 40px 48px 0;
}

.final-cta .eyebrow { color: var(--teal-dark); }
.final-cta h2 { color: white; margin-bottom: 8px; }
.final-cta p:not(.eyebrow) { color: rgb(255 255 255 / 90%); margin-bottom: 20px; }

.final-cta img {
  align-self: end;
  height: 290px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

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

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.footer-brand img {
  background: transparent;
  height: 108px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.footer-brand p { max-width: 300px; }
.footer-brand > a { color: white; font-weight: 850; }
.site-footer h3 { color: white; font-size: 0.92rem; letter-spacing: 0; margin: 0 0 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.site-footer a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  font-size: 0.73rem;
  justify-content: center;
  margin-top: 46px;
  padding-top: 19px;
  text-align: center;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
  color: white;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* Calm, performance-friendly motion */
[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-scale: 1;
  --reveal-x: 0;
  --reveal-y: 30px;
}

[data-reveal="left"] { --reveal-x: -58px; --reveal-y: 0; }
[data-reveal="right"] { --reveal-x: 58px; --reveal-y: 0; }
[data-reveal="pop"] { --reveal-scale: 0.94; --reveal-y: 20px; }

html.is-motion-ready [data-reveal] {
  filter: blur(2px);
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    filter 680ms cubic-bezier(0.2, 0.72, 0.22, 1),
    opacity 680ms cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 680ms cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: var(--reveal-delay);
  will-change: filter, opacity, transform;
}

html.is-motion-ready [data-reveal].is-visible {
  filter: none;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.brand { animation: header-slide-left 650ms 80ms both cubic-bezier(0.2, 0.72, 0.22, 1); }
.desktop-nav { animation: header-slide-right 650ms 120ms both cubic-bezier(0.2, 0.72, 0.22, 1); }
.hero-image { animation: gentle-float 6.5s 900ms ease-in-out infinite; }
.about-image img { animation: gentle-focus 11s ease-in-out infinite alternate; }
.home-image { overflow: hidden; }
.home-image img { animation: gentle-focus 13s ease-in-out infinite alternate; }
.floating-whatsapp { animation: soft-pulse 4.2s 1.6s ease-in-out infinite; }

.service-icon,
.peace-cards b,
.pet-strip b {
  transition: transform 260ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.service-card:hover .service-icon,
.peace-cards article:hover b,
.pet-strip span:hover b { transform: translateY(-4px) rotate(-3deg) scale(1.06); }

.rate-card,
.peace-cards article,
.reference-grid article,
.map-art,
.update-device {
  transition: box-shadow 260ms ease, transform 260ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.rate-card:hover,
.peace-cards article:hover,
.reference-grid article:hover { box-shadow: 0 20px 48px rgb(19 75 72 / 13%); }
.map-art:hover { box-shadow: 0 22px 54px rgb(36 75 72 / 14%); }
.update-device:hover { box-shadow: 0 30px 70px rgb(28 53 52 / 28%); }

html.is-motion-ready .service-card[data-reveal].is-visible:hover,
html.is-motion-ready .rate-card[data-reveal].is-visible:hover,
html.is-motion-ready .peace-cards article[data-reveal].is-visible:hover,
html.is-motion-ready .reference-grid article[data-reveal].is-visible:hover,
html.is-motion-ready .map-art[data-reveal].is-visible:hover,
html.is-motion-ready .update-device[data-reveal].is-visible:hover {
  transform: translateY(-5px);
}

@keyframes header-slide-left {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes header-slide-right {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gentle-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -7px, 0) scale(1.008); }
}

@keyframes gentle-focus {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 16px 36px rgb(13 83 79 / 32%), 0 0 0 0 rgb(230 181 65 / 20%); }
  50% { box-shadow: 0 18px 42px rgb(13 83 79 / 38%), 0 0 0 10px rgb(230 181 65 / 0%); }
}

@media (max-width: 1140px) {
  .desktop-nav { gap: 0.95rem; }
  .desktop-nav > a:not(.button) { font-size: 0.82rem; }
  .hero-grid { grid-template-columns: minmax(390px, 0.85fr) minmax(500px, 1.15fr); }
  .hero-trust em { white-space: normal; }
  .step h3,
  .reference-grid h3 { white-space: normal; }
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .brand { min-width: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { margin-inline: auto; max-width: 780px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .button-row { justify-content: center; }
  .hero-trust { margin-inline: auto; }
  .hero-image-wrap { margin-top: 4px; }
  .hero-image { height: 500px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .about-profile { gap: 40px; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr); }
  .about-image { min-height: 360px; }
  .about-copy { min-height: 360px; }
  .steps-section .section-heading { align-items: center; flex-direction: column; gap: 7px; }
  .steps-section .section-heading h2 { white-space: normal; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n + 2) { border-bottom: 1px solid rgb(255 255 255 / 20%); padding-bottom: 28px; }
  .peace-grid { gap: 38px; grid-template-columns: 300px 1fr; }
  .peace-cards { grid-template-columns: 1fr; }
  .peace-cards article { min-height: auto; text-align: left; }
  .peace-cards b { justify-content: flex-start; }
  .reference-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding-inline: 20px; }
  .header-inner { min-height: 76px; }
  .brand img { height: 58px; max-width: 150px; }
  .hero-grid { gap: 28px; min-height: 0; padding-block: 44px 36px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .hero-trust { grid-template-columns: 1fr; max-width: 330px; text-align: left; }
  .hero-trust em { white-space: normal; }
  .hero-image-wrap { min-height: 330px; }
  .hero-image { border-radius: 28px 28px 68px 28px; height: 350px; }
  .pet-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pet-strip span { border-bottom: 1px solid var(--line); min-height: 74px; }
  .pet-strip span:nth-child(2) { border-right: 0; }
  .section { padding-block: 68px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 295px; }
  .rates-grid { grid-template-columns: 1fr; }
  .rate-card { min-height: 260px; }
  .rates-action { align-items: stretch; flex-direction: column; text-align: center; }
  .home-section,
  .about-profile { grid-template-columns: 1fr; }
  .home-image { min-height: 330px; }
  .home-copy { min-height: auto; padding: 58px 25px; }
  .about-profile { gap: 28px; padding-block: 50px 34px; }
  .about-image { height: 390px; min-height: 390px; }
  .about-copy { min-height: auto; padding: 10px 4px 4px; }
  .steps-section { padding-block: 38px 46px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step,
  .step:nth-child(-n + 2) { border-bottom: 1px solid rgb(255 255 255 / 20%); border-right: 0; min-height: 0; padding: 24px 14px 28px; }
  .step:last-child { border-bottom: 0; }
  .peace-grid { grid-template-columns: 1fr; }
  .update-device { margin-bottom: 12px; }
  .reference-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 32px; grid-template-columns: 1fr; }
  .final-cta { padding: 42px 12px; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 36px 26px 0; text-align: center; }
  .final-cta img { height: auto; margin-top: 24px; object-position: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: center; }
  .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.68rem; }
  .button-row .button { width: 100%; }
  .hero-image { height: 305px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  html.is-motion-ready [data-reveal],
  html.is-motion-ready [data-reveal].is-visible {
    filter: none;
    opacity: 1;
    transform: none;
  }
}
