:root {
  --orange:       #F5A623;
  --orange-dark:  #C8850D;
  --orange-light: #FFF4DC;
  --charcoal:     #1C1410;
  --brown:        #3D2914;
  --brown-mid:    #6B4C2A;
  --warm-white:   #FDFAF5;
  --off-white:    #F5F0E8;
  --border:       rgba(61,41,20,.10);
  --font-body:    'Lato', sans-serif;
  --font-head:    'Merriweather', Georgia, serif;
  --radius:       16px;
  --radius-sm:    8px;
  --shadow:       0 2px 20px rgba(28,20,16,.08);
  --shadow-lg:    0 8px 48px rgba(28,20,16,.16);
  --base-size:    18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--base-size);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--orange); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900; line-height: 1.2;
  color: var(--charcoal); text-wrap: pretty;
}
.section-sub {
  font-size: 18px; font-weight: 400;
  color: var(--brown-mid); margin-top: 16px; line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 17px;
  padding: 17px 34px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .18s, box-shadow .18s;
  min-height: 52px;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.6);
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,.15); cursor: pointer;
  transition: border-color .18s, color .18s;
  min-height: 52px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,245,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
  transition: box-shadow .2s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(28,20,16,.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900;
  color: var(--charcoal); letter-spacing: -.3px;
}
.nav-logo-text span { color: var(--orange-dark); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-size: 15px; font-weight: 700; color: var(--brown-mid);
  display: flex; align-items: center; gap: 6px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 100px;
  box-shadow: 0 2px 12px rgba(37,211,102,.3);
  transition: transform .15s;
  min-height: 48px;
}
.nav-cta:hover { transform: scale(1.04); }

/* ── HERO ── */
#hero {
  padding-top: 80px;
  background: var(--charcoal);
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
}
.hero-accent {
  position: absolute; right: -100px; top: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 28px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 22px; text-wrap: pretty;
}
.hero-title em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px); font-weight: 400;
  color: rgba(255,255,255,.6); margin-bottom: 40px;
  line-height: 1.75; max-width: 500px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(245,166,35,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-trust-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); line-height: 1.4; }
.hero-trust-text strong { display: block; color: rgba(255,255,255,.85); font-weight: 700; font-size: 15px; }

/* Hero image grid */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 580px;
  width: 580px;
}
.hero-photo-main {
  grid-row: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-sm {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ── SOCIAL PROOF ── */
#proof-bar { background: var(--orange); padding: 0; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(28,20,16,.12);
}
.proof-item:last-child { border-right: none; }
.proof-number {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 900;
  color: var(--charcoal); line-height: 1; margin-bottom: 8px;
}
.proof-label {
  font-size: 13px; font-weight: 700;
  color: rgba(28,20,16,.6); text-transform: uppercase; letter-spacing: 1px;
}

/* ── SERVICES ── */
#servicos { background: var(--warm-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card.featured { background: var(--charcoal); border-color: transparent; }
.service-img {
  width: 100%; height: 260px;
  overflow: hidden; position: relative;
}
.service-card { cursor: pointer; }
.service-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body {
  padding: 28px;
  display: flex; flex-direction: column; flex: 1;
}
.service-name {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900;
  color: var(--charcoal); margin-bottom: 12px;
}
.service-card.featured .service-name { color: #fff; }
.service-desc {
  font-size: 15px; font-weight: 400;
  color: var(--brown-mid); line-height: 1.7;
  flex: 1;
}
.service-card.featured .service-desc { color: rgba(255,255,255,.55); }
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 14px; font-weight: 700; color: var(--orange-dark);
  background: var(--orange-light); border-radius: 100px;
  padding: 8px 18px; transition: background .18s, color .18s;
  cursor: pointer; text-decoration: none;
}
.service-badge:hover { background: var(--orange); color: var(--charcoal); }
.service-card.featured .service-badge { background: rgba(245,166,35,.15); color: var(--orange); }
.service-card.featured .service-badge:hover { background: var(--orange); color: var(--charcoal); }
.service-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange-dark);
  background: var(--orange-light); padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.service-card.featured .service-tag { background: rgba(245,166,35,.15); color: var(--orange); }

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--off-white); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-top: 56px;
}
.diff-visual { position: relative; }
.diff-img-main {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.diff-img-main img { width: 100%; height: 100%; object-fit: cover; }
.diff-stat {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--charcoal);
  padding: 20px 26px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); text-align: center;
}
.diff-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 32px; font-weight: 900; line-height: 1;
}
.diff-stat span { font-size: 13px; font-weight: 700; opacity: .7; }

