/* ============================================================
   STUDIO ESSÊNCIA D — style.css
   Paleta: champagne · marfim · verde sálvia · dourado sutil
   Tipografia: Cormorant Garamond (serif) + Jost (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --cream:      #FAF7F2;
  --ivory:      #F5EFE4;
  --champagne:  #EDE0C8;
  --sand:       #D9CAAD;
  --gold:       #B89A5A;
  --gold-light: #D4B57A;
  --sage:       #7D9B7A;
  --sage-light: #9FB89C;
  --sage-dark:  #5A7857;
  --taupe:      #8C7B6B;
  --warm-dark:  #3D332A;
  --text:       #4A3F35;
  --text-light: #7A6E64;
  --white:      #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-xl:  60px;

  --shadow-soft: 0 4px 30px rgba(61,51,42,.08);
  --shadow-card: 0 8px 40px rgba(61,51,42,.12);

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── TIPOGRAFIA ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--warm-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 500; }

p  { font-family: var(--font-sans); font-weight: 300; font-size: 1rem; color: var(--text-light); }

.serif-italic { font-style: italic; }

/* ─── UTILITÁRIOS ───────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--text-light);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* Divisor ornamental */
.ornament {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.ornament span {
  font-size: 1rem;
  color: var(--gold);
}

/* ─── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,120,87,.28);
}

.btn-outline {
  background: transparent;
  color: var(--warm-dark);
  border: 1.5px solid var(--sand);
}
.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,154,90,.35);
}

.btn-whats {
  background: #25D366;
  color: var(--white);
}
.btn-whats:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── PLACEHOLDER DE IMAGEM ─────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--ivory) 60%, var(--sand) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--taupe);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.5) 0%, transparent 60%);
}

.img-placeholder svg {
  width: 38px;
  height: 38px;
  opacity: .35;
}

/* ─── NAV ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,51,42,.07);
  padding: .75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* Logo completo no navbar */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Ocultar texto antigo se ainda existir */
.nav-logo-text { display: none; }

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-dark);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: .65rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--warm-dark);
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream) 0%, var(--ivory) 55%, var(--champagne) 100%);
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-decor::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(125,155,122,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg-decor::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(184,154,90,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  padding: 8rem 5% 5rem;
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease both;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-tagline::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title .line-normal {
  display: block;
  line-height: 1.15;
  margin: 0;
  padding: 0;
}

.hero-title .line-italic {
  display: block;
  font-style: italic;
  color: var(--gold);
  line-height: 1.15;
  margin: 0;
  padding: 0;
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
}

.hero-badge strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--warm-dark);
  line-height: 1;
}

.hero-badge span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Divisor vertical entre badges */
.hero-badges .divider-v {
  width: 1px;
  background: var(--sand);
  align-self: stretch;
}

.hero-image {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 5% 5rem 2%;
  z-index: 2;
  animation: fadeIn 1s ease .3s both;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 72vh;
  max-height: 680px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50% / var(--radius-lg) var(--radius-lg) 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-img-main .img-placeholder,
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Card flutuante */
.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: float 4s ease-in-out infinite;
}

.hero-float-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 20px; height: 20px;
  color: var(--white);
}

.hero-float-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--warm-dark);
}

.hero-float-text span {
  font-size: .72rem;
  color: var(--text-light);
}

/* Pétala decorativa */
.hero-petal {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--champagne), var(--sand));
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  opacity: .55;
  z-index: -1;
}

/* ─── SOBRE ─────────────────────────────────────────────── */
#sobre {
  padding: 7rem 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.sobre-img-main .img-placeholder,
.sobre-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--white);
}

.sobre-img-accent .img-placeholder,
.sobre-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-content {}

.sobre-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sobre-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(184,154,90,.12);
}

.sobre-value-item:last-child {
  border-bottom: none;
}

