:root {
  --cream: #FBF4F0;
  --cream-2: #F1E2DC;
  --terracotta: #A8746D;
  --terracotta-dark: #7E5650;
  --peach: #D9B8AE;
  --green: #B98277;
  --text: #3A2E2B;
  --text-light: #6E5A55;
  --white: #FFFFFF;
  --radius: 18px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0 0 .5em; color: var(--terracotta-dark); }
p { margin: 0 0 1em; color: var(--text-light); }
a { color: var(--terracotta-dark); text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .5em;
}
.center { text-align: center; }
.eyebrow.center { display: block; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,241,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--terracotta-dark); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--green); }
.logo-mark { height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--text); }
.nav a:hover { color: var(--terracotta-dark); }
.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 30px;
}
.nav-cta:hover { background: var(--terracotta-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--terracotta-dark);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero { padding: 40px 0 40px; }
.hero-inner { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1.2; }
.hero-sub { font-size: 1.1rem; }
.hero h1 { font-size: 2.6rem; line-height: 1.2; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-photo { flex: 1; }
.hero-photo-frame {
  background: var(--peach);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 75%;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost { border: 2px solid var(--terracotta); color: var(--terracotta-dark); }
.btn-ghost:hover { background: var(--terracotta); color: var(--white); }

.link-arrow { font-weight: 600; }

/* Placeholder image tags */
.placeholder-tag {
  font-size: .8rem;
  color: var(--text-light);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px dashed var(--terracotta);
}

/* Sobre */
.sobre { background: var(--white); }
.sobre-inner { display: flex; align-items: center; gap: 50px; }
.sobre-photo {
  flex: 1; background: var(--cream-2); border-radius: var(--radius);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sobre-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.sobre-text { flex: 1.3; }

/* Servicos */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(192,118,76,0.08);
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; }
a.card { display: block; }
.card-link { font-weight: 600; color: var(--terracotta-dark); font-size: .9rem; }

/* Clube */
.clube { background: var(--peach); }
.clube-inner { display: flex; align-items: center; gap: 50px; }
.clube-inner > div:first-child { flex: 1.2; }
.clube-photo {
  flex: 1; background: rgba(255,255,255,.5); border-radius: var(--radius);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.clube-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.clube h2, .clube .eyebrow { color: var(--terracotta-dark); }

/* Consultorio */
.consultorio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 40px auto 0;
  gap: 24px;
  align-items: stretch;
}
.endereco-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--cream-2);
}
.endereco-img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin: 0 auto 16px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.mapa-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--cream-2);
}
.mapa-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* Blog */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.blog-card {
  background: var(--cream-2); border-radius: var(--radius);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}

.instagram-embed {
  width: 100%;
  max-width: 765px;
  margin: 40px auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.instagram-embed iframe {
  width: 100%;
  height: 255px;
  display: block;
  border: none;
}

/* Contato */
.contato-inner { display: flex; gap: 60px; align-items: flex-start; }
.contato-inner > div:first-child { flex: 1; }
.contato-lista { list-style: none; padding: 0; margin: 0 0 24px; }
.contato-lista li { margin-bottom: 10px; color: var(--text-light); }
.contato-lista a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 500;
  transition: color .2s ease;
}
.contato-lista a:hover { color: var(--terracotta-dark); }
.contato-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--terracotta); }
.contato-form { flex: 1; background: var(--white); padding: 32px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; box-shadow: 0 6px 20px rgba(192,118,76,0.08); }
.contato-form label { font-weight: 600; font-size: .9rem; display: flex; flex-direction: column; gap: 6px; }
.contato-form input, .contato-form textarea {
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--cream-2);
  font-family: var(--font-body); font-size: .95rem;
}
.contato-form input:focus, .contato-form textarea:focus { outline: 2px solid var(--terracotta); }
.hp-field { position: absolute; left: -9999px; }

/* Footer */
.site-footer { background: var(--terracotta-dark); color: var(--white); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-inner p { color: rgba(255,255,255,.85); margin: 0; font-size: .9rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { color: var(--white); font-size: .9rem; }
.footer-social a:hover { color: var(--peach); }

/* Responsive */
@media (max-width: 880px) {
  .hero-inner, .sobre-inner, .clube-inner, .contato-inner { flex-direction: column; }
  .cards-grid, .consultorio-grid, .blog-grid { grid-template-columns: 1fr; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; gap: 18px; display: none; border-bottom: 1px solid var(--cream-2); box-shadow: 0 12px 20px rgba(0,0,0,0.06); }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 400px) {
  .header-inner { padding: 14px 16px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo-mark { height: 30px; }
}
