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

:root {
  --creme: #FDF8F4;
  --blush: #F9E8E8;
  --rosa-bebe: #F5C6C6;
  --rosa-medio: #E8A4A4;
  --rose: #C97B7B;
  --ouro: #C9A96E;
  --ouro-claro: #DBC2A0;
  --taupe: #9E8B80;
  --obsidiana: #1E1714;
  --champagne: #F7EEE3;
  --card: #FCF3F3;
  --texto: #1E1714;
  --display: 'Cormorant Garamond', Georgia, serif;
  --corpo: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--corpo);
  font-weight: 300;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow + divider, used across sections */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--ouro);
  font-weight: 500;
  text-align: center;
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--ouro);
  margin: 16px auto 20px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--obsidiana);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--taupe);
  font-size: 0.98rem;
}

section { padding: 96px 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ouro-claro);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--obsidiana);
}

.brand-text small {
  display: block;
  font-family: var(--corpo);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--rose); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--rose);
  color: var(--creme);
  box-shadow: 0 6px 18px rgba(201, 123, 123, 0.35);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201, 123, 123, 0.45); }

.btn-outline {
  border: 1px solid var(--ouro);
  color: var(--obsidiana);
}

.btn-outline:hover { background: var(--champagne); }

/* ---------- Hero ---------- */
.hero {
  padding-top: 110px;
  padding-bottom: 8px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--creme) 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-style: italic;
  line-height: 1.15;
  margin: 18px 0 22px;
}

.hero-text { text-align: left; }
.hero-text .eyebrow, .hero-text .divider { text-align: left; margin-left: 0; }

.hero p.lead {
  color: var(--taupe);
  font-size: 1.02rem;
  max-width: 460px;
  margin: 0 auto 32px;
  text-align: center;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ouro-claro);
  box-shadow: 0 24px 48px rgba(158, 139, 128, 0.25);
  aspect-ratio: 4 / 5;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--taupe);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---------- Serviços ---------- */
.servicos { background: var(--creme); padding-top: 56px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--ouro-claro);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--ouro);
}

.card h3 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 12px;
}

.card p {
  color: var(--taupe);
  font-size: 0.92rem;
}

/* ---------- Sobre ---------- */
.sobre { background: var(--blush); padding: 64px 24px 96px; }

.sobre-banner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  max-height: 620px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--ouro-claro);
}

.sobre-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.sobre-text {
  max-width: 640px;
  text-align: center;
  padding-top: 56px;
}

.sobre-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-style: italic; margin-bottom: 18px; }
.sobre-text p { color: var(--taupe); margin-bottom: 14px; font-size: 0.98rem; }
.sobre-text .crm { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--ouro); margin-top: 20px; }

/* ---------- Antes e depois (placeholder) ---------- */
.resultados { background: var(--creme); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery .placeholder {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px dashed var(--ouro-claro);
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

/* ---------- Antes/Depois slider ---------- */
.ba-grid {
  display: flex;
  justify-content: center;
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 960 / 840;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ouro-claro);
  box-shadow: 0 20px 44px rgba(158, 139, 128, 0.22);
  user-select: none;
  cursor: ew-resize;
}

.ba-slider-after,
.ba-slider-before {
  position: absolute;
  inset: 0;
}

.ba-slider-after img,
.ba-slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider-before {
  width: 50%;
  overflow: hidden;
}

.ba-slider-before img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--creme);
  box-shadow: 0 0 0 1px rgba(30, 23, 20, 0.15);
  transform: translateX(-50%);
}

.ba-slider-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--creme);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(30, 23, 20, 0.25);
}

.ba-slider-btn svg { width: 20px; height: 20px; }

.ba-tag {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(30, 23, 20, 0.55);
  color: var(--creme);
  pointer-events: none;
}

.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--obsidiana);
  color: var(--champagne);
  text-align: center;
}

.cta-final .eyebrow { color: var(--ouro-claro); }
.cta-final h2 { color: var(--champagne); font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-final p { color: var(--taupe); max-width: 480px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
footer {
  background: var(--champagne);
  padding: 56px 0 32px;
  border-top: 1px solid var(--ouro-claro);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--taupe);
  font-size: 0.88rem;
}

.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: var(--rose); }
.footer-contact svg { width: 16px; height: 16px; }

.footer-note {
  font-size: 0.75rem;
  color: var(--taupe);
  opacity: 0.8;
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease;
}

.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .hero-text .eyebrow, .hero-text .divider { text-align: center; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .sobre-banner { aspect-ratio: 4 / 3; }
  section { padding: 72px 0; }
}
