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

:root {
  --primary:       #A67C7C;
  --primary-dark:  #7d5a5a;
  --primary-light: #c9a5a5;
  --hero-bg:       #f9eded;
  --light-bg:      #FAFAF8;
  --white:         #ffffff;
  --foreground:    #3d2e2e;
  --muted:         #9E9291;
  --warm-gray:     #6F6F6F;
  --border:        #ede5e5;
  --star:          #F59E0B;
  --wa-green:      #25D366;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: var(--foreground);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--foreground);
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,4vw,2.6rem); }
h3 { font-size: 1.35rem; }
p  { max-width: 65ch; line-height: 1.75; }
a  { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { display: block; max-width: 100%; }

.container {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px)  { .container { padding: 0 3rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ─── NOISE ─── */
.bg-noise::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  opacity: .025; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bg-noise { position: relative; }
.bg-noise > * { position: relative; z-index: 1; }

/* ─── DOTTED ─── */
.dotted-sep {
  border: none; height: 1px;
  background-image: radial-gradient(circle, rgba(166,124,124,.3) 1px, transparent 1px);
  background-size: 14px 2px; background-repeat: repeat-x;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .95rem;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
}
.btn-primary { background: var(--primary-dark); color: #fff; }
.btn-primary:hover { background: var(--foreground); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(125,90,90,.3); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-wa { background: var(--primary-dark); color: #fff; }
.btn-wa:hover { background: var(--foreground); color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar { background: rgba(252,239,235,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: background 0.3s ease, box-shadow 0.3s ease; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(166,124,124,.1); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

/* Logo */
.navbar-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: .02em;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

.navbar-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.navbar-links a { font-size: .875rem; font-weight: 400; color: var(--warm-gray); transition: color .2s; }
.navbar-links a:hover { color: var(--primary); }
.navbar-cta { margin-left: .5rem; }

.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.navbar-toggle span { display: block; width: 22px; height: 1.5px; background: var(--foreground); margin: 5px 0; transition: all .3s; }

@media (max-width: 920px) {
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
  }
  .navbar-links.open li { width: 100%; }
  .navbar-links.open a { display: block; padding: .65rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .navbar-toggle { display: block; }
  .navbar-cta { display: none; }
}

/* ════════════════════════════════════
   HERO (centrado)
════════════════════════════════════ */
.hero-section {
  position: relative;
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(72px + 4rem) 2rem 5rem;
}
.hero-floral {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--primary-dark);
  margin-bottom: .6rem;
  font-weight: 700;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem; color: var(--warm-gray); max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ════════════════════════════════════
   SOBRE
════════════════════════════════════ */
.sobre-section {
  background: var(--white);
  padding: 6rem 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.sobre-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--hero-bg);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.sobre-photo-placeholder {
  font-size: 4rem; opacity: .3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.sobre-photo-placeholder span { font-family: 'Inter', sans-serif; font-size: .75rem; color: var(--muted); }

.sobre-content h2 { color: var(--foreground); margin-bottom: .5rem; }
.sobre-crp { font-size: .85rem; font-weight: 500; color: var(--primary); letter-spacing: .04em; margin-bottom: 1.75rem; }
.sobre-bio { font-size: .97rem; color: var(--warm-gray); line-height: 1.85; margin-bottom: 1.25rem; max-width: 100%; }

.formacao { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.formacao-item strong {
  display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: .15rem;
}
.formacao-item span { font-size: .9rem; color: var(--warm-gray); }

@media (max-width: 768px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-photo { max-width: 320px; margin: 0 auto; }
}

/* ════════════════════════════════════
   SEÇÃO TAG / HEADER
════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(166,124,124,.1);
  color: var(--primary); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { color: var(--foreground); margin-bottom: .75rem; }
.section-subtitle { color: var(--warm-gray); font-size: .97rem; max-width: 520px; margin: 0 auto; }

/* ════════════════════════════════════
   ÁREAS
════════════════════════════════════ */

.areas-section {
  background: var(--light-bg, #FAFAF8);
  padding: 5rem 0;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  margin: 0 auto;
  gap: 0;
}
.area-item {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: none;
  border: none;
  box-shadow: none;
}
.areas-grid > .area-item:nth-child(odd) {
  padding-right: 3.5rem;
  border-right: 1.5px dashed rgba(172,119,120,0.3);
}
.areas-grid > .area-item:nth-child(even) {
  padding-left: 3.5rem;
}
.area-item + .area-item {
  border-top: 1.5px dashed rgba(172,119,120,0.3);
}
.area-item.full {
  grid-column: 1 / -1;
  max-width: 50%;
  border-right: none !important;
  padding-right: 0 !important;
}
.area-icon {
  color: var(--primary);
  opacity: 0.75;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-bottom: 0.25rem;
}
.area-body h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 0.4rem;
}
.area-body p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(55,35,35,0.72);
  margin: 0;
}

@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-item:nth-child(odd) { border-right: none; }
  .area-item { border-bottom: 1px solid var(--border) !important; }
  .area-item:last-child { border-bottom: none !important; }
}

/* ════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════ */
.funciona-section { padding: 6rem 0; background: #fff; }
.funciona-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.funciona-card {
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.funciona-card:hover { box-shadow: 0 8px 28px rgba(166,124,124,.1); transform: translateY(-2px); }
.funciona-icon {
  width: 48px; height: 48px; border-radius: 1rem;
  background: rgba(166,124,124,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.funciona-card h3 { font-size: 1.05rem; margin-bottom: .6rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.funciona-card p { font-size: .875rem; color: var(--warm-gray); line-height: 1.75; margin: 0; max-width: 100%; }
.funciona-list { list-style: none; margin-top: .65rem; display: flex; flex-direction: column; gap: .3rem; }
.funciona-list li { font-size: .855rem; color: var(--warm-gray); }
.funciona-list li::before { content: "◆ "; color: var(--primary); font-size: .6rem; }

@media (max-width: 768px) { .funciona-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   BLOG / ARTIGOS
════════════════════════════════════ */
.blog-section { padding: 6rem 0; background: var(--light-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.5rem; }
.article-card {
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s; text-decoration: none; color: inherit;
}
.article-card:hover { box-shadow: 0 8px 28px rgba(166,124,124,.1); transform: translateY(-3px); color: inherit; }
.article-card-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(166,124,124,.18), rgba(166,124,124,.06));
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img-placeholder { font-size: 2.5rem; opacity: .3; }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-date { font-size: .72rem; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.article-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .55rem; color: var(--foreground); line-height: 1.35; }
.article-card-excerpt { font-size: .875rem; color: var(--warm-gray); line-height: 1.65; flex: 1; margin: 0; max-width: 100%; }
.article-card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-size: .85rem; font-weight: 500; color: var(--primary); }
.article-card-link:hover { gap: .65rem; color: var(--primary-dark); }
.blog-more { text-align: center; margin-top: 3rem; }

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-section { padding: 6rem 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.25rem; }
.review-card {
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.5rem;
}
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(166,124,124,.18);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--primary); font-size: .85rem;
}
.review-name { font-weight: 500; font-size: .875rem; color: var(--foreground); }
.review-stars { color: var(--star); font-size: .8rem; margin-top: 1px; }
.review-text { font-size: .86rem; color: var(--warm-gray); line-height: 1.7; margin: 0; max-width: 100%; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-section { padding: 6rem 0; background: var(--light-bg); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
  color: var(--foreground); text-align: left; gap: 1rem; transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; transition: transform .3s; font-weight: 300; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; font-size: .93rem; color: var(--warm-gray); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.25rem; }

/* ════════════════════════════════════
   CONTATO
════════════════════════════════════ */
.contato-section { padding: 6rem 0; background: #fff; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contato-cards { display: flex; flex-direction: column; gap: 1rem; }
.contato-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: .875rem; padding: 1.2rem 1.5rem;
}
.contato-card-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contato-card-body small { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); font-weight: 600; margin-bottom: .2rem; }
.contato-card-body strong { display: block; font-weight: 500; font-size: .92rem; color: var(--foreground); }
.contato-card-body span, .contato-card-body a { font-size: .85rem; color: var(--warm-gray); }
.contato-map { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--border); height: 400px; }
.contato-map iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 768px) { .contato-grid { grid-template-columns: 1fr; } .contato-map { height: 280px; } }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: #2a1f1f; color: rgba(255,255,255,.55); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 1.75rem;
}
.footer-brand .logo-f { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: .25rem; }
.footer-brand .crp-f { font-size: .75rem; letter-spacing: .08em; margin-bottom: .85rem; }
.footer-brand p { font-size: .84rem; line-height: 1.75; max-width: 100%; }
.footer-col h5 { color: rgba(255,255,255,.75); font-family: 'Inter', sans-serif; font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--primary-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; margin: 0; max-width: 100%; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); text-decoration: none; transition: background .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; font-size: 1.6rem; color: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .2s;
}
.wa-float.visible { opacity: 1; pointer-events: auto; }
.wa-float:hover { background: #20BD5A; transform: scale(1.08); color: #fff; }
.wa-dot {
  position: absolute; top: 6px; right: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444; border: 2px solid #fff;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ════════════════════════════════════
   ARTICLE DETAIL
════════════════════════════════════ */
.article-hero { background: var(--hero-bg); padding: calc(72px + 3.5rem) 0 3rem; }
.article-meta { font-size: .75rem; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.article-meta span { color: var(--warm-gray); font-weight: 300; text-transform: none; letter-spacing: 0; }
.article-hero h1 { max-width: 700px; color: var(--primary-dark); }
.article-hero .summary { font-size: 1.05rem; color: var(--warm-gray); max-width: 620px; line-height: 1.75; margin-top: 1rem; }

.article-featured-img { max-width: 780px; margin: 2.5rem auto 0; padding: 0 2rem; }
.article-featured-img img { width: 100%; border-radius: 1.25rem; box-shadow: 0 8px 30px rgba(0,0,0,.08); }

.article-body { max-width: 700px; margin: 3rem auto 5rem; padding: 0 2rem; }
.article-content { font-size: 1.02rem; line-height: 1.9; color: var(--foreground); }
.article-content p { margin-bottom: 1.4rem; max-width: 100%; }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content span[style] { color: inherit !important; }
.article-back { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; color: var(--primary); margin-bottom: 2.5rem; }
.article-back:hover { color: var(--primary-dark); }

/* ════════════════════════════════════
   PAGE HERO (blog/faq)
════════════════════════════════════ */
.page-hero { background: var(--hero-bg); padding: calc(72px + 3rem) 0 3rem; text-align: center; }
.page-hero h1 { color: var(--primary-dark); margin-bottom: .75rem; }
.page-hero p { color: var(--warm-gray); max-width: 480px; margin: 0 auto; }

/* ── Overrides migração ── */
:root {
  --primary:     #AC7778;
  --primary-dark:#8a5e5f;
  --hero-bg:     #fcefeb;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

body { font-family: var(--font-sans); }

h1, h2, h3, .hero-title, .hero-subtitle { font-family: var(--font-serif); }

/* Header transparente com transição */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

/* Logo img no header */
.logo-img { height: 48px; width: auto; display: block; }

/* Hero */
.hero-section { background-color: var(--hero-bg) !important; }

/* Botões com cor correta */
.btn-primary, .btn-wa {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-primary:hover, .btn-wa:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* Hero logo */
.hero-logo {
  display: block;
  height: 160px;
  width: auto;
  margin: 0 auto 2.5rem;
  object-fit: contain;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}


/* Header translúcido rosado (sobrescreve regra anterior) */
.navbar {
  background: rgba(252, 239, 235, 0.75) !important;
  backdrop-filter: blur(8px);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}

/* ── Header refinado ── */
.navbar {
  background: rgba(252,239,235,0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06) !important;
}

/* Links da navbar — menores e mais delicados */
.navbar-links a {
  font-size: 12.5px !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  color: rgba(80,50,50,0.75) !important;
  position: relative !important;
  transition: color 0.2s ease !important;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.navbar-links a:hover {
  color: var(--primary-dark) !important;
  font-weight: 500 !important;
}
.navbar-links a:hover::after { transform: scaleX(1); }

/* Botão CTA da navbar — menor e mais delicado */
.navbar-cta {
  font-size: 12.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(172,119,120,0.25) !important;
  transition: background 0.2s ease, box-shadow 0.2s ease !important;
}
.navbar-cta:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(172,119,120,0.35) !important;
}

/* ── Hero cabe na viewport ── */
.hero-section {
  padding-top: calc(72px + 2.5rem) !important;
  padding-bottom: 2.5rem !important;
  min-height: 100svh !important;
  justify-content: center !important;
}
.hero-logo {
  height: 110px !important;
  margin-bottom: 1.2rem !important;
}
.hero-title    { margin-bottom: 0.5rem !important; }
.hero-subtitle { margin-bottom: 0.8rem !important; }
.hero-desc     { margin-bottom: 1.8rem !important; }


/* ── Sobre: ajustes cirúrgicos ── */
.sobre-content h2 {
  font-family: var(--font-serif) !important;
  font-size: 1.45rem !important;
  font-weight: 400 !important;
  color: var(--primary) !important;
  white-space: nowrap !important;
  margin-bottom: 0.3rem !important;
}
.sobre-crp {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 0.9rem !important;
  color: var(--primary) !important;
}
.sobre-bio {
  font-size: 0.85rem !important;
  line-height: 1.9 !important;
}
.formacao-item strong {
  color: var(--primary) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.07em !important;
}



/* ── Áreas: layout 3+2 colunas ── */
.areas-title {
  color: var(--primary) !important;
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
}
.areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.areas-col-left {
  border-right: 1.5px dashed rgba(172,119,120,0.3);
  padding-right: 3.5rem;
}
.areas-col-right {
  padding-left: 3.5rem;
  padding-top: 2.5rem;
}
.areas-col-left .area-item + .area-item,
.areas-col-right .area-item + .area-item {
  border-top: 1.5px dashed rgba(172,119,120,0.3);
}

/* ── Como Funciona: layout 2 colunas limpo ── */
.funciona-section { background: #fff; }
.funciona-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.funciona-col-left {
  border-right: 1.5px dashed rgba(172,119,120,0.3);
  padding-right: 3.5rem;
}
.funciona-col-right {
  padding-left: 3.5rem;
  display: flex;
  align-items: center;
}
.funciona-item {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 2.5rem 0 !important;
}
.funciona-sep {
  border-top: 1.5px dashed rgba(172,119,120,0.3) !important;
}
.funciona-icon {
  color: var(--primary) !important;
  opacity: 0.78;
  margin-bottom: 0.75rem;
}
.funciona-card h3, .funciona-item h3 {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  color: var(--primary) !important;
  margin-bottom: 0.5rem !important;
}
.funciona-card p, .funciona-item p,
.funciona-list li {
  font-size: 0.82rem !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: rgba(55,35,35,0.72) !important;
}
.funciona-list li::before {
  content: "◆" !important;
  color: var(--primary) !important;
  font-size: 0.55rem !important;
}

/* Títulos de seção padronizados */
.section-title, .areas-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 400 !important;
  color: var(--primary) !important;
  letter-spacing: -0.01em !important;
}

/* Placeholder imagem quebrada */
.img-error { background: #f5eded; }
.img-error img { opacity: 0; }

/* ── Reviews ── */
.reviews-rating {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1rem; justify-content: flex-end;
}
.reviews-score { font-size: 2rem; font-weight: 300; color: #222; }
.reviews-stars { color: #f4b400; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-total { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(60,40,40,0.5); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.review-card {
  background: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.review-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.review-photo {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
}
.review-initial {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(172,119,120,0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 500;
}
.review-author strong { font-size: 0.85rem; font-weight: 500; color: #333; }
.review-stars { color: #f4b400; font-size: 0.8rem; letter-spacing: 1px; }
.review-text {
  font-size: 0.8rem; font-weight: 300; line-height: 1.85;
  color: rgba(55,35,35,0.72); margin: 0;
}

/* ── Contato: sem cards ── */
.contato-item, .contact-item, .contato-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(172,119,120,0.12) !important;
}
.contato-item:last-child, .contact-item:last-child, .contato-card:last-child {
  border-bottom: none !important;
}
.contato-label, .contact-label {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--primary) !important;
  font-weight: 500 !important;
  margin-bottom: 0.2rem !important;
}

/* Ícone contato menor e sem fundo */
.contato-card-icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.contato-card-body strong, .contato-card-body .contato-label {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--primary) !important;
  font-weight: 500 !important;
}
.contato-card-body p, .contato-card-body a {
  font-size: 0.88rem !important;
  font-weight: 300 !important;
  color: rgba(55,35,35,0.75) !important;
}

/* ── FAQ limpo ── */
.faq-section { background: var(--light-bg, #FAFAF8) !important; }
.faq-list, .faq-wrapper, .faq-container {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  max-width: 740px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}
.faq-item {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(172,119,120,0.18) !important;
}
.faq-item:first-child { border-top: 1px solid rgba(172,119,120,0.18) !important; }
.faq-question {
  padding: 1.25rem 0 !important;
  font-family: var(--font-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: rgba(55,35,35,0.85) !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  gap: 1rem !important;
}
.faq-toggle {
  font-size: 1.3rem !important;
  font-weight: 300 !important;
  color: rgba(172,119,120,0.6) !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}
.faq-item.open .faq-toggle { transform: rotate(45deg) !important; }
.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  color: rgba(55,35,35,0.65) !important;
  transition: max-height .35s ease, padding .35s ease !important;
}
.faq-item.open .faq-answer {
  max-height: 600px !important;
  padding: 0 0 1.25rem !important;
}

/* Logo hero maior */
.hero-logo {
  height: 160px !important;
  margin-bottom: 2rem !important;
}

/* Hero title mais refinado */
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}

/* Animação de entrada na hero (load, não scroll) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo    { animation: fadeUp 0.9s ease both; animation-delay: 0.1s; }
.hero-title   { animation: fadeUp 0.9s ease both; animation-delay: 0.25s; }
.hero-subtitle{ animation: fadeUp 0.9s ease both; animation-delay: 0.4s; }
.hero-desc    { animation: fadeUp 0.9s ease both; animation-delay: 0.5s; }
.hero-cta-wrap{ animation: fadeUp 0.9s ease both; animation-delay: 0.65s; }

/* ── Footer reescrito ── */
.footer {
  background: #f7f3f0 !important;
  border-top: 1px solid rgba(172,119,120,0.12);
  padding: 4rem 0 0;
  color: rgba(55,35,35,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer-logo img { height: 64px; width: auto; margin-bottom: 1rem; display: block; }
.footer-bio { font-size: 0.78rem; font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.footer-name { font-size: 0.82rem; font-weight: 500; color: rgba(55,35,35,0.85); }
.footer-crp  { font-size: 0.75rem; font-weight: 300; color: rgba(55,35,35,0.5); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(55,35,35,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(55,35,35,0.65);
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(172,119,120,0.12);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(55,35,35,0.45);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Footer: texto visível ── */
.footer-links a {
  color: rgba(55,35,35,0.75) !important;
}
.footer-contact li {
  color: rgba(55,35,35,0.75) !important;
}
.footer-contact a {
  color: rgba(55,35,35,0.75) !important;
}
.footer-contact svg {
  opacity: 0.5 !important;
  color: var(--primary) !important;
}
.footer-bio,
.footer-crp {
  color: rgba(55,35,35,0.6) !important;
}
.footer-name {
  color: rgba(55,35,35,0.85) !important;
}
.footer-bottom {
  color: rgba(55,35,35,0.5) !important;
}

/* Contato: sem uppercase, ícone menor e alinhado */
.contato-label, .contato-card-body strong {
  text-transform: none !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: var(--primary) !important;
}
.contato-card-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 1.5 !important;
}

/* Navbar: links empurrados para a direita, próximos ao CTA */
.navbar-inner {
  display: flex !important;
  align-items: center !important;
}
.navbar-links {
  margin-left: auto !important;
  margin-right: 1.5rem !important;
}
.navbar-cta {
  flex-shrink: 0 !important;
}
.navbar-logo {
  margin-right: 0 !important;
  flex-shrink: 0 !important;
}
