/* ====== Design tokens ====== */
:root {
  --wine: #6b1f3a;
  --wine-deep: #5a1a30;
  --wine-dark: #3d0f20;
  --cream: #f2e8e3;
  --cream-light: #f7efeb;
  --cream-alt: #ede0da;
  --card: #fdfaf8;
  --text: #3a2a2e;
  --text-muted: #6b5a5e;
  --shadow-sm: 0 2px 8px rgba(107, 31, 58, 0.06);
  --shadow-md: 0 8px 28px rgba(107, 31, 58, 0.08);
  --shadow-lg: 0 14px 44px rgba(107, 31, 58, 0.12);
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid var(--wine);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 8px 22px rgba(107, 31, 58, 0.25);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(107, 31, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: #fff;
  transform: translateY(-2px);
}

.btn .icon-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-outline .icon-circle { background: var(--wine); color: #fff; }
.btn-outline:hover .icon-circle { background: #fff; color: var(--wine); }

/* ====== Header ====== */
.site-header {
  background: var(--wine);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1;
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  padding: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-text {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text strong { font-weight: 700; }
.brand-text .brand-sep { opacity: 0.55; margin: 0 6px; }
.brand-text .brand-sub {
  font-weight: 400;
  font-size: 0.92em;
  opacity: 0.92;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: opacity .2s;
}
.nav-desktop a:hover { opacity: 0.8; }
.nav-desktop a.nav-cta {
  background: var(--cream);
  color: var(--wine);
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-desktop a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background .2s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle svg { width: 26px; height: 26px; display: block; }

.nav-mobile {
  display: none;
  background: var(--wine-deep);
  padding: 8px 0 22px;
  animation: slideDown .25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background .15s;
}
.nav-mobile a:hover, .nav-mobile a:active {
  background: rgba(255,255,255,0.06);
}
.nav-mobile a.nav-cta {
  margin: 18px 24px 0;
  background: var(--cream);
  color: var(--wine);
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 700;
  border-top: 0;
  padding: 14px 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

/* ====== Section commons ====== */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  color: var(--wine);
  margin: 0 0 10px;
  line-height: 1.05;
  font-weight: 400;
}
.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 auto 26px;
  max-width: 560px;
}
.section-head .rule {
  width: 80px;
  height: 3px;
  background: var(--wine);
  border-radius: 2px;
  margin: 0 auto;
}

/* ====== Hero ====== */
.hero {
  background: var(--cream);
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 64px);
  color: var(--wine);
  line-height: 1.05;
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.hero h1 .paw {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.55;
}
.hero-lead {
  font-size: 17px;
  color: var(--text);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ====== Serviços ====== */
.servicos {
  background: var(--cream);
  padding-top: 40px;
}
.servicos-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.servico-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.servico-icon { display: grid; place-items: center; }
.servico-icon svg, .servico-icon img { width: 90px; height: 90px; object-fit: contain; }
.servico-card h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  line-height: 1.25;
}
.servico-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
}
.servicos-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ====== Sobre ====== */
.sobre { background: var(--cream-light); }
.sobre .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-kicker { color: var(--text-muted); font-size: 15px; margin: 0 0 4px; }
.sobre h2 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 76px);
  color: var(--wine);
  margin: 0 0 18px;
  line-height: 1;
  font-weight: 400;
}
.sobre .rule { width: 90px; height: 3px; background: var(--wine); border-radius: 2px; margin-bottom: 32px; }
.sobre p { color: var(--text); font-size: 16px; line-height: 1.75; margin: 0 0 18px; max-width: 520px; }
.sobre-stats { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }
.stat-card {
  background: var(--card);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  flex: 1 1 220px;
  min-width: 0;
}
.stat-card .stat-emoji { font-size: 38px; line-height: 1; flex-shrink: 0; }
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--wine);
  line-height: 1;
  font-weight: 400;
}
.stat-card .stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.3; max-width: 160px; }
.stat-card .stat-label-wide { font-size: 14px; max-width: none; flex: 1; min-width: 0; }

