:root {
  --graphite: #0a0a0a;
  --graphite-mid: #111111;
  --graphite-light: #1c1c1c;
  --blush: #c9a84c;
  --blush-light: #e2c87a;
  --blush-pale: rgba(201,168,76,0.10);
  --white: #f5f0e8;
  --gray-text: #9a9080;
  --border: rgba(201,168,76,0.22);
  --transition: 0.45s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--graphite);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--graphite); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); letter-spacing: 0.08em; }
.nav-logo-text span { display: block; font-size: 0.65rem; letter-spacing: 0.22em; color: var(--blush); text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-text); text-decoration: none;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--blush);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--blush);
  color: var(--blush); padding: 10px 22px; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
}
.nav-cta:hover { background: var(--blush); color: #0a0a0a; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: var(--transition); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--blush); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.12;
  color: var(--white); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-title em { font-style: italic; color: var(--blush-light); }
.hero-sub {
  font-size: 1rem; line-height: 1.8;
  color: var(--gray-text); max-width: 420px; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blush); color: #0a0a0a;
  padding: 15px 32px; text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; transition: all var(--transition);
}
.btn-primary:hover { background: var(--blush-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); color: var(--gray-text);
  padding: 15px 32px; text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--blush); color: var(--blush); }
.hero-crm {
  margin-top: 48px; font-size: 0.68rem; color: var(--graphite-light);
  letter-spacing: 0.12em;
  opacity: 0; animation: fadeUp 0.8s 1.1s ease forwards;
}
.hero-social {
  display: flex; gap: 14px; margin-top: 26px;
  opacity: 0; animation: fadeUp 0.8s 1.2s ease forwards;
}
.hero-social a {
  width: 62px; height: 62px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blush);
  text-decoration: none;
  transition: all var(--transition);
}
.hero-social a:hover {
  background: var(--blush); color: var(--graphite);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(201,168,76,0.28);
}
.hero-social svg { width: 27px; height: 27px; }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--graphite) 0%, transparent 35%);
  z-index: 1;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  opacity: 0; animation: fadeIn 1.2s 0.4s ease forwards;
}
.hero-stat-box {
  position: absolute; bottom: 60px; right: 50px; z-index: 3;
  background: rgba(6,6,6,0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--border); padding: 24px 30px;
  opacity: 0; animation: fadeUp 0.8s 1.2s ease forwards;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--blush); display: block; }
.hero-stat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-text); }
.hero-divider { width: 1px; height: 40px; background: var(--border); margin: 0 24px; }
.hero-stats { display: flex; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 60px; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gray-text);
  opacity: 0; animation: fadeUp 0.8s 1.4s ease forwards;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--border);
  animation: scrollPulse 2s 2s infinite;
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 60px; }
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--blush); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--blush-light); }

/* ─── SOBRE ─── */
#sobre {
  background: var(--graphite-mid);
  display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 80px; align-items: start;
}
.sobre-img-wrap { position: relative; max-width: 420px; }
.sobre-img {
  width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  display: block;
}
.sobre-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blush); color: #0a0a0a;
  padding: 28px; text-align: center;
}
.sobre-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; display: block; }
.sobre-badge-text { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; }
.sobre-content .section-title { margin-bottom: 28px; }
.sobre-text { font-size: 1rem; line-height: 1.9; color: var(--gray-text); margin-bottom: 20px; }
.sobre-line { width: 60px; height: 1px; background: var(--blush); margin: 32px 0; }
.sobre-credentials { display: flex; flex-direction: column; gap: 12px; }
.cred-item { display: flex; gap: 14px; align-items: flex-start; }
.cred-dot { width: 5px; height: 5px; background: var(--blush); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.cred-text { font-size: 0.9rem; color: var(--gray-text); line-height: 1.5; }
.cred-text strong { color: var(--white); font-weight: 400; }

/* ─── SERVIÇOS ─── */
#servicos { background: var(--graphite); }
.servicos-header { max-width: 640px; margin-bottom: 64px; }
.servicos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.servico-card {
  display: block; color: inherit; text-decoration: none;
  background: var(--graphite-mid); padding: 40px 30px;
  border: 1px solid transparent;
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--blush);
  transition: width var(--transition);
}
.servico-card:hover,
.servico-card:focus-visible { border-color: var(--border); background: var(--graphite-light); }
.servico-card:hover::before,
.servico-card:focus-visible::before { width: 100%; }
.servico-card:focus-visible { outline: 1px solid var(--blush); outline-offset: -4px; }
.servico-icon {
  width: 42px; height: 42px; margin-bottom: 28px;
  stroke: var(--blush); fill: none; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
/* Gold-recolored custom icons (PNG line-art turned into gold via alpha mask) */
.icon-mask {
  display: inline-block;
  background-color: var(--blush);
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
}
.servico-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--white);
  margin-bottom: 14px;
}
.servico-desc { font-size: 0.9rem; line-height: 1.8; color: var(--gray-text); }
.servico-num {
  position: absolute; top: 40px; right: 30px;
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  color: var(--blush-pale); font-weight: 300; line-height: 1;
}



