/* Tipografia e cores */
:root {
  --bg: #fde1b0;
  --bg-alt: rgba(255, 178, 128, 0.15);
  --text: #3d1b09;
  --muted: #d1907c;
  --accent: #c74d4a;
  --accent-dark: #d1907c;
  --white: #ffffff;
  --bs-primary: #c74d4a;
  --bs-secondary: #567b56;
  --bs-success: #567b56;
  --bs-danger: #c74d4a;
  --bs-warning: #ffb280;
  --bs-info: #9db194;
  --bs-light: #fde1b0;
  --bs-dark: #3d1b09;
  --bs-link-color: #c74d4a;
  --bs-body-bg: #fde1b0;
  --bs-body-color: #3d1b09;
  --bs-border-color: rgba(61, 27, 9, 0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--text); }
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; margin: 0 0 0.75rem; }
h3 { font-size: 1.2rem; margin: 0.5rem 0; }
p { margin: 0.5rem 0 1rem; }

/* Containers */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; }
.navbar-brand img { height: 90px; width: auto; display: block; }

/* Hero */
.hero { background: #000; }
.hero-video { position: relative; overflow: hidden; }
.hero-video .video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video .overlay { position: relative; z-index: 1; min-height: 60vh; display: flex; align-items: center; }
.hero-video .overlay .carousel-caption { color: var(--white); }
.hero-video .overlay .carousel-caption h1,
.hero-video .overlay .carousel-caption p { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.rating { color: var(--muted); font-weight: 700; }
.carousel-caption { background: rgba(61, 27, 9, 0.6); backdrop-filter: saturate(120%) blur(2px); border-radius: 12px; padding: 1rem 1.25rem; }

/* Sections */
.section { padding: 2rem 0; }
.section-alt { background: var(--bg-alt); }
.highlight { color: var(--muted); font-weight: 600; }

.image-stack { display: grid; gap: 0.75rem; }
.image-stack img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }

/* Destaque da profissional */
.profile-highlight { position: relative; background: var(--white); border-radius: 16px; padding: 0.5rem; border: 2px solid var(--accent); box-shadow: 0 10px 24px rgba(61,27,9,0.12); }
.profile-photo { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; }
.profile-tag { position: absolute; left: 0.75rem; bottom: 0.75rem; background: var(--accent); color: var(--white); padding: 0.4rem 0.6rem; border-radius: 12px; display: grid; line-height: 1.2; gap: 2px; box-shadow: 0 6px 12px rgba(199,77,74,0.35); }
.profile-tag span { font-size: 0.85rem; opacity: 0.95; }

/* Cards de tratamentos */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { background: var(--white); border-radius: 12px; padding: 1rem; border: 1px solid #eadfd4; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.card img { width: 100%; height: 200px; object-fit: cover; object-position: center; }
.card ul { padding-left: 1rem; margin: 0.5rem 0 0.75rem; }
.list-group-item { background: var(--white); border-color: var(--bs-border-color); }
.card .btn-link { color: var(--accent); text-decoration: none; font-weight: 700; }
.card .btn-link:hover { text-decoration: underline; }

/* Resultados */
.quotes { display: grid; gap: 0.75rem; }
.quotes blockquote { margin: 0; padding: 0.75rem 1rem; background: var(--white); border-left: 4px solid var(--accent); border-radius: 8px; font-style: italic; }
.rating-big { font-weight: 800; color: var(--accent-dark); margin-top: 0.75rem; }

/* Benefícios */
.beneficios { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.educativo { color: var(--muted); }

/* Blog */
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.blog-list article { background: var(--white); border: 1px solid #eadfd4; border-radius: 12px; padding: 1rem; }

/* Formulário / Agende */
.form { display: grid; gap: 0.75rem; }
.form label { display: grid; gap: 0.25rem; font-weight: 700; }
.form input, .form select { border: 1px solid var(--bs-border-color); border-radius: 8px; padding: 0.5rem 0.6rem; font-size: 1rem; }
.address { margin-top: 1rem; color: var(--muted); }
.map iframe { width: 100%; height: 300px; border: 0; border-radius: 12px; }

/* Footer */
.site-footer { background: #3d1b09; color: var(--bg); padding: 1.5rem 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1rem; align-items: center; }
.footer-brand img { height: 36px; display: block; margin-bottom: 0.5rem; filter: brightness(0) invert(1); }
.footer-nav a { color: var(--bg); text-decoration: none; margin-right: 0.75rem; }
.footer-nav a:hover { text-decoration: underline; }

/* Botões */
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 999px; }
.btn-primary { background: var(--accent); color: var(--white); padding: 0.6rem 1rem; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline-primary { color: var(--accent); border-color: var(--accent); }
.btn-outline-primary:hover { color: var(--white); background-color: var(--accent); border-color: var(--accent); }

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }
.badge.bg-light { background-color: var(--bg-alt) !important; color: var(--text) !important; }

/* Responsivo */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .blog-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards, .blog-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .navbar-brand img { height: 64px; }
  .image-stack img { height: 200px; }
}