/* ============================================================
   SOLLÉR AESTHETIC CLINIC — Estilos principais
   ============================================================
   COMO PERSONALIZAR:
   - Cores: altere as variáveis em :root abaixo
   - Textos: busque por "EDITAR" no index.html
   - Número WhatsApp: altere WHATSAPP_NUMBER em js/main.js
   ============================================================ */

/* ── Variáveis da marca ── */
:root {
  --bg-peach:      #F5DEC8;
  --bg-peach-dark: #EED0AE;
  --gold-primary:  #C4952A;
  --gold-dark:     #7A5A10;
  --gold-light:    #E8C97A;
  --gold-subtle:   #F7EDD8;
  --cream:         #FAFAF8;
  --white:         #FFFFFF;
  --text-dark:     #2C1A0E;
  --text-mid:      #6B4A2A;
  --text-light:    #6B5038;
  --whatsapp:      #1a7e4a;
  --whatsapp-dark: #156639;

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

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(44, 26, 14, 0.10);
  --shadow-lg: 0 8px 40px rgba(44, 26, 14, 0.16);

  --max-w: 1160px;
  --nav-h: 130px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img, picture { max-width: 100%; display: block; }
img { height: auto; }
main { overflow-x: hidden; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Tipografia ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title--light { color: var(--cream); }

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
  margin-inline: auto;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold-primary);
  color: #1a1a0a;
}
.btn--gold:hover { background: var(--gold-dark); }

.btn--gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  transition: all 0.22s ease;
}
.btn--gold-sm:hover {
  background: var(--gold-primary);
  color: var(--white);
}

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

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--lg { padding: 18px 44px; font-size: 1rem; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(44,26,14,0.10);
}

.navbar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navbar__link:hover { color: var(--gold-primary); }
.navbar__link:hover::after { transform: scaleX(1); }

.navbar__cta {
  padding: 10px 22px;
  font-size: 0.82rem;
  border-radius: 2px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-peach-dark);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245,222,200,0.92) 0%, rgba(238,208,174,0.84) 55%, rgba(245,222,200,0.65) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(196,149,42,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(44,26,14,0.15);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}
.hero__stat-sym {
  font-size: 1.1rem;
  color: var(--gold-primary);
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(44,26,14,0.15);
  flex-shrink: 0;
}

.hero__monogram {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(200px, 28vw, 400px);
  font-weight: 300;
  color: rgba(196,149,42,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ============================================================
   SOBRE + EQUIPE
============================================================ */
.sobre {
  background: var(--cream);
  padding: 100px 0 80px;
}

.sobre__clinic {
  max-width: 720px;
  margin-bottom: 72px;
}

.sobre__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: var(--gold-subtle);
}
.badge i { color: var(--gold-primary); }

/* Equipe */
.equipe { border-top: 1px solid var(--gold-light); padding-top: 64px; }

.equipe__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.equipe__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  height: 360px;
  overflow: hidden;
  background: var(--bg-peach);
  position: relative;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }

/* Exibe ícone quando a imagem não carrega */
.team-card__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 3rem;
  gap: 12px;
}
.team-card__photo--placeholder::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold-light);
}

.team-card__body {
  padding: 28px 30px 32px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.team-card__formation {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  min-height: 1.2em;
}

.team-card__bio {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.team-card__insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary);
  transition: color 0.2s;
}
.team-card__insta:hover { color: var(--gold-dark); }
.team-card__insta i { font-size: 1rem; }

.team-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.team-card__cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: rgba(180,140,80,0.09);
  border: 1px solid rgba(180,140,80,0.25);
  border-radius: 4px;
  padding: 3px 8px;
}

.team-card__cred-badge i { color: var(--gold-primary); font-size: 0.7rem; }

/* Trust strip */
.sobre__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(180,140,80,0.06);
  border: 1px solid rgba(180,140,80,0.18);
  border-radius: var(--radius-lg);
}

.sobre__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  flex: 1 1 200px;
  min-width: 0;
}

