/* ===== VARIÁVEIS ===== */
:root {
  --primary: #B08D73;
  --primary-dark: #9A7560;
  --accent: #D4A882;
  --dark: #2C2C2C;
  --light: #FAF8F5;
  --white: #FFFFFF;
  --text-muted: #888888;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;
  --border: #E8E0D8;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITÁRIOS ===== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section-light { background: var(--light); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-primary { background: var(--primary); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-dark .section-label,
.section-primary .section-label { color: var(--accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-dark .section-title,
.section-primary .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-dark .section-subtitle,
.section-primary .section-subtitle { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-lg { padding: 20px 48px; font-size: 14px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 24px 0;
}
.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo-subtitle {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  white-space: nowrap;
}
.header.scrolled .logo-name { color: var(--dark); }
.header.scrolled .logo-subtitle { color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.header.scrolled .nav-link { color: var(--dark); }
.header.scrolled .nav-link:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  white-space: nowrap;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.header-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2C2222 0%, #4A3728 50%, #3D2E22 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B08D73' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(176, 141, 115, 0.2);
  border: 1px solid rgba(176, 141, 115, 0.4);
  border-radius: 40px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(176,141,115,0.3);
  border-radius: 4px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(176,141,115,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  gap: 12px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.photo-icon { font-size: 48px; opacity: 0.3; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge { margin-bottom: 0; }
.hero-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(176, 141, 115, 0.55);
  border: 1px solid var(--accent);
  border-radius: 40px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-badge-highlight i { font-size: 11px; color: var(--accent); }

.sobre-credential {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.sobre-credential span { color: var(--text-muted); font-weight: 400; font-size: 13px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SOBRE ===== */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-photo {
  position: relative;
}
.sobre-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--border), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(176,141,115,0.5);
  font-size: 13px;
  text-align: center;
  gap: 12px;
}
.sobre-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-photo-decoration {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  background: var(--light);
  border-radius: 4px;
  z-index: -1;
}
.sobre-photo::before {
  content: '';
  position: absolute;
  top: 24px; left: -24px;
  width: 80px; height: 80px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
}
.sobre-content { }
.sobre-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== HARMONIZAÇÃO ===== */
.harmonizacao {
  background: linear-gradient(135deg, var(--dark) 0%, #3D2E22 100%);
  color: var(--white);
}
.harmonizacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.harmonizacao-content { }
.harmonizacao-text {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-size: 16px;
}
.harmonizacao-benefits {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(176,141,115,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 14px;
}
.harmonizacao-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.harmonizacao-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.h-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.h-card:hover { background: rgba(176,141,115,0.15); border-color: rgba(176,141,115,0.3); transform: translateY(-4px); }
.h-card-icon { font-size: 32px; margin-bottom: 12px; color: var(--accent); }
.h-card-title { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 0.5px; margin-bottom: 8px; }
.h-card-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== TRATAMENTOS ===== */
.tratamentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tratamento-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.tratamento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tratamento-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--border), var(--light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  gap: 8px;
  overflow: hidden;
}
.tratamento-photo img { width: 100%; height: 100%; object-fit: cover; }
.tratamento-photo-icon { font-size: 36px; color: var(--primary); opacity: 0.5; }
.tratamento-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.tratamento-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.tratamento-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.tratamento-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.tratamento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--whatsapp);
  transition: gap var(--transition);
}
.tratamento-cta:hover { gap: 12px; }
.tratamento-cta i { font-size: 16px; }

/* ===== CONSULTÓRIO ===== */
.consultorio-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.consultorio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--border), #EDE5DC);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  gap: 8px;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-icon { font-size: 36px; color: var(--primary); opacity: 0.5; }

.consultorio-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.address-block { }
.address-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.address-lines { display: flex; flex-direction: column; gap: 12px; }
.address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.address-line i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }

/* ===== FAQ ===== */
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--primary);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ===== CONTATO ===== */
.contato {
  background: linear-gradient(135deg, var(--dark), #3D2E22);
  text-align: center;
  padding: 120px 0;
}
.contato-inner { max-width: 700px; margin: 0 auto; }
.contato-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contato-title em { font-style: italic; color: var(--accent); }
.contato-text { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 48px; }
.contato-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.contato-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 40px;
}
.contato-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contato-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.contato-detail i { color: var(--accent); font-size: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.footer-copy { font-size: 13px; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-float-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 40px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-float-btn {
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.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; }

/* ===== MOBILE MENU ===== */
@media (max-width: 1279px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 48px;
    gap: 32px;
    box-shadow: -4px 0 40px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav.open { right: 0; }
  .nav-link { color: var(--dark); font-size: 14px; }
  .nav-link:hover { color: var(--primary); }
  .header-whatsapp { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .nav-overlay.show { display: block; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1279px) {
  .section { padding: 72px 0; }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre-photo { max-width: 400px; margin: 0 auto; }
  .harmonizacao-inner { grid-template-columns: 1fr; gap: 48px; }
  .tratamentos-grid { grid-template-columns: repeat(2, 1fr); }
  .consultorio-gallery { grid-template-columns: repeat(2, 1fr); }
  .consultorio-info { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-image { display: none; }
  .hero-actions { justify-content: center; }
  .sobre-stats { grid-template-columns: repeat(2, 1fr); }
  .harmonizacao-cards { grid-template-columns: 1fr 1fr; }
  .tratamentos-grid { grid-template-columns: 1fr; }
  .consultorio-gallery { grid-template-columns: 1fr; }
  .contato-details { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .whatsapp-float-tooltip { display: none; }
  .whatsapp-float-btn { width: 52px; height: 52px; font-size: 24px; }
  .whatsapp-float { bottom: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .sobre-stats { grid-template-columns: 1fr; gap: 28px; }
  .harmonizacao-cards { grid-template-columns: 1fr; }
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.depoimento-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.depoimento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.depoimento-stars { color: #F5C518; font-size: 20px; letter-spacing: 2px; }
.depoimento-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.depoimento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.depoimento-author { font-size: 14px; font-weight: 600; color: var(--dark); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 1279px) { .depoimentos-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1279px) { .depoimentos-grid { grid-template-columns: repeat(2, 1fr); } }
