/* ============ PK BEAUTY — tema claro ============ */
:root {
  --bg: #f4e6df;
  --bg-cream: #f1d9cb;
  --bg-dark: #1f1b1b;
  --bg-dark-card: #2a2323;
  --card: #ffffff;
  --ink: #1f1b1b;
  --muted: #6e5b55;
  --line: #e3c4b4;
  --gold: #e85c3b;
  --gold-strong: #d86b52;
  --terracotta: #ba5e4e;
  --gold-soft: rgba(232, 92, 59, 0.14);
  --cream-text: #f4e6df;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.container-narrow { width: min(760px, 92%); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }

.center { text-align: center; }

.section { padding: 5.5rem 0; }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--bg-dark); }
.section-dark h2 { color: var(--cream-text); }
.section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.section-sub { color: var(--muted); max-width: 620px; margin: 0 auto 1rem; }

/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(232, 92, 59, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232, 92, 59, 0.4); background: #ba5e4e; }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.6rem; font-size: 0.9rem; }
.btn-block { width: 100%; text-align: center; }

.link-gold {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(232, 92, 59, 0.45);
  transition: border-color 0.2s, color 0.2s;
}
.link-gold:hover { color: var(--gold-strong); border-color: var(--gold-strong); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(244, 230, 223, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding: 0.65rem 0;
  border-color: var(--line);
  box-shadow: 0 2px 18px rgba(31, 27, 27, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: baseline; gap: 0.45rem; text-decoration: none; }
.nav-monogram {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-name { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.38em; color: var(--ink); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-cta { padding: 0.55rem 1.4rem; font-size: 0.74rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }
.nav-mobile-actions { display: none; align-items: center; gap: 0.8rem; }
.nav-cta-mobile { padding: 0.5rem 1.1rem; font-size: 0.72rem; }

/* ===== Hero ===== */
.hero {
  padding: 9rem 0 4.5rem;
  background: linear-gradient(140deg, var(--gold) 0%, var(--gold-strong) 60%, var(--terracotta) 100%);
}
.hero h1 { color: #ffffff; }
.hero .section-kicker { color: var(--cream-text); }
.hero .hero-sub { color: rgba(255, 255, 255, 0.92); }
.hero .btn-gold { background: #ffffff; color: var(--gold); box-shadow: 0 4px 16px rgba(31, 27, 27, 0.18); }
.hero .btn-gold:hover { background: var(--cream-text); box-shadow: 0 8px 22px rgba(31, 27, 27, 0.25); }
.hero .btn-outline { border-color: rgba(255, 255, 255, 0.85); color: #ffffff; }
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.15); }
.hero .hero-rating { color: rgba(255, 255, 255, 0.88); }
.hero .hero-rating strong { color: #ffffff; }
.hero .stars { color: var(--cream-text); }
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-sub { color: var(--muted); max-width: 480px; margin: 1.3rem 0 2rem; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-rating {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-rating strong { color: var(--ink); }
.stars { color: var(--gold); letter-spacing: 0.18em; }
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(31, 27, 27, 0.18);
}

/* ===== Destaques ===== */
.highlights { background: var(--terracotta); }
.highlights-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0; }
.highlight { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); }
.highlight strong { color: #ffffff; font-weight: 600; }
.highlight-icon { font-size: 1.25rem; }

/* ===== Sobre ===== */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: center; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(31, 27, 27, 0.14);
}
.about-text p { margin-bottom: 1.1rem; color: var(--muted); }
.about-text p strong { color: var(--ink); }
.about-text blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
}
.about-text blockquote cite { display: block; font-family: var(--sans); font-size: 0.78rem; font-style: normal; color: var(--muted); margin-top: 0.5rem; }

/* ===== Serviços (seção escura) ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.service-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(216, 107, 82, 0.2);
  border-radius: 12px;
  padding: 1.9rem 1.6rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(216, 107, 82, 0.55); }
.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-strong);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.55rem; color: var(--cream-text); }
.service-card p { font-size: 0.9rem; color: #cdb6ae; }
.services-note { text-align: center; margin-top: 2.2rem; color: #cdb6ae; font-size: 0.85rem; font-style: italic; }

/* ===== Tabela de valores ===== */
.price-table {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid var(--line);
}
.price-row h4 { font-size: 1.15rem; margin-bottom: 0.1rem; }
.price-row small { color: var(--muted); font-size: 0.82rem; }
.price {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.price-cta {
  display: block;
  text-align: center;
  padding: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.2s;
}
.price-cta:hover { background: var(--gold-soft); }

/* ===== Galeria ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 27, 27, 0.1);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-ph {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #f2c1ab, #e59c81);
  border: 1px dashed rgba(232, 92, 59, 0.55);
  border-radius: 12px;
}
.gallery-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(31, 27, 27, 0.75), transparent);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}

/* ===== Depoimentos ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--ink); flex: 1; }
.testimonial cite { font-style: normal; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }

/* ===== CTA Final ===== */
.cta-final { padding: 5.5rem 0; background: linear-gradient(140deg, var(--terracotta) 0%, var(--gold-strong) 45%, var(--gold) 100%); }
.cta-final h2 { color: #ffffff; }
.cta-final p { color: rgba(255, 255, 255, 0.92); margin: 1rem 0 2.2rem; }
.cta-final .btn-gold { background: #ffffff; color: var(--gold); box-shadow: 0 4px 16px rgba(31, 27, 27, 0.18); }
.cta-final .btn-gold:hover { background: var(--cream-text); box-shadow: 0 8px 22px rgba(31, 27, 27, 0.25); }

/* ===== FAQ ===== */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--gold); font-size: 1.4rem; font-family: var(--sans); font-weight: 400; transition: transform 0.25s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 0.2rem 1.25rem; color: var(--muted); max-width: 640px; }

/* ===== Contato ===== */
#contato .contact-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-list li { color: var(--muted); font-size: 0.95rem; }
.contact-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.contact-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(232, 92, 59, 0.4); }
.contact-list a:hover { color: var(--gold); }
.contact-map { margin-top: 2rem; }
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

/* ===== Formulário de agendamento ===== */
.booking-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem 2rem;
  box-shadow: 0 14px 40px rgba(31, 27, 27, 0.08);
}
.booking-card h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.booking-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.booking-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
  color: var(--ink);
}
.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.booking-card textarea { resize: vertical; }
.booking-card .btn { margin-top: 1.4rem; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); padding: 3rem 0; text-align: center; }
.footer-brand { display: flex; align-items: baseline; justify-content: center; gap: 0.45rem; margin-bottom: 0.7rem; }
.footer .nav-name { color: var(--cream-text); }
.footer p { color: #cdb6ae; font-size: 0.88rem; }
.footer-links { display: flex; justify-content: center; gap: 1.6rem; margin: 1.1rem 0 1.6rem; }
.footer-links a { color: var(--gold-strong); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { border-top: 1px solid rgba(216, 107, 82, 0.25); padding-top: 1.4rem; font-size: 0.75rem; opacity: 0.75; }

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 27, 27, 0.3);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Página de produtos ===== */
.nav-links .nav-active { color: var(--gold); font-weight: 600; }

.page-header {
  padding: 9rem 0 3rem;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.page-header .section-sub { max-width: 560px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(31, 27, 27, 0.1); }
.product-card.in-cart { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(232, 92, 59, 0.25); }
.product-media {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: linear-gradient(160deg, #f6e0d5, #eeccbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card h3 { font-size: 1.35rem; }
.product-desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 0.4rem; }
.product-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.btn-add { padding: 0.55rem 1.3rem; font-size: 0.72rem; }
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  line-height: 1;
}
.qty-stepper button:hover { background: var(--gold-soft); }
.qty-value { min-width: 1.6rem; text-align: center; font-weight: 600; font-size: 0.95rem; }

body.has-cart #produtos { padding-bottom: 10rem; }

.cart-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--ink);
  color: var(--cream-text);
  padding: 0.9rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}
.cart-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cart-summary { display: flex; flex-direction: column; line-height: 1.3; }
.cart-summary strong { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.cart-summary span { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-strong); }

/* ===== Impressão / PDF ===== */
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .navbar, .whatsapp-float { display: none !important; }
  .hero { padding: 4rem 0; }
}

