/* ============================================================
   BLUMA DOG CARE — Design System
   ============================================================ */

/* ── Google Fonts are loaded per-page via <link> ── */

/* ── CSS Tokens ── */
:root {
  /* Cores principais */
  --verde:        #8AA17D;
  --verde-escuro: #6E8769;
  --verde-bg:     #33413A;
  --verde-footer: #2B3630;
  --dourado:      #C9A15A;
  --dourado-esc:  #BB8F45;
  --dourado-alt:  #B98D42;

  /* Fundos */
  --bg-creme:     #F5EFE3;
  --bg-card:      #FBF8F1;
  --bg-card-alt:  #F0EAD8;
  --bg-pattern:   #EADFCB;

  /* Texto */
  --text-dark:    #33413A;
  --text-mid:     #55605A;
  --text-light:   #9AA394;

  /* Bordas */
  --border:       rgba(51,65,58,0.10);
  --border-light: rgba(51,65,58,0.07);

  /* Tipografia */
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Mulish', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* Espaçamentos */
  --max-w:        1220px;
  --nav-h:        72px;

  /* Sombras */
  --shadow-card:  0 8px 32px -8px rgba(51,65,58,0.15);
  --shadow-hover: 0 24px 48px -18px rgba(51,65,58,0.32);
  --shadow-btn:   0 12px 26px -10px rgba(201,161,90,0.70);

  /* Transições */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       0.16s;
  --t-mid:        0.24s;
  --t-slow:       0.38s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; }
::selection { background: var(--dourado); color: #fff; }

/* ── Keyframes ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes paw-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.08; }
  50%       { transform: translateY(-20px) rotate(5deg); opacity: 0.14; }
}
@keyframes count-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes progress-in {
  from { width: 0; }
}
@keyframes dot-blink {
  0%, 80%, 100% { transform: scale(0); opacity: 0; }
  40%            { transform: scale(1); opacity: 1; }
}

/* ── Utilitários de animação ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

.hero-anim { animation: rise 0.9s var(--ease) both; }
.hero-anim-2 { animation: rise 0.9s 0.12s var(--ease) both; }
.hero-anim-3 { animation: rise 0.9s 0.24s var(--ease) both; }
.hero-anim-4 { animation: rise 0.9s 0.36s var(--ease) both; }
.hero-anim-5 { animation: rise 0.9s 0.48s var(--ease) both; }
.fade-in { animation: fadeIn 0.6s ease both; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
}
.section { padding-block: 94px; }
.section-sm { padding-block: 60px; }
.section-bg { background: var(--bg-card); }
.section-green { background: #E9EDE2; }

/* ── Tipografia ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--verde);
}
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
}
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -0.01em; }
.heading-xl {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.heading-lg {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}
.heading-md {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
}
.heading-sm {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
}
.body-lg { font-size: 18px; line-height: 1.65; color: var(--text-mid); }
.body-md { font-size: 15px; line-height: 1.65; color: var(--text-mid); }
.text-serif { font-family: var(--font-serif); }
.text-mono { font-family: var(--font-mono); }
em { font-style: italic; color: var(--verde); }

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 27px;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  transition: transform var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dourado);
  color: #2E2A20;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--dourado-esc);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(201,161,90,0.82);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(51,65,58,0.18);
  color: var(--text-dark);
}
.btn-outline:hover {
  border-color: var(--verde);
  background: rgba(138,161,125,0.12);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.48);
  color: #fff;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 12px;
}
.btn-nav {
  padding: 11px 21px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 10px 22px -10px rgba(201,161,90,0.75);
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,227,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-mid) ease, box-shadow var(--t-mid) ease;
}
.site-header.scrolled {
  background: rgba(245,239,227,0.98);
  box-shadow: 0 4px 24px -10px rgba(51,65,58,0.14);
}
.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text-dark);
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 18px -8px rgba(138,161,125,0.9);
  transition: transform var(--t-fast) ease;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.06); }
.logo-text {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}
.logo-text strong { font-weight: 700; }
.logo-text span { color: var(--verde); font-weight: 500; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  transition: color var(--t-fast) ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width var(--t-mid) var(--ease);
}
.nav-link:hover { color: var(--text-dark); }
.nav-link:hover::after { width: 100%; }
.nav-link.active {
  color: var(--text-dark);
  font-weight: 700;
}
.nav-link.active::after { width: 100%; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245,239,227,0.98);
  backdrop-filter: blur(20px);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  transition: color var(--t-fast) ease;
}
.mobile-nav a:hover { color: var(--verde); }
.mobile-nav .btn { font-size: 16px; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 30px 26px;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}
.card-icon-green {
  background: rgba(138,161,125,0.15);
  color: var(--verde-escuro);
}
.card-icon-gold {
  background: rgba(201,161,90,0.16);
  color: var(--dourado-alt);
}

/* Serviço cards */
.service-card {
  background: var(--bg-creme);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px -24px rgba(51,65,58,0.34);
}
.service-card.featured {
  border-color: rgba(138,161,125,0.5);
  border-width: 1.5px;
}
.service-card-img {
  min-height: 200px;
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    #E4D9C2 0, #E4D9C2 13px,
    #DCCFB4 13px, #DCCFB4 26px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: var(--verde);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Testemunho cards */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  break-inside: avoid;
  margin-bottom: 24px;
}
.testimonial-card.dark {
  background: var(--verde-bg);
  border-color: transparent;
}
.stars { display: flex; gap: 3px; color: var(--dourado); font-size: 16px; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-dark);
}
.testimonial-card.dark .testimonial-quote { color: #fff; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg, #E4D9C2 0, #E4D9C2 6px, #DCCFB4 6px, #DCCFB4 12px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A8A68;
  font-size: 20px;
}
.testimonial-card.dark .author-avatar {
  background: rgba(255,255,255,0.10);
  color: var(--dourado);
}
.author-name { font-weight: 800; font-size: 14px; }
.author-desc { font-size: 12.5px; color: var(--text-mid); }
.testimonial-card.dark .author-name { color: #fff; }
.testimonial-card.dark .author-desc { color: rgba(255,255,255,0.65); }

/* ── Formulários ── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid rgba(51,65,58,0.14);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(138,161,125,0.18);
}
.form-input::placeholder, .form-textarea::placeholder { color: #9AA394; }
.form-textarea { resize: vertical; }

/* ── Secção CTA ── */
.cta-section {
  background: var(--verde-bg);
  border-radius: 32px;
  padding: 76px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0.18;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--dourado);
  opacity: 0.16;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }

/* ── Footer ── */
.site-footer {
  background: var(--verde-footer);
  color: rgba(255,255,255,0.72);
  padding: 64px 32px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo-icon {
  width: 40px; height: 40px;
  border-radius: 13px;
  background: var(--verde);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}
.footer-desc { font-size: 14px; line-height: 1.65; max-width: 300px; }
.footer-socials { display: flex; gap: 11px; margin-top: 22px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  text-decoration: none;
  transition: background var(--t-mid) ease, transform var(--t-fast) ease;
}
.social-btn:hover { background: var(--verde); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li, .footer-col span { font-size: 14px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.72); transition: color var(--t-fast) ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.72); transition: color var(--t-fast) ease; }
.footer-links a:hover { color: #fff; }

/* ── WhatsApp Flutuante ── */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 32px -8px rgba(37,211,102,0.65);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) ease;
  animation: floaty 5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 40px -10px rgba(37,211,102,0.78);
  animation: none;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

/* ── Hero ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 76px 32px 100px;
  max-width: var(--max-w);
  margin-inline: auto;
}
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  background: repeating-linear-gradient(
    135deg, #EADFCB 0, #EADFCB 14px, #E2D5BC 14px, #E2D5BC 28px
  );
  box-shadow: 0 34px 64px -26px rgba(51,65,58,0.40);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-blob-1 {
  position: absolute;
  top: -30px; right: -26px;
  width: 210px; height: 210px;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0.16;
  z-index: 1;
}
.hero-blob-2 {
  position: absolute;
  bottom: -28px; left: -22px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--dourado);
  opacity: 0.16;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(251,248,241,0.96);
  backdrop-filter: blur(8px);
  padding: 13px 17px;
  border-radius: 16px;
  box-shadow: 0 18px 36px -16px rgba(51,65,58,0.45);
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(138,161,125,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-escuro);
  font-size: 23px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 38px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}

/* Stats / Contador */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px 16px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-dark);
}
.stat-value .accent { color: var(--dourado); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-mid); margin-top: 4px; }

/* ── How it works timeline ── */
.timeline {
  max-width: 920px;
  margin-inline: auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 33px; top: 14px; bottom: 14px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg, rgba(138,161,125,0.4) 0 10px, transparent 10px 20px
  );
}
.timeline-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  margin-bottom: 44px;
}
.timeline-step:last-child { margin-bottom: 0; }
.step-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 12px 26px -14px rgba(51,65,58,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  font-size: 30px;
  position: relative;
  z-index: 2;
}
.step-icon.final {
  background: var(--verde);
  color: #fff;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 26px 28px;
}
.step-card.final {
  background: var(--verde-bg);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--dourado);
  margin-bottom: 8px;
  display: block;
}

