/* ==============================================================
   Mandala Moda Feminina — cores extraídas por pixel da logo real
   e do mídia kit oficial (ver mandala-documento-mestre.md)
   ============================================================== */
:root {
  --cream: #fef5d6;
  --nude: #e2bb9c;
  --orange: #e26e35;
  --terracotta: #c66e46;
  --terracotta-dark: #c25c2c;
  --ink: #181412;
  --paper: #fcfcfc;

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Quicksand", system-ui, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-primary {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 8px 20px -6px rgba(226, 110, 53, 0.4);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(24, 20, 18, 0.15);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 20px -6px rgba(24, 20, 18, 0.3);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-cream-outline {
  background: transparent;
  border: 2px solid rgba(252, 252, 252, 0.7);
  color: var(--paper);
}
.btn-cream-outline:hover { background: var(--paper); color: var(--orange); transform: translateY(-2px); }

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--terracotta);
}
.eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--terracotta);
}

/* Pills */
.pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(198, 110, 70, 0.3);
  background: rgba(226, 187, 156, 0.4);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta-dark);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta-dark);
  line-height: 1.15;
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(254, 245, 214, 0.95);
  box-shadow: 0 1px 8px rgba(24, 20, 18, 0.08);
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 95px; width: auto; }
.brand-name { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--terracotta-dark); }
.brand-tag { display: block; margin-top: 2px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--terracotta); }

.nav-desktop { display: none; align-items: center; gap: 2.25rem; }
.nav-desktop a.navlink { font-size: 0.9rem; font-weight: 500; color: rgba(24, 20, 18, 0.75); }
.nav-desktop a.navlink:hover { color: var(--terracotta); }
.nav-toggle { display: block; background: none; border: none; color: var(--ink); cursor: pointer; padding: 0; }
.nav-toggle svg { width: 28px; height: 28px; }
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(24, 20, 18, 0.1);
  background: rgba(254, 245, 214, 0.98);
  backdrop-filter: blur(8px);
}
.nav-mobile.open { display: block; }
.nav-mobile .container { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 1rem; padding-bottom: 1rem; }
.nav-mobile a.navlink { padding: 0.75rem 0.5rem; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 500; color: rgba(24, 20, 18, 0.85); }
.nav-mobile a.navlink:hover { background: rgba(226, 187, 156, 0.4); }
.nav-mobile .btn { margin-top: 0.5rem; width: 100%; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero (full-bleed) */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 4rem;
}
.hero-grid {
  display: grid;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 1.5rem;
}
.hero-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 110, 70, 0.3);
  background: rgba(226, 187, 156, 0.3);
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--terracotta-dark);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--orange); }
.hero h1 { margin-top: 1.5rem; font-size: 2.5rem; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero p.lead { margin-top: 1.75rem; max-width: 28rem; font-size: 1rem; line-height: 1.7; color: rgba(24, 20, 18, 0.7); }
.cta-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-photo { position: relative; min-height: 380px; }
.hero-photo .photo-slot { height: 100%; width: 100%; border-radius: 0; }

@media (min-width: 1024px) {
  .hero { padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-text { padding: 6rem 3.5rem; }
  .hero h1 { font-size: 3.75rem; }
  .hero-photo { min-height: 640px; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hero h1 { font-size: 3rem; }
  .hero-text { padding: 3.5rem 2rem; }
}

/* Photo slot / framed photo */
.photo-slot {
  position: relative;
  overflow: hidden;
  background: rgba(226, 187, 156, 0.5);
  border-radius: 1rem;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-slot.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  border: 1px dashed rgba(198, 110, 70, 0.4); background: rgba(226, 187, 156, 0.4);
  padding: 1.5rem; text-align: center;
}
.photo-slot.placeholder svg { width: 2.5rem; height: 2.5rem; color: rgba(198, 110, 70, 0.6); }
.photo-slot.placeholder .ps-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(24, 20, 18, 0.7); }
.photo-slot.placeholder .ps-hint { max-width: 220px; font-size: 0.7rem; line-height: 1.5; color: rgba(24, 20, 18, 0.45); }
.photo-slot.placeholder .ps-hint code { font-family: monospace; }

.framed-photo { position: relative; }
.framed-photo .frame-border {
  position: absolute; inset: 0; z-index: -1; border-radius: 1rem; border: 1px solid rgba(198, 110, 70, 0.6);
}
.framed-photo.corner-tl .frame-border { transform: translate(-1rem, -1rem); }
.framed-photo.corner-bl .frame-border { transform: translate(-1rem, 1rem); }
.framed-photo .glow {
  position: absolute; inset: -1.5rem; z-index: -1; border-radius: 50%;
  background: rgba(226, 110, 53, 0.15); filter: blur(60px); pointer-events: none;
}
.framed-photo .photo-slot { aspect-ratio: 4 / 5; width: 100%; box-shadow: 0 20px 40px -12px rgba(24,20,18,0.15); }

/* Sections */
section { padding: 4rem 0; }
@media (min-width: 1024px) { section { padding: 6rem 0; } }

.sobre .container { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .sobre .container { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .sobre .order-2-desktop { order: 2; }
}
.sobre h2 { margin-top: 1.25rem; font-size: 2rem; }
.sobre .body-text { margin-top: 1.5rem; }
.sobre .body-text p { margin: 0 0 1rem; font-size: 1rem; line-height: 1.7; color: rgba(24, 20, 18, 0.7); }

/* Diferenciais */
.diferenciais-header {
  display: grid; gap: 1.5rem; align-items: end;
}
.diferenciais-header h2 { margin-top: 1.25rem; font-size: 2rem; }
.diferenciais-header p { font-size: 1rem; line-height: 1.7; color: rgba(24, 20, 18, 0.65); }
@media (min-width: 1024px) {
  .diferenciais-header { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .diferenciais-header h2 { font-size: 2.75rem; }
}

.cards { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  border-radius: 1rem; border: 1px solid rgba(198, 110, 70, 0.2);
  background: var(--cream); padding: 2rem;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(226, 110, 53, 0.5); box-shadow: 0 8px 16px rgba(24,20,18,0.08); }
.card .num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; color: var(--orange); }
.card h3 { margin-top: 1rem; font-size: 1.125rem; }
.card p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; color: rgba(24, 20, 18, 0.6); }

/* Lançamentos */
.lancamentos { background: rgba(226, 187, 156, 0.25); text-align: center; }
.lancamentos-inner { max-width: 42rem; margin: 0 auto; }
.lancamentos h2 { margin-top: 1.25rem; font-size: 2rem; }
.lancamentos h2 em { font-style: italic; color: var(--orange); }
.lancamentos p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.7; color: rgba(24, 20, 18, 0.7); }
.lancamentos .pill-row { margin: 1.75rem auto 0; max-width: 34rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.lancamentos .cta-row { justify-content: center; margin-top: 2.25rem; }

/* CTA band (faixa escura) */
.cta-band { background: var(--ink); text-align: center; }
.cta-band-inner { max-width: 42rem; margin: 0 auto; }
.cta-band h2 { margin-top: 1.25rem; font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--paper); }
.cta-band p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.7; color: rgba(252, 252, 252, 0.8); }
.cta-band .eyebrow { justify-content: center; }
.cta-band .cta-row { justify-content: center; margin-top: 2rem; }
@media (min-width: 640px) { .cta-band h2 { font-size: 2.25rem; } }