.diff-list { display: flex; flex-direction: column; gap: 28px; }
.diff-item { display: flex; gap: 18px; align-items: flex-start; }
.diff-check {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.diff-check svg { width: 20px; height: 20px; color: var(--orange-dark); }
.diff-text h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px;
}
.diff-text p { font-size: 15px; font-weight: 400; color: var(--brown-mid); line-height: 1.7; }

/* ── GALERIA ── */
#galeria { background: var(--charcoal); padding: 80px 0; }
.galeria-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 38px); font-weight: 900;
  color: #fff; margin-bottom: 8px;
}
.galeria-sub { font-size: 17px; color: rgba(255,255,255,.4); margin-bottom: 40px; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.galeria-item {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item.tall {
  grid-row: 1 / 3;
  aspect-ratio: 1 / 2.06;
}

/* Wrapper + setas escondidas no desktop por padrão */
.galeria-wrapper { position: relative; }
.gal-nav, .gal-dots { display: none; }

/* ── PRECOS ── */
#precos { background: var(--warm-white); }
.precos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.preco-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.preco-card.destaque {
  background: var(--charcoal); border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.preco-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.preco-porte {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brown-mid); margin-bottom: 8px;
}
.preco-card.destaque .preco-porte { color: rgba(255,255,255,.45); }
.preco-name {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900; color: var(--charcoal); margin-bottom: 24px;
}
.preco-card.destaque .preco-name { color: #fff; }
.preco-value {
  font-family: var(--font-head);
  font-size: 54px; font-weight: 900; color: var(--orange-dark);
  line-height: 1; margin-bottom: 4px;
}
.preco-card.destaque .preco-value { color: var(--orange); }
.preco-desde { font-size: 13px; font-weight: 400; color: var(--brown-mid); margin-bottom: 28px; }
.preco-card.destaque .preco-desde { color: rgba(255,255,255,.4); }
.preco-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.preco-card.destaque .preco-divider { background: rgba(255,255,255,.1); }
.preco-items {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 32px; flex: 1;
}
.preco-items li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 400; color: var(--brown-mid); line-height: 1.5;
}
.preco-card.destaque .preco-items li { color: rgba(255,255,255,.65); }
.preco-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.preco-check svg { width: 11px; height: 11px; color: var(--orange-dark); }
.preco-card.destaque .preco-check { background: rgba(245,166,35,.2); }
.preco-card.destaque .preco-check svg { color: var(--orange); }
.preco-nota {
  font-size: 12px; color: var(--brown-mid); font-style: italic;
  margin-top: -20px; margin-bottom: 24px; padding: 10px 14px;
  background: var(--off-white); border-radius: 8px; border-left: 3px solid var(--orange);
}
.preco-card.destaque .preco-nota {
  background: rgba(245,166,35,.08); border-left-color: var(--orange);
  color: rgba(255,255,255,.5);
}
.btn-wa-sm {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #25D366; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 15px 20px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 3px 14px rgba(37,211,102,.3);
  transition: transform .15s, box-shadow .15s;
  min-height: 48px;
}
.btn-wa-sm:hover { transform: translateY(-2px); }
.pagamento-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 36px; flex-wrap: wrap;
}
.pagamento-label { font-size: 14px; font-weight: 700; color: var(--brown-mid); }
.pagamento-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--off-white); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 700; color: var(--brown-mid);
}

