/* ============================================================
   PETSITTING POMBAL — Premium CSS v2.0
   Aesthetic: SaaS-modern / Pic-Time / organic luxury
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --clr-forest:   #1C3A2B;
  --clr-moss:     #2E5940;
  --clr-sage:     #6A9E7A;
  --clr-sage-lt:  #BDD9C5;
  --clr-sage-xs:  #E8F3EB;
  --clr-sand:     #F5F0E8;
  --clr-warm:     #FDFAF5;
  --clr-amber:    #C97D3A;
  --clr-amber-lt: #F3E4D0;
  --clr-chalk:    #FFFFFF;
  --clr-ink:      #1A1A1A;
  --clr-muted:    #6B6B6B;
  --clr-border:   rgba(28,58,43,0.10);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill: 999px;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.12);

  --max-w: 1180px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-body);
  background: var(--clr-warm);
  color: var(--clr-ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; }

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-forest);
}

.section-title em {
  font-style: italic;
  color: var(--clr-amber);
}

.section-body {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-forest);
  color: var(--clr-chalk);
}
.btn-primary:hover {
  background: var(--clr-moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28,58,43,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--clr-forest);
  border: 1.5px solid var(--clr-sage);
}
.btn-outline:hover {
  background: var(--clr-amber) !important;
  border-color: var(--clr-amber) !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-size: 1rem;
  padding: 1rem 2.4rem;
}
.btn-whatsapp:hover {
  background: #1fb356;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.3s;
}
.nav__logo-white { display: block; }
.nav__logo-dark  { display: none; }
.nav.scrolled .nav__logo-white { display: none; }
.nav.scrolled .nav__logo-dark  { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav.scrolled .nav__links a { color: var(--clr-ink); }
.nav__links a:hover { color: var(--clr-sage) !important; }

.nav__cta {
  background: rgba(255,255,255,0.15);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.nav.scrolled .nav__cta {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
}
.nav__cta:hover {
  background: var(--clr-amber) !important;
  border-color: var(--clr-amber) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: white;
  transition: color 0.2s;
}
.nav.scrolled .nav__toggle { color: var(--clr-ink); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--clr-warm);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  text-decoration: none;
  color: var(--clr-ink);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50,50,20,0.75) 0%,
    rgba(20,20,20,0.20) 50%,
    rgba(25,10,10,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clr-sage-lt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: white;
  max-width: 780px;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-sage-lt);
}
.hero__title strong {
  font-weight: 600;
  display: block;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.55s both;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}
.hero__stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero floating card */
.hero__card {
  position: absolute;
  right: 5%;
  bottom: 15%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  color: white;
  z-index: 2;
  animation: fadeUp 1s var(--ease-out) 0.9s both;
  max-width: 220px;
}
.hero__card-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.hero__card-text { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.hero__card-val {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--clr-sage-lt);
  margin: 0.3rem 0 0.1rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--clr-forest);
  padding: 1.2rem 2rem;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  white-space: nowrap;
}
.trust-item svg { opacity: 0.7; width: 18px; height: 18px; }

/* ── ABOUT ── */
.about {
  padding: 7rem 0;
  background: var(--clr-warm);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clr-chalk);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.about__img-badge-icon { font-size: 2rem; }
.about__img-badge-text { font-size: 0.78rem; color: var(--clr-muted); line-height: 1.4; }
.about__img-badge-val {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--clr-forest);
  font-weight: 600;
}

.about__text { padding-left: 1rem; }
.about__text p {
  color: var(--clr-muted);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about__text strong { color: var(--clr-forest); font-weight: 500; }
.about__signature {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--clr-forest);
  margin-top: 1.5rem;
}
.about__creds {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about__cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--clr-muted);
  background: var(--clr-sage-xs);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
}
.about__cred svg { width: 14px; height: 14px; color: var(--clr-sage); }

/* ── GALLERY ── */
.gallery {
  padding: 6rem 0;
  background: var(--clr-sand);
  overflow: hidden;
}
.gallery__head {
  text-align: center;
  margin-bottom: 3rem;
}