/* ===== Responsivo ===== */
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-mobile-actions { display: flex; }
  .nav-links .nav-cta { display: none; }
  /* backdrop-filter na navbar viraria containing block do menu fixo — usar fundo sólido no mobile */
  .navbar { background: #f4e6df; backdrop-filter: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: #f4e6df;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { font-size: 1.1rem; }
  .nav-toggle { position: relative; z-index: 110; }

  .hero { padding: 7.5rem 0 3.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .about-grid, #contato .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .about-media img { aspect-ratio: 1 / 1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 8rem 0 2.5rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .gallery-label { font-size: 0.9rem; padding: 1.4rem 0.8rem 0.6rem; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; padding: 1.1rem 1.3rem; }
  .price-cta { font-size: 0.72rem; letter-spacing: 0.06em; padding: 1rem 1.2rem; white-space: normal; }
  .highlights-grid { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1.3rem 0; }

  .hero { padding: 6.5rem 0 3rem; }
  .hero-media { max-width: 300px; }
  .hero-sub { font-size: 0.98rem; margin: 1.1rem 0 1.6rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-rating { font-size: 0.84rem; flex-wrap: wrap; }

  .about-media { max-width: 340px; margin: 0 auto; }
  .about-media img { aspect-ratio: 1 / 1; }
  .about-text blockquote { font-size: 1.15rem; }

  .booking-card { padding: 1.8rem 1.3rem; }
  .faq-item summary { font-size: 1.02rem; }
  .contact-map iframe { height: 240px; }
  .footer-links { flex-wrap: wrap; gap: 1.1rem; }
  .btn-lg { width: 100%; padding: 1rem 1.2rem; }

  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .products-grid { grid-template-columns: 1fr; }
  .cart-bar-inner { flex-direction: column; align-items: stretch; gap: 0.6rem; text-align: center; }
  .cart-summary { flex-direction: row; justify-content: center; gap: 0.8rem; align-items: baseline; }
}