/* ── ALÉM DO BANHO E TOSA ── */
#alem { background: var(--off-white); padding: 80px 0; }
.alem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.alem-card {
  text-align: center; padding: 32px 22px;
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.alem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.alem-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 30px;
  transition: background .2s;
}
.alem-card:hover .alem-icon { background: var(--orange); }
.alem-card h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 900;
  color: var(--charcoal); margin-bottom: 12px;
}
.alem-card p { font-size: 14px; color: var(--brown-mid); line-height: 1.7; }

/* Fotos dos cursos */
.cursos-fotos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 52px;
}
.curso-foto-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; min-height: 280px;
  box-shadow: var(--shadow-lg);
}
.curso-foto-item img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; object-position: center;
  transition: transform .4s;
}
.curso-foto-item:hover img { transform: scale(1.04); }
.curso-foto-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,20,16,.85) 0%, transparent 100%);
  padding: 28px 22px 22px;
}
.curso-foto-caption h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 900;
  color: #fff; margin-bottom: 5px;
}
.curso-foto-caption p { font-size: 13px; color: rgba(255,255,255,.7); }

/* ── TAXI DOG ── */
#taxidog { background: var(--charcoal); padding: 72px 0; }
.taxidog-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.taxidog-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.4); width: 100%;
}
.taxidog-img img { width: 100%; height: 420px; object-fit: cover; object-position: center; }

/* ── DEPOIMENTOS ── */
#depoimentos { background: var(--off-white); }
.depo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.depo-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.depo-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.depo-star { width: 18px; height: 18px; fill: var(--orange); }
.depo-text {
  font-size: 16px; font-weight: 400; color: var(--brown-mid);
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.depo-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.depo-author { display: flex; align-items: center; gap: 13px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-light); border: 2px solid var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; color: var(--orange-dark);
}
.depo-name { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.depo-pet  { font-size: 13px; font-weight: 400; color: var(--brown-mid); margin-top: 2px; }

/* ── COMO FUNCIONA ── */
#como-funciona { background: var(--warm-white); }
.steps-wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.steps-line {
  position: absolute; top: 24px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--charcoal); color: var(--orange);
  font-family: var(--font-head); font-size: 17px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
}
.step-desc { font-size: 15px; font-weight: 400; color: var(--brown-mid); line-height: 1.65; }

/* ── LOCALIZAÇÃO ── */
#localizacao { background: var(--charcoal); }
#localizacao .section-title { color: #fff; }
#localizacao .section-sub   { color: rgba(255,255,255,.4); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 56px; align-items: start;
}
.info-group { display: flex; flex-direction: column; gap: 32px; }
.info-item  { display: flex; gap: 18px; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 10px; background: rgba(245,166,35,.1);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.info-content h3 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 7px;
}
.info-content p, .info-content a {
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.7;
}
.info-content a:hover { color: var(--orange); }
.horario-table { width: 100%; }
.horario-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.horario-table tr:last-child { border: none; }
.horario-table td { padding: 10px 0; font-size: 15px; font-weight: 400; color: rgba(255,255,255,.6); }
.horario-table td:first-child { font-weight: 700; color: rgba(255,255,255,.85); }
.horario-table td:last-child  { text-align: right; }
.horario-table .fechado td   { color: rgba(255,255,255,.25); }
.map-wrap {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CTA FINAL ── */
#cta-final { background: var(--orange); padding: 112px 0; text-align: center; }
#cta-final .section-title { color: var(--charcoal); }
#cta-final .section-sub   { color: rgba(28,20,16,.6); margin-bottom: 40px; }

/* ── FOOTER ── */
footer { background: #0F0A06; padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700; color: rgba(255,255,255,.8);
}
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.3);
  transition: color .15s; min-height: 44px; display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.2); text-align: center; line-height: 1.8; }