/* Masonry-style carousel */
.gallery__carousel {
  position: relative;
}
.gallery__track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item {
  flex: 0 0 auto;
  width: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,20,0.55), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: white;
  font-size: 0.85rem;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-chalk);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--clr-forest);
  box-shadow: var(--shadow-xs);
}
.gallery__btn:hover {
  background: var(--clr-forest);
  color: white;
  border-color: var(--clr-forest);
}
.gallery__btn svg { width: 18px; height: 18px; }
.gallery__dots {
  display: flex;
  gap: 6px;
}
.gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-sage-lt);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.gallery__dot.active {
  background: var(--clr-forest);
  transform: scale(1.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,20,14,0.95);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* ── SERVICES ── */
.services {
  padding: 7rem 0;
  background: var(--clr-warm);
}
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--clr-chalk);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-sage-lt);
  transition: height 0.35s var(--ease-out), background 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before {
  height: 5px;
  background: var(--clr-sage);
}
.service-card--featured {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
  color: white;
  grid-row: span 1;
}
.service-card--featured::before { background: var(--clr-amber); }
.service-card--featured:hover::before { background: var(--clr-amber-lt); }

.service-card__badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--clr-amber);
  color: white;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-sage-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.12);
}
.service-card__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.service-card--featured .service-card__name { color: white; }
.service-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  font-weight: 300;
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.7); }
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-sage);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-card--featured .service-card__cta { color: var(--clr-sage-lt); }
.service-card__cta:hover { gap: 10px; }

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 0;
  background: var(--clr-sage-xs);
}
.how__head { text-align: center; margin-bottom: 4rem; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--clr-sage-lt);
  z-index: 0;
}
.how__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.how__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-chalk);
  border: 1.5px solid var(--clr-sage-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--clr-forest);
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.how__step-title {
  font-weight: 500;
  color: var(--clr-forest);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.how__step-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── REVIEWS ── */
.reviews {
  padding: 7rem 0;
  background: var(--clr-warm);
}
.reviews__head { text-align: center; margin-bottom: 3.5rem; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--clr-chalk);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card--featured {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
  color: white;
}
.review-card__quote {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--clr-sage-lt);
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.review-card--featured .review-card__quote { color: white; opacity: 0.25; }
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
}
.review-card__star {
  width: 14px; height: 14px;
  fill: var(--clr-amber);
  color: var(--clr-amber);
}
.review-card--featured .review-card__star { fill: var(--clr-amber-lt); color: var(--clr-amber-lt); }
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-muted);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.review-card--featured .review-card__text { color: rgba(255,255,255,0.78); }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-sage-xs);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--clr-forest);
  font-weight: 600;
  flex-shrink: 0;
}
.review-card--featured .review-card__avatar { background: rgba(255,255,255,0.15); color: white; }
.review-card__name { font-weight: 500; font-size: 0.88rem; color: var(--clr-ink); }
.review-card--featured .review-card__name { color: white; }
.review-card__pet { font-size: 0.78rem; color: var(--clr-muted); }
.review-card--featured .review-card__pet { color: rgba(255,255,255,0.55); }

/* ── CTA BAND ── */
.cta-band {
  padding: 6rem 2rem;
  background: var(--clr-forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__label { color: var(--clr-sage-lt); opacity: 0.8; }
.cta-band .section-title { color: white; margin: 0.5rem 0 1rem; }
.cta-band p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact {
  padding: 7rem 0;
  background: var(--clr-sand);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--clr-forest);
  margin-bottom: 0.5rem;
}
.contact__sub {
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.contact__detail-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--clr-sage-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-sage);
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail-label {
  font-size: 0.75rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact__detail-val {
  font-size: 0.95rem;
  color: var(--clr-forest);
  font-weight: 400;
}
.contact__detail-val a { text-decoration: none; color: inherit; }
.contact__detail-val a:hover { color: var(--clr-sage); }
.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.contact__social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  color: var(--clr-ink);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  transition: all 0.2s;
}
.contact__social-btn:hover {
  border-color: var(--clr-forest);
  background: var(--clr-sage-xs);
}
.contact__social-btn svg { width: 16px; height: 16px; }
.contact__vcf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--clr-sage);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-sage-lt);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.contact__vcf:hover { color: var(--clr-forest); }

.contact__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.contact__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.contact__img-wrap:hover img { transform: scale(1.03); }

/* ── MAP ── */
.map-section { position: relative; }
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}
.map-section__nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.map-section__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e8;
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s;
}
.map-section__nav a:hover { background: var(--clr-forest); color: white; }

/* ── FOOTER ── */
.footer {
  background: var(--clr-ink);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 0.8rem; }
