/* ===== Savoir Estética & Massagem — Site Estático ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --gold: #C99A3D;
  --gold-bright: #E5B85C;
  --gold-light: #FFE7A3;
  --gold-deep: #B8862E;
  --dark: #1a1612;
  --black: #0d0b09;
  --gray: #6b6660;
  --gray-light: #f4f1ec;
  --border: #e3ddd2;
  --white: #ffffff;
  --whatsapp: #25D366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: 'Cormorant Garamond', serif; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.text-center { text-align: center; }

.gold { color: var(--gold); }
.label {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep); margin-bottom: 14px;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: transform .16s cubic-bezier(0.23,1,0.32,1), box-shadow .2s, background .2s;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black); box-shadow: 0 8px 24px rgba(184,134,46,.35);
}
.btn-gold:hover { box-shadow: 0 12px 30px rgba(184,134,46,.5); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-wa:hover { filter: brightness(1.05); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 16px 0;
}
.navbar.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 4px 20px rgba(0,0,0,.06); backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 44px; width: 44px; border-radius: 10px; object-fit: cover; }
.nav-brand .nb-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; line-height: 1; color: #fff; }
.nav-brand .nb-sub { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.navbar.scrolled .nb-title { color: var(--dark); }
.navbar.scrolled .nb-sub { color: var(--gray); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s; }
.nav-links a:hover { color: var(--gold-bright); }
.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-deep); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; }
.navbar.scrolled .nav-toggle { color: var(--dark); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(13,11,9,.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-size: 22px; font-family: 'Cormorant Garamond', serif; }
.mobile-menu .close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: #fff; background: none; border: none; cursor: pointer; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,.55), rgba(13,11,9,.78));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 9px 20px; border-radius: 999px; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.92); font-weight: 600;
}
.hero h1 { font-family: 'Playfair Display', serif; line-height: 1.05; margin-bottom: 22px; letter-spacing: -.015em; }
.hero h1 .savoir {
  display: block; font-size: clamp(64px, 12vw, 144px); font-weight: 600;
  background: linear-gradient(135deg, #FFE7A3 0%, #E5B85C 35%, #C99A3D 65%, #B8862E 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(184,134,46,.4));
}
.hero h1 .est { display: block; font-size: clamp(28px, 5vw, 60px); margin-top: 6px; color: rgba(255,255,255,.92); font-weight: 300; letter-spacing: .02em; }
.hero h1 .est i { font-style: italic; font-weight: 400; }
.hero h1 .est .amp { font-weight: 200; opacity: .75; font-style: normal; }
.hero-caption { color: rgba(255,255,255,.6); font-size: 16px; max-width: 600px; margin: 0 auto 6px; font-weight: 300; }
.hero-tagline { color: rgba(255,255,255,.5); font-style: italic; font-size: 15px; margin-bottom: 16px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 36px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hero-dots button { width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; }
.hero-dots button.active { background: var(--gold-bright); width: 26px; }
.hero-stats { display: flex; gap: 44px; justify-content: center; margin-top: 50px; }
.hero-stats .stat .num { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--gold-bright); font-weight: 700; }
.hero-stats .stat .lbl { font-size: 12px; color: rgba(255,255,255,.6); }

/* ===== Sobre ===== */
.about { background: var(--gray-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; line-height: 1.15; margin-bottom: 24px; }
.about h2 i { font-style: italic; color: var(--gold-deep); }
.about p { color: var(--gray); margin-bottom: 18px; }
.diffs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.diff { display: flex; gap: 12px; padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.diff .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(201,154,61,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.diff .dt { font-weight: 600; font-size: 14px; }
.diff .dd { font-size: 12px; color: var(--gray); margin-top: 3px; }
.about-photo { position: relative; display: flex; justify-content: center; }
.about-photo .main { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.18); width: 100%; max-width: 380px; aspect-ratio: 3/4; }
.about-photo .main img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-photo .badge-name { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid rgba(201,154,61,.3); border-radius: 16px; padding: 14px 18px; }
.about-photo .badge-name .n { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.about-photo .badge-name .r { font-size: 12px; color: var(--gray); }
.about-photo .badge-years { position: absolute; top: -16px; left: -16px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--black); border-radius: 16px; padding: 14px 18px; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.about-photo .badge-years .num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; line-height: 1; }
.about-photo .badge-years .t { font-size: 11px; margin-top: 3px; opacity: .85; }
.about-photo .clinic { position: absolute; bottom: -24px; right: -24px; width: 150px; height: 150px; border-radius: 18px; overflow: hidden; border: 4px solid rgba(201,154,61,.5); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.about-photo .clinic img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Serviços ===== */
.services h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; margin-bottom: 14px; }
.services h2 i { font-style: italic; color: var(--gold); }
.services .sub { color: var(--gray); max-width: 600px; margin: 0 auto 36px; }
.filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter { padding: 9px 22px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; font-weight: 500; transition: all .2s; }
.filter.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; transition: transform .2s cubic-bezier(0.23,1,0.32,1), box-shadow .2s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.08); }
.svc-card .tag { display: inline-block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: 4px 12px; border-radius: 999px; background: rgba(201,154,61,.12); color: var(--gold-deep); margin-bottom: 14px; }
.svc-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.svc-card .dur { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; color: var(--gold-deep); font-weight: 500; }
.svc-card .book { margin-top: 18px; width: 100%; justify-content: center; }

