﻿/* === REVEAL ON SCROLL === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === HERO LOAD ANIMATION === */
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-center .overline  { animation: hero-fade-in 0.8s ease 0.1s both; }
.hero-center h1         { animation: hero-fade-in 0.8s ease 0.25s both; }
.hero-center .hero-sub  { animation: hero-fade-in 0.8s ease 0.4s both; }
.hero-center .hero-micro { animation: hero-fade-in 0.8s ease 0.65s both; }
.hero-team-wrap         { animation: hero-fade-in 0.9s ease 0.5s both; }
.hero-stats-bar         { animation: hero-fade-in 0.8s ease 0.6s both; }

/* === PULSE ON HERO CTA === */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 130, 66, 0); }
  50%       { box-shadow: 0 0 0 9px rgba(176, 130, 66, 0.18); }
}
.hero-center .btn-primary { animation: hero-fade-in 0.8s ease 0.55s both; }
.hero-btn-pulse { animation: hero-fade-in 0.8s ease 0.55s both, pulse-cta 3s ease-in-out 1.4s infinite; }
.hero-btn-pulse:hover { animation: none; background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(176,130,66,0.28); }

/* === NAV: BTN MAIS SÓLIDO AO ROLAR === */
.nav-bar.scrolled .btn-nav {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

/* === SECTION LABEL DECORATOR === */
.section-label .overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
  margin: 0 auto 12px;
}

/* === STICKY MOBILE CTA === */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta .btn-primary { flex: 1; text-align: center; padding: 13px 16px; font-size: 0.85rem; }
.sticky-wa { padding: 13px 18px; font-size: 0.85rem; flex-shrink: 0; }

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

/* === TOKENS === */
:root {
  --cream:       #F7F3EE;
  --beige:       #EDE7DC;
  --sand:        #D4C9B8;
  --sand-light:  #E8E1D8;
  --sage:        #7B9E7A;
  --sage-dark:   #4E6B4D;
  --sage-light:  #EBF1EA;
  --amber:       #B08242;
  --amber-dark:  #8B6530;
  --amber-light: #F5EBD9;
  --dark:        #2C2318;
  --text:        #2C2318;
  --text-muted:  #7A6B62;
  --text-light:  #B0A49C;
  --border:      #D4C9B8;
  --border-light: #E5DDD4;
  --radius:      4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === TYPOGRAPHY === */
h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.88rem; font-weight: 600; }
p  { line-height: 1.7; }