.footer__brand-desc { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer__col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul a {
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: gray; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.8rem; }
.footer__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.footer__lang select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--ff-body);
  appearance: none;
}
.footer__lang select option {
  background: rgb(50 50 50);   /* fundo escuro consistente */
  color: #ffffff;        /* texto legível */
}

/* ── TERMS PAGE ── */
.terms-hero {
  background: var(--clr-forest);
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  text-align: center;
}
.terms-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
}
.terms-hero p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.terms-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.terms-body h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--clr-forest);
  margin: 2.5rem 0 0.8rem;
  font-weight: 400;
}
.terms-body h3 {
  font-size: 1.05rem;
  color: var(--clr-forest);
  font-weight: 500;
  margin: 1.8rem 0 0.5rem;
}
.terms-body p, .terms-body li {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.terms-body ul { padding-left: 1.4rem; margin-top: 0.5rem; }
.terms-body li { margin-bottom: 0.4rem; }
.terms-body a { color: var(--clr-sage); }
.terms-muted { font-size: 0.82rem; font-style: italic; color: var(--clr-muted); margin-top: 2rem; }

/* ── 404 ── */
.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--clr-warm);
}
.notfound__num {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--clr-sage-lt);
  line-height: 1;
}
.notfound h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--clr-forest); margin: 1rem 0 0.5rem; font-weight: 400; }
.notfound p { color: #e6e6e6; margin-bottom: 2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .how__steps     { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; flex-direction: column; }

  .hero__card { display: none; }
  .hero__stats { gap: 1.5rem; }

  .about__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about__text    { padding-left: 0; }
  .about__img-badge { right: 0.5rem; bottom: -1rem; }

  .services__grid { grid-template-columns: 1fr; }
  .services__head { flex-direction: column; align-items: flex-start; }

  .reviews__grid  { grid-template-columns: 1fr; }

  .contact__grid  { grid-template-columns: 1fr; }
  .contact__img-wrap { aspect-ratio: 16/9; }

  .footer__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .how__steps     { grid-template-columns: 1fr; }

  .gallery__item  { width: 260px; }
  .gallery__item img { height: 300px; }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .trust-bar__inner { gap: 1.5rem; }
  .trust-item:nth-child(n+4) { display: none; }

  .cta-band { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .hero__eyebrow { font-size: 0.7rem; }
}

/* ── 404 (VERSÃO FINAL CORRIGIDA) ── */

.page-404 {
  min-height: 100vh;
}

/* HERO CONTAINER */
.notfound-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* BACKGROUND IMAGE */
.notfound-hero__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  transform: scale(1.02);
}

/* OVERLAY (NEUTRO PREMIUM) */
.notfound-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,20,20,0.72) 0%,
    rgba(20,20,20,0.45) 50%,
    rgba(20,20,20,0.22) 100%
  );
  z-index: 1;
}

/* CONTENT WRAPPER (REMOVE CONFLITO ANTIGO) */
.page-404 .notfound {
  width: 100%;
  padding: 5rem 1.25rem;
  display: flex;
  justify-content: center;

  background: transparent !important; /* 🔥 CRÍTICO */
  min-height: auto !important;

  position: relative;
  z-index: 2;
  align-items: center;
}

/* INNER */
.notfound__inner {
  max-width: 760px;
  text-align: center;
  color: #fff;
}

/* EMOJI */
.notfound__emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  animation: wag 1s ease-in-out infinite;
  transform-origin: center;
}

/* 404 NUMBER */
.notfound__num {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

/* TITLE */
.notfound__title {
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* TEXT */
.notfound__text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,);
  text-shadow: 0 3px 10px rgba(0,0,0,0.22);
}

/* ACTIONS */
.notfound__actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* WHATSAPP BUTTON (mantém coerência com o resto) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background: #20b858;
  border-color: #20b858;
  color: #fff;
}

/* ANIMAÇÃO */
@keyframes wag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

/* MOBILE */
@media (max-width: 768px) {

  .notfound-hero {
    min-height: auto;
  }

  .page-404 .notfound {
    padding: 4rem 1rem;
  }

  .notfound__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .notfound__actions .btn,
  .notfound__actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .notfound-hero__overlay {
    background: linear-gradient(
      135deg,
      rgba(20,20,20,0.82) 0%,
      rgba(20,20,20,0.55) 50%,
      rgba(20,20,20,0.3) 100%
    );
  }
}