/* ── Galeria ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: repeating-linear-gradient(
    135deg, #E0D3B8 0, #E0D3B8 14px, #D6C7A8 14px, #D6C7A8 28px
  );
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51,65,58,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid) ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-label {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(51,65,58,0.72);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
}
.gallery-item.span2 { grid-column: span 2; }
.gallery-item.span2-row { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,26,22,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  cursor: default;
  animation: rise 0.3s var(--ease) both;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }

/* ── Avaliação (Wizard) ── */
.wizard-progress {
  display: flex;
  align-items: center;
  gap: 6px;
}
.progress-bar {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(51,65,58,0.10);
  overflow: hidden;
  transition: background var(--t-mid) ease;
}
.progress-bar.done { background: var(--verde); }
.progress-bar.active { background: rgba(51,65,58,0.10); }
.progress-bar.active .progress-fill {
  height: 100%;
  background: var(--dourado);
  border-radius: 999px;
  animation: progress-in 0.6s var(--ease) both;
}
.wizard-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.wizard-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--t-fast) ease;
}
.wizard-label.active { color: var(--dourado); }
.wizard-label.done  { color: var(--verde); }

.wizard-step { display: none; animation: rise 0.45s var(--ease) both; }
.wizard-step.active { display: block; }

.option-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease);
  font-family: var(--font-sans);
}
.option-btn:hover {
  border-color: var(--verde);
  background: rgba(138,161,125,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(138,161,125,0.35);
}
.option-btn.selected {
  border-color: var(--verde);
  background: rgba(138,161,125,0.14);
  box-shadow: 0 0 0 3px rgba(138,161,125,0.22);
}
.option-btn.selected-gold {
  border-color: var(--dourado);
  background: rgba(201,161,90,0.10);
  box-shadow: 0 0 0 3px rgba(201,161,90,0.18);
}

/* ── Preços ── */
.price-table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 26px 22px;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(51,65,58,0.25);
}
.price-card.highlighted {
  background: var(--verde-bg);
  border-color: transparent;
  color: #fff;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
}
.price-amount sub { font-size: 15px; font-weight: 600; vertical-align: super; }
.price-period { font-size: 13px; opacity: 0.7; }
.price-features { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 9px; }
.price-features li i { color: var(--verde); margin-top: 1px; }
.price-card.highlighted .price-features li i { color: var(--dourado); }

/* ── Contacto ── */
.contact-grid {
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  box-shadow: 0 40px 80px -34px rgba(51,65,58,0.4);
}
.contact-left {
  background: var(--verde-bg);
  color: #fff;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.contact-left::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0.22;
}
.contact-info-items { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.contact-info-item { display: flex; align-items: center; gap: 13px; }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado);
  font-size: 21px;
  flex-shrink: 0;
}
.contact-right { background: var(--bg-card); padding: 48px 44px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  gap: 16px;
}
.form-success.visible { display: flex; animation: rise 0.5s var(--ease) both; }
.form-success-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(138,161,125,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-escuro);
  font-size: 40px;
}

/* ── FAQ / Accordion ── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow var(--t-mid) ease;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(138,161,125,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-escuro);
  font-size: 17px;
  flex-shrink: 0;
  transition: transform var(--t-mid) var(--ease), background var(--t-mid) ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--verde);
  color: #fff;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease), padding var(--t-mid) ease;
  padding: 0 24px;
}
.faq-item.open .faq-body {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-body p { font-size: 14.5px; line-height: 1.65; color: var(--text-mid); }

/* ── Política / Termos ── */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--text-dark);
}
.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--verde); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-table { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 32px; }
  .contact-right { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 64px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .cta-section { padding: 52px 32px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .gallery-item.span2-row { grid-column: span 2; grid-row: span 1; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; max-width: 300px; margin-inline: auto; }
  .timeline::before { left: 28px; }
  .timeline-step { grid-template-columns: 56px 1fr; gap: 18px; }
  .step-icon { width: 56px; height: 56px; font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-table { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px; }
  h1.heading-xl { font-size: 34px; }
  .hero-image-wrap { min-height: 320px; }
  .contact-grid { border-radius: 20px; }
  .header-inner { padding: 12px 20px; }
}

@media (max-width: 480px) {
  .btn { padding: 13px 20px; font-size: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-item.span2 { grid-column: span 2; }
}

/* ── Paw decorativas ── */
.paw-deco {
  position: absolute;
  font-size: 60px;
  color: var(--verde);
  pointer-events: none;
  animation: paw-float 8s ease-in-out infinite;
}

/* ── Loading dots ── */
.dot-loader {
  display: flex;
  gap: 5px;
  align-items: center;
}
.dot-loader span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dourado);
  animation: dot-blink 1.2s infinite ease-in-out;
}
.dot-loader span:nth-child(2) { animation-delay: 0.2s; }
.dot-loader span:nth-child(3) { animation-delay: 0.4s; }

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: floaty 2.5s ease-in-out infinite;
  z-index: 5;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-mid), transparent);
}

/* ── Utilitário: ocultar ── */
.hidden { display: none !important; }