/* ── FLOATING BUTTON ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: transform .2s; animation: wa-pulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  55%      { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}
.float-label {
  position: absolute; right: 74px;
  background: var(--charcoal); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 6px; white-space: nowrap;
  opacity: 0; transform: translateX(6px);
  transition: opacity .18s, transform .18s; pointer-events: none;
}
.float-label::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-right: none; border-left-color: var(--charcoal);
}
.float-wa:hover .float-label { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 102px; right: 33px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #1C1410; color: #fff;
  border: none; padding: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(28,20,16,.40);
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(.9);
  transition: opacity .3s, transform .3s, background .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px) scale(1.06); }
.back-to-top svg { display: block; }

/* ── MODAL DE SERVIÇO ── */
.svc-modal {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(28,20,16,.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.svc-modal.open { opacity: 1; pointer-events: auto; }
.svc-card {
  position: relative; width: 100%; max-width: 580px;
  max-height: 90vh; overflow: hidden;
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.96);
  transition: transform .3s ease;
}
.svc-modal.open .svc-card { transform: translateY(0) scale(1); }
.svc-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: none; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.svc-close:hover { background: rgba(0,0,0,.75); transform: scale(1.06); }
.svc-hero {
  position: relative; width: 100%; min-height: 160px;
  overflow: hidden; flex-shrink: 0;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(245,166,35,.22) 0%, transparent 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(199,148,84,.18) 0%, transparent 55%),
    linear-gradient(135deg, #1C1410 0%, #2A1D14 50%, #1C1410 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), inset 0 -20px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.svc-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 85% 20%, rgba(245,166,35,.25) 0%, transparent 70%),
    radial-gradient(50% 70% at 10% 80%, rgba(255,255,255,.05) 0%, transparent 70%);
  mix-blend-mode: screen;
}
.svc-hero-text {
  position: relative; padding: 36px 28px 32px; color: #fff; z-index: 1;
}
.svc-tag {
  display: inline-flex; font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--orange);
  background: rgba(245,166,35,.18); padding: 6px 12px; border-radius: 100px;
  margin-bottom: 10px; backdrop-filter: blur(8px);
}
.svc-name {
  font-family: var(--font-head); font-size: 26px; font-weight: 900;
  color: #fff; line-height: 1.2;
}
.svc-body {
  padding: 28px; overflow-y: auto; flex: 1;
  font-size: 15px; line-height: 1.75; color: var(--brown-mid);
}
.svc-body h4 {
  font-family: var(--font-head); font-size: 16px; font-weight: 900;
  color: var(--charcoal); margin: 18px 0 8px;
}
.svc-body h4:first-child { margin-top: 0; }
.svc-body p { margin-bottom: 12px; }
.svc-body ul { list-style: none; padding: 0; margin: 6px 0 14px; }
.svc-body ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 14.5px;
}
.svc-body ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.svc-body strong { color: var(--charcoal); }
.svc-price-info {
  background: var(--orange-light); border-radius: 12px;
  padding: 14px 18px; margin-top: 16px; font-size: 14px;
  border-left: 3px solid var(--orange); color: var(--charcoal);
}
.svc-footer {
  padding: 20px 28px 28px; border-top: 1px solid var(--border);
  background: #fff; flex-shrink: 0;
}
.svc-cta { width: 100%; justify-content: center; }

@media (max-width: 540px) {
  .svc-modal { padding: 0; align-items: flex-end; }
  .svc-card { max-height: 92vh; border-radius: 20px 20px 0 0; }
  .svc-hero { min-height: 140px; }
  .svc-hero-text { padding: 30px 22px 26px; }
  .svc-name { font-size: 22px; }
  .svc-body { padding: 22px; }
  .svc-footer { padding: 16px 22px 22px; }
}