.sobre__trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.sobre__trust-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.sobre__trust-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.sobre__trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(180,140,80,0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sobre__trust { padding: 20px 16px; gap: 0; }
  .sobre__trust-divider { display: none; }
  .sobre__trust-item { padding: 10px 16px; flex: 1 1 45%; }
}

/* ============================================================
   TRATAMENTOS
============================================================ */
.tratamentos {
  background: var(--bg-peach);
  padding: 100px 0;
}

/* Cards visuais de serviço */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.servico-card__img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.servico-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.servico-card:hover .servico-card__img {
  transform: scale(1.05);
}

.servico-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,6,0.82) 0%, rgba(30,10,6,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
}

.servico-card__nome {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.servico-card__count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.servico-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.servico-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.servico-card__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.servico-card__lista li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.servico-card__lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.servico-card__cta,
.servico-card__detalhes {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
}

.servico-card__detalhes {
  background: transparent;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
}
.servico-card__detalhes:hover {
  background: var(--gold-primary);
  color: var(--white);
}

/* ── Modal de serviços ── */
.modal-servico {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-servico.open { display: flex; }

.modal-servico__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,10,6,0.65);
  backdrop-filter: blur(4px);
}

.modal-servico__panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: min(600px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: modalIn 0.28s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.modal-servico__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 1rem;
  color: var(--text-mid);
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.15s;
}
.modal-servico__close:hover { background: var(--white); }

.modal-servico__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}

.modal-servico__content { padding: 28px 32px 32px; }

.modal-servico__titulo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.modal-servico__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.modal-servico__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-subtle);
}
.modal-servico__item:first-child { padding-top: 0; }

.modal-servico__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.modal-servico__item span {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.modal-servico__cta { width: 100%; justify-content: center; }

@media (max-width: 520px) {
  .modal-servico__content { padding: 20px 20px 24px; }
  .modal-servico__img { height: 160px; }
}

@media (max-width: 860px) {
  .servicos-grid { grid-template-columns: 1fr; gap: 20px; }
  .servico-card__img-wrap { height: 240px; }
}

/* ============================================================
   MENTORIA & CURSOS
============================================================ */
.mentoria {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3D2510 100%);
  padding: 100px 0;
}

.mentoria__foto-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 24px 0 28px;
}
.mentoria__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75);
}
.mentoria__foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(30,10,6,0.8));
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.mentoria__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mentoria__desc {
  font-size: 1rem;
  color: rgba(250,250,248,0.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.mentoria__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.curso-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,201,122,0.25);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: background 0.25s;
}
.curso-card:hover { background: rgba(255,255,255,0.10); }

.curso-card__icon {
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.curso-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.curso-card__meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.curso-card__desc {
  font-size: 0.88rem;
  color: rgba(250,250,248,0.68);
  line-height: 1.6;
}

/* ============================================================
   GALERIA
============================================================ */
.galeria {
  background: var(--cream);
  padding: 100px 0 80px;
}

.galeria-swiper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.galeria-swiper .swiper-slide {
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}
.galeria-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.galeria__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-peach);
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.galeria__placeholder i { font-size: 2.5rem; }

.galeria__aviso {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--gold-primary) !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos {
  background: var(--bg-peach);
  padding: 100px 0;
}

.depoimentos-swiper { overflow: hidden; padding-bottom: 40px !important; }

.depo-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
}

.depo-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.depo-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depo-card__meta {
  flex: 1;
  min-width: 0;
}

.depo-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.depo-card__badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #1a73e8;
  letter-spacing: 0.03em;
}

.depo-card__stars {
  color: #f5a623;
  font-size: 0.78rem;
  display: flex;
  gap: 2px;
}

.depo-card__google-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: auto;
}

.depo-card__text {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.depoimentos__google-link {
  text-align: center;
  margin-top: 36px;
}

.depoimentos__ver-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid rgba(44,26,14,0.15);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.depoimentos__ver-google:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 12px rgba(66,133,244,0.15);
  background: rgba(66,133,244,0.04);
  color: #1a56c4;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: var(--cream);
  padding: 100px 0;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 40px;
}