.sobre-portrait { position: relative; }
.sobre-portrait-frame {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
}
.sobre-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.crmv-badge {
  position: absolute;
  right: 8px;
  bottom: 24px;
  background: var(--card);
  padding: 14px 22px 14px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.crmv-badge .cap {
  width: 44px; height: 44px;
  background: var(--wine-dark);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.crmv-badge .cap svg { width: 24px; height: 24px; }
.crmv-badge .crmv-num {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--wine);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.crmv-badge .crmv-num small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: normal;
}

/* ====== Depoimentos ====== */
.depoimentos { background: var(--wine); color: #fff; position: relative; }
.depoimentos .section-head h2 { color: #fff; }
.depoimentos .section-head .rule { background: #fff; }
.depoimentos .section-head p { color: rgba(255,255,255,0.75); }

.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.depo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s ease, background .3s ease;
}
.depo-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.depo-quote-icon {
  font-family: var(--font-display);
  font-size: 70px;
  color: rgba(255,255,255,0.2);
  line-height: 0.5;
  height: 30px;
}
.depo-text { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.92); font-style: italic; margin: 0; flex: 1; }
.depo-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.depo-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  flex-shrink: 0;
}
.depo-name { font-weight: 600; font-size: 15px; color: #fff; line-height: 1.2; }
.depo-pet { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

.depo-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.depo-google-icon { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.9; }
.depo-stars { font-size: 15px; color: #FBBC05; letter-spacing: 1px; margin-top: -8px; }

.google-badge-wrap { display: flex; justify-content: center; margin-bottom: 40px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  margin-bottom: 0;
  text-decoration: none;
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.google-badge:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.google-logo { width: 28px; height: 28px; flex-shrink: 0; }
.google-badge-info { display: flex; flex-direction: column; gap: 2px; }
.google-badge-stars { display: flex; align-items: center; gap: 6px; font-size: 15px; color: #FBBC05; letter-spacing: 1px; }
.google-badge-score { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0; }
.google-badge-label { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.google-badge-arrow { width: 18px; height: 18px; color: rgba(255,255,255,0.5); margin-left: 4px; }

/* ====== Contato ====== */
.contato {
  background: var(--cream);
  text-align: center;
  padding-bottom: 80px;
}
.contato-cards {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.contato-icon { width: 48px; height: 48px; display: grid; place-items: center; flex-shrink: 0; }
.contato-icon svg, .contato-icon img { width: 100%; height: 100%; object-fit: contain; }
.contato-card .contato-label { font-size: 14px; color: var(--text-muted); line-height: 1.2; }
.contato-card .contato-value {
  font-weight: 700;
  color: var(--wine);
  font-size: 17px;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  margin-top: 4px;
}
a.contato-value:hover { text-decoration: underline; }

.contato-ctas {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-dark { background: var(--wine-dark); border-color: var(--wine-dark); color: #fff; }
.btn-dark .icon-circle { background: #fff; color: var(--wine-dark); }
.btn-dark:hover { background: #2a0915; border-color: #2a0915; transform: translateY(-2px); }

/* ====== Como Funciona ====== */
.como-funciona { background: var(--wine); color: #fff; }
.como-funciona .section-head h2 { color: #fff; }
.como-funciona .section-head p { color: rgba(255,255,255,0.75); }
.como-funciona .section-head .rule { background: rgba(255,255,255,0.5); }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 28px;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step p { font-size: 15px; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.65; }
.step-arrow { font-size: 28px; color: rgba(255,255,255,0.3); }

/* ====== FAQ ====== */
.faq { background: var(--cream-light); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 16px;
  color: var(--wine);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream-alt); }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 28px 22px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ====== Footer ====== */
.site-footer {
  background: var(--wine);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
  text-align: center;
}
.footer-mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  padding: 8px;
  overflow: hidden;
}
.footer-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.site-footer p { margin: 0; font-size: 14px; letter-spacing: 0.02em; line-height: 1.6; }

/* ====== Reveal animations ====== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ====== Floating WhatsApp ====== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg, .wa-float img { width: 32px; height: 32px; }

/* ====== Tweaks panel ====== */
.tweaks-panel {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  padding: 20px 22px;
  z-index: 95;
  font-family: var(--font-sans);
}
.tweaks-panel h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--wine);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-panel h4 button {
  background: transparent; border: 0;
  cursor: pointer; color: var(--text-muted);
  font-size: 18px; line-height: 1;
}
.tweaks-panel small { color: var(--text-muted); font-size: 12px; display: block; margin-bottom: 14px; }
.tweaks-panel label {
  display: block; font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.font-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.font-options button {
  padding: 10px 8px;
  border: 2px solid #eee;
  background: #fafafa;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: var(--wine);
  transition: all .15s;
}
.font-options button.active { border-color: var(--wine); background: #fff; }
.font-options button:hover { border-color: var(--wine); }

/* ===================================================
   ======== RESPONSIVE — MOBILE-FIRST REFINEMENTS =====
   =================================================== */

/* Tablets — adjust columns */
@media (max-width: 1024px) {
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .sobre .container { gap: 56px; }
  section { padding: 90px 0; }
}

/* Mobile breakpoint */
@media (max-width: 820px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(38px, 8vw, 54px); }

  /* --- Header --- */
  .site-header .container { padding: 12px 0; gap: 12px; }
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .brand-mark { width: 44px; height: 44px; padding: 5px; }
  .brand-text {
    font-size: 13.5px;
    white-space: normal;
    line-height: 1.25;
    max-width: calc(100% - 12px);
  }
  .brand-text .brand-sep { display: none; }
  .brand-text .brand-sub { display: block; font-size: 11.5px; opacity: 0.85; margin-top: 1px; }

  /* --- Hero --- */
  .hero { padding: 44px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .hero-copy { text-align: center; }
  .hero-photo {
    max-width: 260px;
    order: -1;
    box-shadow: 0 18px 40px rgba(107, 31, 58, 0.2);
    margin-inline: auto;   
  }
  .hero-lead { margin-inline: auto; }
  .hero h1 {
    font-size: clamp(32px, 7.8vw, 44px);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero h1 .paw svg { width: 28px; height: 28px; }
  .hero-lead { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { align-items: stretch; width: 100%; }
  .hero-ctas .btn { width: 100%; padding: 16px 20px; font-size: 13px; }

  /* --- Serviços --- */
  .servico-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
    gap: 18px;
    border-radius: 24px;
  }
  .servico-icon svg, .servico-icon img { width: 68px; height: 68px; }
  .servico-card h3 { font-size: 17px; }
  .servico-card p { font-size: 15px; }
  .servicos-cta { margin-top: 36px; }
  .servicos-cta .btn { width: 100%; max-width: 360px; padding: 16px 20px; font-size: 13px; }

  /* --- Sobre --- */
  .sobre .container {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: left;
  }
  .sobre-copy { max-width: 560px; margin: 0 auto; width: 100%; }
  .sobre-kicker { font-size: 14px; }
  .sobre p { font-size: 15.5px; max-width: none; }
  .sobre-stats { gap: 12px; margin-top: 28px; }
  .stat-card { padding: 14px 14px; gap: 10px; flex: 1 1 calc(50% - 6px); border-radius: 20px; }
  .stat-card .stat-emoji { font-size: 30px; }
  .stat-card .stat-emoji svg, .stat-card .stat-emoji img { width: 42px; height: 42px; }
  .stat-card .stat-num { font-size: 26px; }
  .stat-card .stat-label { font-size: 12px; max-width: 120px; }
  .stat-card .stat-label-wide { font-size: 12.5px; line-height: 1.35; }
  .sobre-portrait { order: -1; }
  .sobre-portrait-frame { max-width: 320px; }
  .crmv-badge {
    right: 0;
    bottom: 16px;
    padding: 10px 18px 10px 10px;
  }
  .crmv-badge .cap { width: 38px; height: 38px; }
  .crmv-badge .cap svg { width: 20px; height: 20px; }
  .crmv-badge .crmv-num { font-size: 13px; }
  .crmv-badge .crmv-num small { font-size: 12px; }

  /* --- Depoimentos --- */
  .depo-grid { grid-template-columns: 1fr; gap: 20px; }
  .depo-card { padding: 26px 24px; gap: 16px; }
  .depo-text { font-size: 15px; }

  /* --- Contato --- */
  .contato { padding-bottom: 64px; }
  .contato-cards {
    gap: 22px;
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .contato-card {
    background: var(--card);
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
  }
  .contato-icon { width: 40px; height: 40px; }
  .contato-card .contato-value { font-size: 16px; }
  .contato-ctas { gap: 14px; flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .contato-ctas .btn { width: 100%; padding: 16px 20px; font-size: 13px; }

  /* --- Como Funciona --- */
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-arrow { display: none; }
  .step { padding: 28px 22px; }

  /* --- FAQ --- */
  .faq-item summary { font-size: 15px; padding: 18px 20px; }
  .faq-item p { padding: 0 20px 18px; font-size: 14.5px; }

  /* --- Footer --- */
  .site-footer { padding: 48px 0 28px; }
  .footer-mark { width: 78px; height: 78px; margin-bottom: 18px; padding: 10px; }
  .site-footer p { font-size: 13px; }

  /* --- Floating WA — don't cover CTAs — smaller & offset --- */
  .wa-float {
    width: 54px; height: 54px;
    bottom: 18px; right: 18px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  }
  .wa-float svg, .wa-float img { width: 28px; height: 28px; }
}

/* Tight phones */
@media (max-width: 520px) {
  .container { width: calc(100% - 32px); }
  section { padding: 60px 0; }
  .hero { padding: 36px 0 56px; }
  .hero h1 { font-size: clamp(28px, 8.4vw, 36px); }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(34px, 9vw, 46px); }
  .section-head p { font-size: 15px; }
  .servico-card { padding: 26px 20px; border-radius: 22px; }
  .servico-icon svg, .servico-icon img { width: 60px; height: 60px; }
  .sobre h2 { font-size: clamp(40px, 11vw, 54px); }
  .sobre-portrait-frame { max-width: 280px; }
  .sobre-stats { gap: 10px; }
  .stat-card { flex: 1 1 100%; padding: 16px 20px; gap: 14px; }
  .stat-card .stat-emoji svg, .stat-card .stat-emoji img { width: 44px; height: 44px; }
  .stat-card .stat-num { font-size: 28px; }
  .stat-card .stat-label { font-size: 13px; max-width: none; }
  .stat-card .stat-label-wide { font-size: 14px; }
  .btn { padding: 15px 20px; font-size: 12.5px; letter-spacing: 0.05em; gap: 10px; }
  .btn .icon-circle { width: 24px; height: 24px; }
  .btn .btn-icon { width: 16px; height: 16px; }
  .tweaks-panel { right: 16px; bottom: 88px; width: calc(100vw - 32px); max-width: 300px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .container { width: calc(100% - 28px); }
  .brand-text { font-size: 12.5px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-photo { max-width: 80vw; }
  .servico-card { padding: 22px 18px; }
  .stat-card { flex: 1 1 100%; }
}