/* ── EXIT INTENT POPUP ── */
.exit-popup {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.exit-popup.open { opacity: 1; pointer-events: auto; }
.exit-card {
  position: relative; width: 100%; max-width: 420px;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: translateY(30px) scale(.92);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.exit-popup.open .exit-card { transform: translateY(0) scale(1); }
.exit-header {
  position: relative; padding: 28px 24px 26px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; text-align: center;
}
.exit-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.22); border: none; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.exit-close:hover { background: rgba(255,255,255,.38); transform: scale(1.08); }
.exit-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.22); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.exit-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; opacity: .9; margin-bottom: 6px;
}
.exit-title {
  font-family: var(--font-head); font-size: 19px; font-weight: 900;
  line-height: 1.3; color: #fff;
}
.exit-body { padding: 24px 24px 22px; text-align: center; }
.exit-text {
  font-size: 14.5px; color: var(--brown-mid); line-height: 1.7; margin-bottom: 20px;
}
.exit-text strong { color: var(--charcoal); }
.exit-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 20px;
  background: #25D366; color: #fff;
  font-weight: 800; font-size: 15px; text-decoration: none;
  border-radius: 12px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.exit-cta:hover { background: #1FB855; transform: translateY(-2px); }
.exit-dismiss {
  margin-top: 14px; background: none; border: none; cursor: pointer;
  font-size: 13px; color: #999; transition: color .2s;
}
.exit-dismiss:hover { color: var(--charcoal); }

/* ── LIGHTBOX DA GALERIA ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(28,20,16,.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lb-stage {
  max-width: 92vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
}
.lb-img {
  max-width: 92vw; max-height: 85vh;
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  opacity: 1; transition: opacity .15s ease;
  user-select: none; -webkit-user-drag: none;
}

.lb-close, .lb-arrow {
  position: absolute; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-arrow:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
  transform: scale(1.06);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-close svg, .lb-arrow svg { display: block; }

.lb-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lb-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.40);
  border: none; padding: 0; cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.lb-dot:hover { background: rgba(255,255,255,.70); }
.lb-dot.active {
  background: #fff; width: 24px; border-radius: 5px;
}

@media (max-width: 768px) {
  .lb-close { top: 16px; right: 16px; width: 42px; height: 42px; }
  .lb-arrow { width: 42px; height: 42px; }
  .lb-prev  { left: 12px; }
  .lb-next  { right: 12px; }
  .lb-dots  { bottom: 18px; padding: 8px 12px; gap: 8px; }
  .lb-dot   { width: 8px; height: 8px; }
  .lb-dot.active { width: 20px; }
  .lb-img   { max-width: 94vw; max-height: 78vh; }
}

/* ── TWEAKS ── */
#tweaks-panel {
  display: none; position: fixed; bottom: 104px; right: 28px; z-index: 998;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 22px; width: 260px; border: 1px solid var(--border);
}
#tweaks-panel h4 {
  font-size: 11px; font-weight: 700; color: var(--brown-mid);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.tw-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tw-row label { font-size: 11px; font-weight: 700; color: rgba(100,80,60,.5); text-transform: uppercase; letter-spacing: .5px; }
.tw-row input[type=color] { width: 100%; height: 38px; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; padding: 3px; }
.tw-row select { width: 100%; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--border); font-family: var(--font-body); font-size: 14px; color: var(--charcoal); background: var(--warm-white); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
#hero .reveal { opacity: 1; transform: none; transition: none; }