/* ─── TRUST BAR ─── */
#trust-bar {
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}
.trust-check { color: var(--blush); font-weight: 500; }

/* ─── SINTOMAS ─── */
#sintomas {
  background: var(--graphite-mid);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.sintomas-lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-text);
  max-width: 460px;
  margin-bottom: 34px;
}
.sintomas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sintoma-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(10,10,10,0.55);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
}
.sintoma-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sintoma-svg {
  width: 26px; height: 26px;
  stroke: var(--blush); fill: none; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.sintoma-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--gray-text);
}
.sintoma-text strong { color: var(--blush); font-weight: 400; }

/* ─── POR QUE ESCOLHER ─── */
#diferenciais { background: var(--graphite); }
.diferenciais-header { max-width: 680px; margin-bottom: 54px; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.diferencial-card {
  border: 1px solid var(--border);
  background: var(--graphite-mid);
  padding: 32px 30px;
}
.diferencial-icon {
  width: 30px; height: 30px; margin-bottom: 20px;
  stroke: var(--blush); fill: none; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.diferencial-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.28rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.diferencial-text {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── FINAL CTA ─── */
#cta-final {
  background: linear-gradient(135deg, #080808 0%, #111111 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-final-social {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.cta-final-social a {
  width: 138px; height: 138px;
  border: 1px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  color: var(--blush);
  text-decoration: none;
  transition: all var(--transition);
}
.cta-final-social a:hover {
  background: var(--blush);
  color: var(--graphite);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(201,168,76,0.28);
}

/* ─── GALERIA ─── */
#galeria { background: var(--graphite-mid); padding: 100px 60px; }
.galeria-header { margin-bottom: 52px; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.galeria-item { overflow: hidden; position: relative; cursor: pointer; }
.galeria-item:first-child { grid-column: span 2; grid-row: span 2; }
.galeria-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.galeria-item:hover .galeria-img { transform: scale(1.06); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  opacity: 0; transition: opacity var(--transition);
}
.galeria-overlay::after {
  content: "Ampliar imagem";
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--graphite); }
.dep-header { max-width: 560px; margin-bottom: 60px; }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dep-card {
  background: var(--graphite-mid);
  border-top: 2px solid var(--blush);
  transition: transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dep-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(201,168,76,0.1); }
.dep-card::after {
  content: "Ampliar foto";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(3px);
  color: var(--white);
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.dep-card:hover::after { opacity: 1; }
.dep-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #000;
}
.dep-stars { color: var(--blush); font-size: 0.9rem; letter-spacing: 4px; text-align: center; padding: 20px 0 22px; }

/* ─── CONTATO ─── */
#contato {
  background: var(--graphite-mid);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: center;
}
.contato-info { padding: 100px 60px; }
.contato-map {
  position: relative; min-height: 280px;
  margin: 80px 60px 80px 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--graphite-light);
}
.contato-map iframe { width: 100%; height: 280px; border: 0; filter: grayscale(80%) contrast(1.1); }
.info-item { margin-bottom: 36px; }
.info-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blush); margin-bottom: 8px; }
.info-value { font-size: 1.02rem; color: var(--white); line-height: 1.7; }
.info-value a { color: var(--white); text-decoration: none; transition: color var(--transition); }
.info-value a:hover { color: var(--blush); }
.info-note { font-size: 0.94rem; color: var(--gray-text); line-height: 1.7; max-width: 420px; }
.map-link {
  display: inline-block; margin-top: 10px;
  color: var(--blush); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: color var(--transition);
}
.map-link:hover { color: var(--blush-light); }
.contato-cta {
  margin-top: 48px; display: inline-flex; align-items: center; gap: 12px;
  background: var(--blush); color: #0a0a0a;
  padding: 16px 36px; text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; transition: all var(--transition);
}
.contato-cta:hover { background: var(--blush-light); transform: translateX(4px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }

/* ─── FOOTER ─── */
footer {
  background: var(--graphite); border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: var(--gray-text); }
.footer-logo strong { color: var(--white); font-weight: 400; }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover { border-color: var(--blush); color: var(--blush); }
.footer-legal { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--graphite-light); }
.footer-credit { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--gray-text); }
.footer-credit strong { color: var(--blush); font-weight: 400; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 58px; height: 58px; background: var(--blush);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  transition: all var(--transition);
  animation: pulse 3s 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: var(--blush-light); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #0a0a0a; }

/* ─── DIVIDER LINE ─── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
  50% { box-shadow: 0 8px 45px rgba(201,168,76,0.65); }
}
@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ─── MODAL RESULTADOS ─── */
.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0;
  width: 100%; height: 100%; overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center; align-items: center;
  backdrop-filter: blur(5px);
}
.modal-content {
  max-width: 90%; max-height: 90vh; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); animation: zoomIn 0.3s ease;
}
.modal-close {
  position: absolute; top: 20px; right: 35px; color: var(--white);
  font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer;
}
.modal-close:hover, .modal-close:focus { color: var(--blush); text-decoration: none; cursor: pointer; }
.modal-prev, .modal-next {
  cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%);
  width: auto; padding: 16px; color: var(--white); z-index: 1001;
  font-size: 40px; font-weight: bold; transition: 0.3s;
  user-select: none; -webkit-user-select: none;
}
.modal-prev { left: 20px; }
.modal-next { right: 20px; }
.modal-prev:hover, .modal-next:hover { color: var(--blush); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── SERVIÇOS RESPONSIVO ─── */
@media (max-width: 1100px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .servicos-grid { grid-template-columns: 1fr; }
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-right { position: absolute; inset: 0; opacity: 0.35; }
  .hero-right::before { background: linear-gradient(to top, var(--graphite) 50%, transparent); }
  .hero-img { object-position: center 20%; }
  .hero-left { padding: 120px 24px 80px; }
  .hero-stat-box { display: none; }
  .hero-scroll { left: 24px; }
  section { padding: 70px 24px; }
  #sobre { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-wrap { max-width: 380px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galeria-item:first-child { grid-column: span 2; }
  .dep-grid { grid-template-columns: 1fr; }
  #contato { grid-template-columns: 1fr; }
  .contato-info { padding: 70px 24px; }
  .contato-map { min-height: 220px; margin: 0 24px 70px; }
  .contato-map iframe { height: 220px; }
  footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .whatsapp-float { bottom: 20px; right: 20px; }

  #trust-bar { grid-template-columns: 1fr; padding: 24px; }
  #sintomas { grid-template-columns: 1fr; gap: 36px; }
  .sintomas-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .modal-prev { left: 5px; font-size: 30px; padding: 10px; }
  .modal-next { right: 5px; font-size: 30px; padding: 10px; }
  #galeria { padding: 70px 24px; }
}