/* ===== Galeria ===== */
.gallery { background: var(--gray-light); }
.gallery h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; margin-bottom: 14px; }
.gallery h2 i { font-style: italic; color: var(--gold); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.gal-item { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; position: relative; box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(to top, rgba(13,11,9,.85), transparent); color: #fff; font-size: 13px; font-weight: 500; }

/* ===== Depoimentos ===== */
.testi h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; margin-bottom: 14px; }
.testi h2 i { font-style: italic; color: var(--gold); }
.testi .sub { color: var(--gray); margin-bottom: 40px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--gray-light); border-radius: 22px; padding: 28px; }
.testi-card .stars { color: #f5c518; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-style: italic; color: var(--gray); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.testi-card .name { font-weight: 600; font-size: 15px; }

/* ===== Contato ===== */
.contact { background: var(--gray-light); }
.contact h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; margin-bottom: 14px; }
.contact h2 i { font-style: italic; color: var(--gold); }
.contact .sub { color: var(--gray); max-width: 600px; margin: 0 auto 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px; margin-bottom: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(201,154,61,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.info-row .it { font-weight: 600; font-size: 14px; }
.info-row .iv { color: var(--gray); font-size: 15px; }
.info-row .iv a { color: var(--gold-deep); font-weight: 500; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .closed { color: #c0392b; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: 18px; }
.contact-cta { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; text-align: center; }
.contact-cta h3 { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.contact-cta p { color: var(--gray); margin-bottom: 22px; }

/* ===== Footer ===== */
.footer { background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0; }
.footer img.flogo { height: 70px; width: auto; border-radius: 12px; background: rgba(255,255,255,.05); padding: 8px; margin-bottom: 16px; }
.footer .fdesc { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 18px; }
.footer .socials { display: flex; gap: 12px; }
.footer .socials a { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer .socials a:hover { background: var(--gold); }
.footer h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.footer ul li a:hover { color: var(--gold-bright); }
.footer .fbottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; color: rgba(255,255,255,.5); font-size: 13px; }

/* ===== WhatsApp flutuante ===== */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; align-items: center; gap: 10px; }
.wa-float .bubble { background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.15); font-size: 13px; max-width: 200px; }
.wa-float .bubble .t { font-weight: 600; }
.wa-float .bubble .n { color: var(--gray); }
.wa-float .fab { width: 60px; height: 60px; border-radius: 999px; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s; flex-shrink: 0; }
.wa-float .fab:hover { transform: scale(1.06); }
.wa-float .fab svg { width: 30px; height: 30px; fill: #fff; }

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .svc-grid, .gal-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .svc-grid, .gal-grid, .testi-grid, .diffs, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .about-photo .clinic { display: none; }
  .about-photo .badge-years { display: none; }
  .wa-float .bubble { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
}