/* ══════════════════════════════════
   RESPONSIVE — TABLET (960px)
══════════════════════════════════ */
@media (max-width: 960px) {
  .section { padding: 72px 0; }

  /* Nav: esconder telefone */
  .nav-phone { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .hero-sub { max-width: 100%; }
  .hero-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    width: 100%; height: auto;
  }

  /* Proof bar */
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(28,20,16,.1); }
  .proof-item:nth-child(odd) { border-right: 1px solid rgba(28,20,16,.1); }
  .proof-item:last-child, .proof-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-visual { display: none; }

  /* Galeria — 2 colunas, todas quadradas */
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.tall { grid-row: auto; aspect-ratio: 1 / 1; }

  /* Precos */
  .precos-grid { grid-template-columns: repeat(2, 1fr); }
  .preco-card.destaque { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }

  /* Além: 3 cols no tablet grande */
  .alem-grid { grid-template-columns: repeat(3, 1fr); }
  .cursos-fotos { grid-template-columns: 1fr 1fr; }

  /* Taxi Dog */
  .taxidog-grid { grid-template-columns: 1fr; }
  .taxidog-img { display: none; }

  /* Depoimentos */
  .depo-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-wrap { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-line { display: none; }

  /* Localização */
  .loc-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 16/9; }
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET ESTREITO (768px)
══════════════════════════════════ */
@media (max-width: 768px) {
  /* Tweaks panel não faz sentido em mobile */
  #tweaks-panel { display: none !important; }

  /* Hero: empilhar col em cima, foto embaixo */
  .hero-inner { min-height: auto; padding: 56px 20px 48px; }
  .hero-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .hero-trust-row { gap: 16px; }

  /* Serviços: 1 col */
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Além: 2 cols */
  .alem-grid { grid-template-columns: repeat(2, 1fr); }

  /* Preços: 1 col */
  .precos-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .preco-card.destaque { grid-column: auto; max-width: 100%; }

  /* Depos: 1 col */
  .depo-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Galeria: continua 2 cols quadradas, sem height fixo */

  /* Cursos: 1 col */
  .cursos-fotos { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (540px)
══════════════════════════════════ */
@media (max-width: 540px) {
  :root { --base-size: 16px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-logo-text { font-size: 15px; }
  .nav-cta { font-size: 13px; padding: 12px 18px; min-height: 44px; }

  /* Eyebrow legível */
  .eyebrow { font-size: 11px; letter-spacing: 1.6px; }

  /* Mapa Localização */
  .map-wrap { aspect-ratio: auto; height: 320px; }

  /* Modal de serviço — footer sticky com sombra para não esconder no scroll */
  .svc-footer {
    position: sticky; bottom: 0;
    box-shadow: 0 -8px 20px rgba(0,0,0,.08);
  }
  .svc-close { top: 12px; right: 12px; }

  /* Hero */
  .hero-inner { padding: 48px 18px 40px; gap: 32px; }
  .hero-title { font-size: clamp(26px, 7vw, 38px); }
  .hero-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    height: auto;
  }
  .hero-photo-main {
    grid-column: 1 / -1; grid-row: auto;
    aspect-ratio: 16 / 10; border-radius: 14px;
  }
  .hero-photo-main img { object-position: center 35%; }
  .hero-photo-sm {
    display: block; aspect-ratio: 1 / 1;
    border-radius: 12px; overflow: hidden;
  }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-wa, .btn-outline { width: 100%; justify-content: center; }
  .hero-trust-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-trust-item { justify-content: flex-start; }

  /* Proof */
  .proof-item { padding: 28px 16px; }
  .proof-number { font-size: clamp(26px, 8vw, 38px); }

  /* Galeria mobile: vira CARROSSEL estilo Instagram */
  .galeria-grid {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 0 24px;
    margin: 0 -18px;
    scroll-padding-left: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .galeria-grid::-webkit-scrollbar { display: none; }
  .galeria-item {
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: center;
    aspect-ratio: 4 / 3;
  }
  .galeria-item.tall {
    flex: 0 0 calc(100% - 48px);
    aspect-ratio: 4 / 5;
  }

  /* Setas estilo Instagram */
  .gal-nav {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: none; color: var(--charcoal); cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.30);
    transition: transform .2s, background .2s;
  }
  .gal-nav:hover, .gal-nav:active {
    transform: translateY(-50%) scale(1.08);
    background: #fff;
  }
  .gal-prev { left: 4px; }
  .gal-next { right: 4px; }

  /* Dots indicadores */
  .gal-dots {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 18px;
  }
  .gal-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.30);
    border: none; padding: 0; cursor: pointer;
    transition: background .25s, width .25s;
  }
  .gal-dot.active {
    background: var(--orange);
    width: 18px; border-radius: 5px;
  }

  /* Além: 2 cols pequenas */
  .alem-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .alem-card { padding: 24px 16px; }

  /* Steps: 1 col */
  .steps-wrap { grid-template-columns: 1fr; gap: 28px; }

  /* Floating button (touch ≥ 48px + safe-area iOS) */
  .float-wa {
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 56px; height: 56px;
  }
  .back-to-top {
    right: 24px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 48px; height: 48px;
  }

  /* Precos destaque sem span full */
  .preco-card.destaque { grid-column: auto; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE PEQUENO (390px)
══════════════════════════════════ */
@media (max-width: 390px) {
  .alem-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