/* Como chegar */
.chegar .container { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .chegar .container { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.chegar h2 { margin-top: 1.25rem; font-size: 2rem; }
.info-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.info-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(24, 20, 18, 0.75); }
.info-list svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.info-list strong { color: var(--ink); font-weight: 700; }
.chegar .photo-slot { aspect-ratio: 4 / 5; width: 100%; box-shadow: 0 20px 40px -12px rgba(24,20,18,0.15); }
@media (min-width: 640px) { .chegar .photo-slot { aspect-ratio: 16 / 11; } }

/* Footer */
.site-footer { background: var(--ink); padding: 3rem 0; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.footer-top .brand-name { color: var(--paper); }
.footer-top .brand-tag { color: var(--orange); }
.footer-contacts { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(252, 252, 252, 0.75); }
.footer-contacts a { display: flex; align-items: center; gap: 0.5rem; }
.footer-contacts a:hover { color: var(--orange); }
.footer-contacts svg { width: 1rem; height: 1rem; color: var(--orange); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(252, 252, 252, 0.1);
  text-align: center; font-size: 0.75rem; color: rgba(252, 252, 252, 0.45);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.footer-legal { display: flex; align-items: center; gap: 1.25rem; }
.footer-legal a { color: rgba(252, 252, 252, 0.55); }
.footer-legal a:hover { color: var(--orange); }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-contacts { align-items: flex-end; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Floating WhatsApp */
.floating-whats {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--orange); color: var(--paper);
  box-shadow: 0 12px 28px rgba(24,20,18,0.3);
  transition: transform 0.3s ease;
}
.floating-whats:hover { transform: scale(1.1); }
.floating-whats svg { width: 1.75rem; height: 1.75rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