.overline {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

/* === SECTION LAYOUT === */
.section-label {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-label h2 { margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* === BUTTONS — only these elements get :hover effects === */

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  padding: 15px 34px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(176, 130, 66, 0.28);
}
.btn-full { width: 100%; text-align: center; display: block; }

.btn-servico {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-servico:hover { border-color: var(--amber); color: var(--amber); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover { background: #1fbd5a; transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-block;
  color: var(--text);
  padding: 14px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-outline-dark:hover { border-color: var(--text); background: var(--beige); }

.btn-nav {
  display: inline-block;
  color: var(--amber);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1.5px solid var(--amber);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-nav:hover { background: var(--amber); color: #fff; }

.btn-urgencia {
  display: inline-block;
  background: #fff;
  color: var(--dark);
  padding: 17px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-urgencia:hover { background: var(--cream); transform: translateY(-2px); }

/* === NAV === */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 201, 184, 0.6);
  transition: box-shadow 0.3s ease;
}
.nav-bar.scrolled { box-shadow: 0 2px 16px rgba(44, 35, 24, 0.07); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; color: var(--text); }
.logo-name strong { font-weight: 700; }
.logo-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav > a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav > a:not(.btn-nav):hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s ease;
}

/* === HERO === */
.hero {
  padding-top: 68px;
  padding-bottom: 0;
  background: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* decoração — glows circulares */
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-deco-a,
.hero-deco-b,
.hero-deco-c,
.hero-deco-d { position: absolute; border-radius: 50%; }
.hero-deco-a {
  width: 760px; height: 760px;
  left: -320px; top: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 68%);
}
.hero-deco-b { display: none; }
.hero-deco-c {
  width: 760px; height: 760px;
  right: -320px; top: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 68%);
}
.hero-deco-d { display: none; }

/* bloco central de texto */
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 16px;
  text-align: center;
}
.hero-center .overline { margin-bottom: 20px; }
.hero-center h1 {
  color: var(--dark);
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.1;
}
.hero-center h1 span { display: block; }
.hero-center h1 em { font-style: italic; color: var(--amber); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-micro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin-top: 20px;
}
.hero-micro span {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.hero-micro span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* foto da equipe */
.hero-team-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  line-height: 0;
}
.hero-team-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* placeholder quando a imagem não carregar */
.hero-team-placeholder {
  background: var(--beige);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-team-placeholder::after {
  content: 'Foto da equipe';
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* barra de stats */
.hero-stats-bar {
  position: relative;
  z-index: 10;
  background: var(--amber);
  border-radius: 14px;
  max-width: 1040px;
  width: calc(100% - 64px);
  margin: 0 auto -50px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44,35,24,0.18);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 28px 36px;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-badges-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  margin-left: auto;
  padding: 28px 36px;
  border-left: none;
}
.hero-badges-bar span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badges-bar span::before { content: '✓  '; }

/* === DOR === */
.dor { background: var(--beige); padding: 120px 0 108px; }
.dor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.dor-headline {
  display: flex;
  flex-direction: column;
}
.dor-headline h2 { margin-bottom: 22px; }
.dor-transition { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.75; flex: 1; }
.dor-headline .btn-primary { margin-top: 32px; align-self: flex-start; }

.dor-lead {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.dor-items { list-style: none; }
.dor-items li {
  padding: 14px 0 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
}
.dor-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}
.dor-items li strong { color: var(--text); }

/* === SOLUÇÃO === */
.solucao { background: var(--cream); padding: 108px 0; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 48px;
}
.diferencial-card {
  background: var(--cream);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diferencial-icon { color: var(--sage-dark); margin-bottom: 16px; }
.diferencial-card h3 { margin-bottom: 10px; color: var(--dark); }
.diferencial-card p { font-size: 0.88rem; color: var(--text-muted); }

/* === SERVIÇOS === */
.servicos { padding: 108px 0; }
.servicos .section-label { max-width: 800px; }
.servicos-odonto { background: var(--beige); }
.servicos-estetica { background: var(--cream); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.servico-card {
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 18px rgba(44,35,24,0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}
.servico-img {
  width: 100%;
  margin: 0;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.servico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.servico-num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}
.servico-card h3 {
  font-size: 0.9rem;
  color: var(--dark);
  padding: 16px 16px 4px;
  margin: 0;
}
.servico-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.45;
  padding: 0 16px 12px;
  margin: 0;
  flex-shrink: 0;
}
.servico-card ul {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 16px;
  margin: 0;
}
.servico-card ul li {
  font-size: 0.76rem;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}
.servico-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--sand); }
.servico-card ul { margin-bottom: 14px; }
.servico-card .btn-servico { margin: auto 16px 16px; }

/* === EQUIPE === */
.equipe { background: var(--beige); padding: 108px 0; }

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.membro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.membro-foto {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sage);
  flex-shrink: 0;
  overflow: hidden;
}
.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.membro-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.membro-esp { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.membro-reg { font-size: 0.68rem; color: var(--sage-dark); letter-spacing: 0.07em; text-transform: uppercase; margin-top: auto; }

/* === DEPOIMENTOS === */
.depoimentos { background: var(--cream); padding: 108px 0; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.depoimento-card {
  background: var(--beige);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.depoimento-stars { font-size: 0.85rem; color: var(--amber); letter-spacing: 3px; }
.depoimento-card blockquote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.autor-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-autor strong { display: block; font-size: 0.82rem; }
.depoimento-autor span { font-size: 0.73rem; color: var(--text-muted); }

/* === FAQ === */
.faq { background: var(--beige); padding: 108px 0; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 14px; }
.faq-header p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.faq-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  padding: 28px 0 4px;
  display: block;
}
.faq-category:first-child { padding-top: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 16px 0;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}
.faq-item[open] > summary::after { content: '–'; }
.faq-answer {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 0 18px;
}

/* === GARANTIA === */
.garantia { background: var(--dark); padding: 108px 0; }
.garantia .overline { color: var(--sage); }
.garantia h2 { color: #fff; }
.garantia .section-sub { color: rgba(255, 255, 255, 0.45); }

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 56px;
}
.garantia-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.garantia-check { font-size: 1rem; color: var(--sage); flex-shrink: 0; margin-top: 1px; }
.garantia-item h4 { color: #fff; margin-bottom: 8px; }
.garantia-item p { font-size: 0.83rem; color: rgba(255, 255, 255, 0.42); line-height: 1.65; }

/* === URGÊNCIA === */
.urgencia { background: var(--amber); padding: 108px 0; }
.urgencia .overline { color: rgba(255, 255, 255, 0.65); }
.urgencia-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.urgencia-text h2 { color: #fff; margin-bottom: 36px; text-align: center; }
.urgencia-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.urgencia-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}
.urgencia-col p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.82); }
.urgencia-destaque { font-size: 0.95rem; color: #fff; font-weight: 500; }
.urgencia-destaque em { font-style: italic; }

.urgencia-action { text-align: center; margin-top: 40px; }
.urgencia-action > p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.58); margin-top: 12px; }

/* === CONTATO === */
.contato { background: var(--cream); padding: 108px 0; }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.contato-info { display: flex; flex-direction: column; }
.contato-info h2 { margin-bottom: 14px; }
.contato-sub { color: var(--text-muted); margin-bottom: 40px; font-size: 0.95rem; }
.contato-dados { flex: 1; }

.contato-dados { display: flex; flex-direction: column; margin-bottom: 36px; }
.contato-dado {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contato-dado strong {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.contato-dado span { font-size: 0.88rem; color: var(--text); }
.contato-btns { display: flex; flex-direction: column; gap: 10px; }

/* Mapa */
.contato-form {
  background: var(--beige);
  border: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.contato-mapa { display: flex; flex-direction: column; flex: 1; }
.contato-mapa iframe { flex: 1; min-height: 300px; }
.mapa-footer {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: var(--beige);
}
.mapa-endereco {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
}
.mapa-footer .btn-primary { white-space: nowrap; flex-shrink: 0; }
.form-group { margin-bottom: 10px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  color: var(--sage-dark);
  font-size: 0.83rem;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
  padding: 12px;
  background: var(--sage-light);
}
.form-success.visible { display: block; }

/* === FOOTER === */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}
.footer-logo strong { font-weight: 700; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--sage); }
.footer-col strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 2; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 3s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* === RESPONSIVE === */
@media (max-width: 1080px) {
  .equipe-grid          { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .servicos-grid        { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .hero-center          { padding: 60px 24px 32px; }
  .hero-stat            { padding: 22px 24px; }
  .hero-badges-bar      { padding: 22px 24px; }
  .dor-inner            { grid-template-columns: 1fr; gap: 48px; }
  .diferenciais-grid    { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid        { grid-template-columns: repeat(3, 1fr); }
  .equipe-grid          { grid-template-columns: repeat(3, 1fr); }
  .depoimentos-grid     { grid-template-columns: repeat(2, 1fr); }
  .faq-inner            { grid-template-columns: 1fr; gap: 40px; }
  .garantias-grid       { grid-template-columns: 1fr; }
  .contato-inner        { grid-template-columns: 1fr; gap: 40px; }
  .whatsapp-float       { display: none; }
}

@media (max-width: 640px) {
  .sticky-mobile-cta { display: flex; }
  /* espaço para o sticky bar no rodapé */
  body { padding-bottom: 70px; }

  .container    { padding: 0 20px; }
  .nav-inner    { padding: 0 20px; }
  .hero-center  { padding: 52px 20px 28px; }
  .hero-center h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: 1.15; }
  .hero-sub     { max-width: 100%; font-size: 0.92rem; }
  .hero-micro   { gap: 4px 14px; }
  .hero-stats-bar   { width: calc(100% - 40px); margin-top: -32px; }
  .hero-stats-inner { flex-wrap: wrap; justify-content: center; }
  .hero-stat        { flex: 0 0 33.33%; padding: 14px 8px; border: none; text-align: center; }
  .hero-stat strong { font-size: 1.15rem; }
  .hero-stat span   { font-size: 0.5rem; letter-spacing: 0.08em; }
  .hero-badges-bar  { flex: 0 0 100%; margin-left: 0; padding: 10px 16px 14px; border-top: none; flex-direction: column; gap: 4px; align-items: center; }
  .hero-badges-bar span { font-size: 0.6rem; }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(247, 243, 238, 0.97);
    backdrop-filter: blur(20px);
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    box-shadow: 0 4px 24px rgba(44,35,24,0.08);
  }
  .nav.open        { display: flex; }
  .nav > a         { font-size: 1rem; }
  .hamburger       { display: flex; }
  .btn-nav         { display: none; }

  .section-label   { margin-bottom: 40px; }

  .diferenciais-grid { grid-template-columns: 1fr; }
  .servicos-grid     { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid       { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid  { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; }
  .contato-form      { padding: 0; }
  .contato-inner     { gap: 32px; }
  .mapa-footer       { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 20px; }
  .mapa-footer .btn-primary { width: 100%; text-align: center; }
  .urgencia-cols     { grid-template-columns: 1fr; gap: 24px; }

  /* WhatsApp float oculto no mobile — substituído pela barra sticky */
  .whatsapp-float    { display: none; }

  /* CTAs full-width no mobile */
  .section-cta .btn-primary,
  .urgencia-action .btn-urgencia,
  .dor-headline .btn-primary { display: block; width: 100%; text-align: center; white-space: normal; }

  /* Equipe: último membro ímpar ocupa linha inteira */
  .equipe-grid .membro-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .dor { padding: 100px 0 64px; }
  .dor-transition { font-size: 0.92rem; }

  /* === CENTRALIZAÇÃO MOBILE === */
  .dor-headline,
  .dor-lead { text-align: center; }
  .dor-headline .btn-primary { align-self: center; }
  .dor-list              { text-align: center; }
  .dor-items li          { text-align: center; padding: 14px 0; }
  .dor-items li::before  { display: none; }

  .diferencial-card { text-align: center; }
  .diferencial-icon { text-align: center; }

  .faq-header h2,
  .faq-header p     { text-align: center; }
  .faq-category     { text-align: center; }
  .faq-item summary { justify-content: center; text-align: center; position: relative; padding-right: 24px; }
  .faq-item summary::after { position: absolute; right: 0; }
  .faq-answer       { text-align: center; }

  .servico-card h3,
  .servico-tagline { text-align: center; }
  .servico-card ul           { text-align: center; }
  .servico-card ul li        { text-align: center; padding-left: 0; }
  .servico-card ul li::before { display: none; }

  .depoimento-card { text-align: center; }
  .depoimento-autor { justify-content: center; }

  .garantia-item { flex-direction: column; align-items: center; text-align: center; }
  .garantia-check { margin-top: 0; }

  .contato-info,
  .contato-dado { text-align: center; }
  .contato-btns { align-items: center; }

  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-logo,
  .footer-tagline { text-align: center; }
  .footer-inner { padding-bottom: 48px; }
  .footer-bottom { padding: 32px 0; }
  .solucao, .servicos, .equipe,
  .depoimentos, .faq, .garantia, .urgencia, .contato { padding: 64px 0; }
}

@media (max-width: 420px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .equipe-grid   { grid-template-columns: repeat(2, 1fr); }
}