/* Marcador editorial: barra dourada vertical */
.sobre-value-marker {
  width: 3px;
  min-height: 44px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ocultar classe antiga se ainda existir */
.sobre-value-icon { display: none; }

.sobre-value-item p {
  font-size: .95rem;
}

/* ─── ESPECIALIDADES ────────────────────────────────────── */
#especialidades {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.espec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.espec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.espec-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.espec-img .img-placeholder,
.espec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.espec-card:hover .espec-img img,
.espec-card:hover .espec-img .img-placeholder {
  transform: scale(1.04);
}

.espec-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.espec-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.espec-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--champagne), var(--ivory));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.espec-icon svg {
  width: 22px; height: 22px;
  color: var(--sage-dark);
}

.espec-body h3 {
  margin-bottom: .8rem;
}

.espec-body p {
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.8rem;
}

/* ─── PROFISSIONAIS ─────────────────────────────────────── */
#profissionais {
  padding: 7rem 0;
  background: var(--white);
}

.profissionais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.prof-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}

.prof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.prof-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.prof-img .img-placeholder,
.prof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .6s ease;
}

.prof-card:hover .prof-img img,
.prof-card:hover .prof-img .img-placeholder {
  transform: scale(1.04);
}

.prof-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,51,42,.3) 0%, transparent 50%);
  pointer-events: none;
}

.prof-body {
  padding: 1.8rem 1.5rem 2rem;
}

.prof-role {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .4rem;
}

.prof-body h3 {
  margin-bottom: .8rem;
  font-size: 1.5rem;
}

.prof-body p {
  font-size: .9rem;
  margin-bottom: 1.5rem;
  min-height: 3.5rem;
}

.prof-links {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.prof-links .btn {
  font-size: .75rem;
  padding: .65rem 1.3rem;
}

/* ─── GALERIA ───────────────────────────────────────────── */
#galeria {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.galeria-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  cursor: pointer;
}

.galeria-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.galeria-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

.galeria-item:first-child .galeria-img {
  min-height: 460px;
}

.galeria-img .img-placeholder,
.galeria-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.galeria-item:hover .galeria-img img,
.galeria-item:hover .galeria-img .img-placeholder {
  transform: scale(1.05);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,51,42,.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-overlay span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}

.galeria-more {
  text-align: center;
  margin-top: 3rem;
}

/* ─── DIFERENCIAIS ──────────────────────────────────────── */
#diferenciais {
  padding: 7rem 0;
  background: var(--warm-dark);
}

/* Título e label da seção em fundo escuro */
#diferenciais .section-label {
  color: var(--sage-light);
}

#diferenciais .section-title {
  color: var(--champagne);
}

#diferenciais .section-sub {
  color: rgba(250,247,242,.55);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,162,74,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dif-card {
  padding: 2.8rem 2.4rem;
  background: transparent;
  border-right: 1px solid rgba(201,162,74,.2);
  border-bottom: 1px solid rgba(201,162,74,.2);
  position: relative;
  transition: background var(--transition);
}

.dif-card:nth-child(3),
.dif-card:nth-child(6) {
  border-right: none;
}

.dif-card:nth-child(4),
.dif-card:nth-child(5),
.dif-card:nth-child(6) {
  border-bottom: none;
}

.dif-card:hover {
  background: rgba(201,162,74,.07);
}

/* Linha dourada topo no hover */
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2.4rem;
  width: 2.5rem; height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.dif-card:hover::before {
  opacity: 1;
}

/* Número ordinal — grande, luminoso, visível */
.dif-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,162,74,.35);
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
  transition: color var(--transition);
}

.dif-card:hover .dif-num {
  color: rgba(201,162,74,.6);
}

.dif-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: var(--champagne);
}

.dif-card p {
  font-size: .92rem;
  color: rgba(250,247,242,.55);
  line-height: 1.75;
}

/* Remover classe antiga */
.dif-icon { display: none; }

/* ─── CONTATO ───────────────────────────────────────────── */
#contato {
  padding: 7rem 0;
  background: linear-gradient(145deg, var(--cream) 0%, var(--ivory) 100%);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-info { }

.contato-info p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contato-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contato-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-detail-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.contato-detail-icon svg {
  width: 18px; height: 18px;
  color: var(--sage);
}

.contato-detail-text strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--warm-dark);
  margin-bottom: .2rem;
}

