/* ============================================================
   MÔNIA — Mais que Papelaria
   Cores e tipografia conforme Manual de Identidade da marca
   ============================================================ */

:root {
  /* Cores institucionais */
  --marrom:      #2c0d0f;
  --marrom-2:    #4a2429;
  --preto:       #0f0000;
  --laranja:     #eb651b;
  --laranja-esc: #c44a0d;
  --laranja-cl:  #ff9661;
  --mostarda:    #f39819;
  --mostarda-esc:#d47a0f;
  --amarelo:     #ffad4a;
  --creme:       #fdf2e7;
  --bege:        #e3cfba;
  --branco:      #ffffff;

  --texto:       #2c0d0f;
  --texto-suave: #6a4b45;

  --raio:        16px;
  --raio-lg:     26px;
  --sombra:      0 18px 40px -18px rgba(44, 13, 15, .35);
  --container:   1160px;

  --fonte:       'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display:     'Anton', 'Sora', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img, iframe { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Marca / logo oficial ---------- */
.brand { display: flex; align-items: center; line-height: 1; }
.brand__logo { height: 62px; width: auto; display: block; }
.brand__logo--footer { height: 58px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn .ico { width: 18px; height: 18px; fill: currentColor; }

.btn--wa    { background: var(--laranja); color: #fff; box-shadow: 0 10px 24px -10px var(--laranja); }
.btn--wa:hover { background: var(--laranja-esc); }
.btn--ghost { background: transparent; color: var(--creme); border-color: rgba(253,242,231,.4); }
.btn--ghost:hover { background: rgba(253,242,231,.1); border-color: var(--creme); }
.btn--dark  { background: var(--marrom); color: var(--creme); }
.btn--dark:hover { background: var(--preto); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 242, 231, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,13,15,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--marrom);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--laranja);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--marrom); border-radius: 2px; transition: .25s; }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 22px;
  border-top: 1px solid rgba(44,13,15,.08);
}
.mobile-menu a { padding: 10px 4px; font-weight: 500; font-size: 17px; }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, var(--marrom-2) 0%, var(--marrom) 45%, var(--preto) 100%);
  color: var(--creme);
  overflow: hidden;
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url("/assets/pattern.svg");
  background-size: 340px;
  opacity: .06;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding: 92px 24px 104px;
  max-width: 860px;
}
.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--amarelo);
  background: rgba(255,173,74,.12);
  border: 1px solid rgba(255,173,74,.32);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 12vw, 132px);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__title--accent { color: var(--laranja); }
.hero__lead {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 300;
  max-width: 620px;
  color: var(--bege);
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Stats ---------- */
.stats { background: var(--laranja); color: #fff; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  letter-spacing: .01em;
}
.stat__label { display: block; font-size: 13.5px; font-weight: 400; opacity: .92; margin-top: 6px; }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--laranja-esc);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--amarelo); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head--light { color: var(--creme); }
h2 {
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
h2 em { color: var(--laranja); font-style: normal; }

/* ---------- Sobre ---------- */
.sobre { padding: 96px 0; }
.sobre__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.sobre__text p { color: var(--texto-suave); font-size: 17px; margin-top: 18px; max-width: 52ch; }
.sobre__text .btn { margin-top: 30px; }
.sobre__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card {
  background: #fff;
  border: 1px solid rgba(44,13,15,.07);
  border-radius: var(--raio);
  padding: 24px 20px;
  box-shadow: var(--sombra);
  display: flex; flex-direction: column; gap: 4px;
}
.mini-card__ico { font-size: 30px; margin-bottom: 8px; }
.mini-card strong { font-weight: 700; font-size: 16px; }
.mini-card span:last-child { font-size: 13.5px; color: var(--texto-suave); }

/* ---------- Produtos ---------- */
.produtos { padding: 96px 0; background: #fff; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat {
  background: var(--creme);
  border: 1px solid rgba(44,13,15,.06);
  border-radius: var(--raio);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--sombra); border-color: rgba(235,101,27,.35); }
.cat__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(235,101,27,.12);
  font-size: 26px; margin-bottom: 16px;
}
.cat h3 { font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.cat p { font-size: 14.5px; color: var(--texto-suave); }

/* ---------- Serviços ---------- */
.servicos {
  padding: 96px 0;
  background: radial-gradient(120% 120% at 20% 0%, var(--marrom-2) 0%, var(--marrom) 55%, var(--preto) 100%);
  color: var(--creme);
}
.serv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.serv {
  background: rgba(253,242,231,.05);
  border: 1px solid rgba(253,242,231,.14);
  border-radius: var(--raio-lg);
  padding: 40px 36px;
}
.serv__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 15px;
  background: var(--laranja); font-size: 30px; margin-bottom: 20px;
}
.serv h3 { font-weight: 700; font-size: 25px; margin-bottom: 12px; }
.serv p { color: var(--bege); font-size: 16px; margin-bottom: 24px; font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--mostarda); color: var(--marrom); }
.cta-band__inner { text-align: center; padding: 68px 24px; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { font-size: 17px; margin-bottom: 28px; font-weight: 400; }

/* ---------- Contato ---------- */
.contato { padding: 96px 0; background: #fff; }
.contato__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contato__list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 20px; }
.contato__list li { display: flex; gap: 14px; font-size: 16px; }
.contato__list .ci {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(235,101,27,.12); font-size: 20px;
}
.contato__list strong { font-weight: 600; }
.social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.social a {
  font-weight: 600; font-size: 14.5px;
  padding: 9px 18px; border-radius: 999px;
  border: 2px solid var(--laranja); color: var(--laranja-esc);
  transition: .18s;
}
.social a:hover { background: var(--laranja); color: #fff; }
.contato__map {
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(44,13,15,.08);
}
.contato__map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--marrom); color: var(--bege); }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px; padding: 44px 24px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-weight: 500; font-size: 15px; color: var(--bege); }
.footer-nav a:hover { color: var(--laranja); }
.footer-copy { width: 100%; font-size: 13px; color: rgba(227,207,186,.6); border-top: 1px solid rgba(253,242,231,.1); padding-top: 22px; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--laranja);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(235,101,27,.7);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .sobre__inner, .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .serv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .brand__logo { height: 52px; }
  .cat-grid { grid-template-columns: 1fr; }
  .sobre__cards { grid-template-columns: 1fr 1fr; }
  .hero__inner { padding: 68px 24px 76px; }
  .sobre, .produtos, .servicos, .contato { padding: 68px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