.faq__item {
  border-bottom: 1px solid var(--gold-subtle);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold-primary); }
.faq__question i {
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.open .faq__question i { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   CONTATO
============================================================ */
.contato {
  background: linear-gradient(160deg, #3a2208 0%, #1e1006 60%, #2e1a08 100%);
  padding: 100px 0;
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.contato__left { display: flex; flex-direction: column; }

.contato__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__location-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contato__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contato__divider::before,
.contato__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.contato__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contato__form input,
.contato__form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.contato__form input::placeholder { color: rgba(255,255,255,0.4); }
.contato__form select { color: rgba(255,255,255,0.55); cursor: pointer; }
.contato__form select option { background: #2c1a0e; color: var(--white); }
.contato__form input:focus,
.contato__form select:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.11);
}
.contato__form-btn { width: 100%; margin-top: 4px; }

.form-success {
  text-align: center;
  padding: 32px 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-success i { font-size: 2.5rem; color: var(--gold-light); }
.form-success p { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin: 0; }
.form-success span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

@media (max-width: 520px) {
  .contato__form-row { grid-template-columns: 1fr; }
}

.contato__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.contato__info-item i { color: var(--white); margin-top: 3px; font-size: 1rem; }
.contato__info-item a { color: rgba(255,255,255,0.9); font-weight: 700; }
.contato__info-item a:hover { color: var(--white); }

.contato__mapa {
  flex: 1;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.contato__mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* Seções vitrine — cabeçalho centralizado */
.tratamentos > .container > .section-label,
.tratamentos > .container > .section-title,
.tratamentos > .container > .section-sub,
.galeria > .container > .section-label,
.galeria > .container > .section-title,
.galeria > .container > .section-sub,
.depoimentos > .container > .section-label,
.depoimentos > .container > .section-title,
.faq > .container > .section-label,
.faq > .container > .section-title {
  text-align: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text-dark);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.footer__logo img {
  height: 104px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold-light); }

.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250,250,248,0.2);
  border-radius: 50%;
  color: rgba(250,250,248,0.65);
  font-size: 1.2rem;
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250,250,248,0.75);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }

/* Animação de pulso */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   RESPONSIVO — Mobile
============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  /* Navbar mobile */
  .navbar__logo img { height: 72px; }

  .navbar__nav {
    position: fixed;
    top: var(--nav-h); right: 0; left: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 32px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-lg);
    margin-left: 0;
    z-index: 999;
  }
  .navbar__nav.open { transform: translateX(0); }
  .navbar__nav .navbar__link { font-size: 1rem; }

  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero__content { padding-top: calc(var(--nav-h) + 60px); }
  .hero__monogram { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 1.3rem; }

  /* Sobre */
  .sobre { padding: 72px 0 56px; }
  .equipe__grid { grid-template-columns: 1fr; }
  .team-card__photo { height: 300px; }

  /* Tratamentos */
  .tratamentos { padding: 72px 0; }

  /* Mentoria */
  .mentoria { padding: 72px 0; }
  .mentoria__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Galeria */
  .galeria { padding: 72px 0 56px; }
  .galeria-swiper .swiper-slide { height: 260px; }

  /* Depoimentos */
  .depoimentos { padding: 72px 0; }

  /* FAQ */
  .faq { padding: 72px 0; }

  /* Contato */
  .contato { padding: 72px 0; }
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .contato__mapa { min-height: 260px; }
  .contato__mapa iframe { min-height: 260px; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__social { justify-content: center; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .sobre__badges { flex-direction: column; }
  .badge { width: 100%; justify-content: center; }
  .hero__title { font-size: 2.2rem; }
}

/* ============================================================
   Banner LGPD
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p { margin: 0; font-size: 0.875rem; line-height: 1.5; }

.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-banner__decline {
  background: none;
  border: 1px solid #555;
  color: #ccc;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: 2px;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-banner__decline:hover { border-color: #aaa; color: #fff; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn,
  .cookie-banner__decline { flex: 1; text-align: center; }
}