.contato-detail-text span,
.contato-detail-text a {
  font-size: .95rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.contato-detail-text a:hover { color: var(--sage-dark); }

.contato-whats-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.contato-whats-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.contato-whats-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.contato-whats-item-info { flex: 1; }
.contato-whats-item-info strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--warm-dark);
}
.contato-whats-item-info span {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contato-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  position: relative;
}

.contato-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contato-insta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--champagne), var(--ivory));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.contato-insta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contato-insta svg {
  width: 28px; height: 28px;
  color: var(--warm-dark);
  flex-shrink: 0;
}

.contato-insta-text strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--warm-dark);
}

.contato-insta-text span {
  font-size: .8rem;
  color: var(--text-light);
}

/* ─── FAQ ───────────────────────────────────────────────── */
#faq {
  padding: 7rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--champagne);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sage-dark); }

.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
}

.faq-icon svg {
  width: 14px; height: 14px;
  color: var(--warm-dark);
  transition: color var(--transition);
}

.faq-item.open .faq-icon svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-answer p {
  padding-bottom: 1.6rem;
  font-size: .95rem;
  line-height: 1.9;
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--warm-dark);
  color: rgba(250,247,242,.7);
  padding: 4rem 0 2rem;
}

/* Logo centralizado em destaque, largura fixa */
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0 2.5rem;
}

.footer-logo-wrap img {
  width: 340px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Linha separadora */
.footer-sep {
  height: 1px;
  background: rgba(250,247,242,.1);
  margin-bottom: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-brand p {
  font-size: .88rem;
  color: rgba(250,247,242,.55);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(250,247,242,.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--champagne); }

.footer-col address {
  font-style: normal;
  font-size: .88rem;
  color: rgba(250,247,242,.55);
  line-height: 1.9;
}

.footer-divider {
  height: 1px;
  background: rgba(250,247,242,.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(250,247,242,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(250,247,242,.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--champagne); }

/* ─── BOTÃO FLUTUANTE WHATSAPP ──────────────────────────── */
.whats-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}

.whats-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.whats-float svg {
  width: 28px; height: 28px;
  color: var(--white);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANIMAÇÕES ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,15,10,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ─── RESPONSIVIDADE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-badges .hero-badge strong { font-size: 1.3rem; }
  .especialidades-grid { grid-template-columns: 1fr 1fr; }
  .footer-top          { grid-template-columns: 1fr 1fr; }

  /* Grid diferenciais em 2 colunas */
  .diferenciais-grid   { grid-template-columns: 1fr 1fr; }
  .dif-card:nth-child(3) { border-right: 1px solid rgba(201,162,74,.2); }
  .dif-card:nth-child(6) { border-right: none; }
  .dif-card:nth-child(2n) { border-right: none; }
  .dif-card:nth-child(4),
  .dif-card:nth-child(5) { border-bottom: 1px solid rgba(201,162,74,.2); }
  .dif-card:nth-child(5),
  .dif-card:nth-child(6) { border-bottom: none; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 1.8rem;
    box-shadow: -8px 0 40px rgba(61,51,42,.12);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 7rem 5% 2rem;
    order: 2;
  }

  .hero-image {
    height: 50vh;
    min-height: 360px;
    order: 1;
    padding: 5rem 5% 0;
  }

  .hero-img-frame {
    height: 100%;
    max-height: none;
  }

  .hero-float-card {
    left: 1rem;
    bottom: -1rem;
  }

  /* Grids */
  .sobre-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-accent    { display: none; }
  .especialidades-grid { grid-template-columns: 1fr; }
  .profissionais-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .galeria-grid        { grid-template-columns: 1fr 1fr; }
  .galeria-item:first-child { grid-column: span 2; grid-row: span 1; }
  .galeria-item:first-child .galeria-img { min-height: 250px; }
  .diferenciais-grid   { grid-template-columns: 1fr; }
  /* Em mobile, resetar todas as bordas direitas */
  .dif-card { border-right: none; }
  .dif-card:last-child { border-bottom: none; }
  .dif-card:nth-child(3),
  .dif-card:nth-child(4),
  .dif-card:nth-child(5) { border-bottom: 1px solid rgba(201,162,74,.2); }
  .contato-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top          { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom       { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item:first-child { grid-column: span 1; }
  .hero-badges  { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
