:root {
  --cream: #faf5ec;
  --surface: #fffdf8;
  --ink: #3b444f;
  --muted: #6a7480;
  --line: #eadfcf;
  --coral: #d96f4e;
  --coral-dark: #b7532f;
  --coral-soft: #f8e6dc;
  --slate: #3b444f;
  --slate-line: #525d6a;
  --slate-soft: #cbd3dc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

section[id] { scroll-margin-top: 96px; }

.wrap {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--coral-dark);
}

.break { word-break: break-all; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-in {
  min-height: 74px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  height: 2.8rem;
  width: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(217, 111, 78, 0.32);
}

.brand-text strong {
  display: block;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.nav a:not(.btn) {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.nav a:not(.btn):hover {
  color: var(--coral-dark);
  background: var(--coral-soft);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-solid {
  background: linear-gradient(150deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(217, 111, 78, 0.32);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(217, 111, 78, 0.4);
}

.btn-ghost {
  border: 1.5px solid var(--coral);
  color: var(--coral-dark);
  background: transparent;
}

.btn-ghost:hover { background: var(--coral-soft); }

/* ---------- Hero ---------- */

.hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(42rem 22rem at 50% -10%, rgba(217, 111, 78, 0.1), transparent 65%),
    var(--cream);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.pills {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.pills li {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--coral);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-dark);
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* ---------- Seções ---------- */

.section { padding: 4rem 0; }

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.section-lead {
  max-width: 40rem;
  margin: 0 0 2.25rem;
  color: var(--muted);
}

/* ---------- Variedades ---------- */

.var-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}

.var-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 10px 26px rgba(59, 68, 79, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}

.var-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(59, 68, 79, 0.1);
}

.var-ico {
  display: grid;
  place-items: center;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 0.8rem;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 1.05rem;
}

.var-card h3 {
  margin: 0.9rem 0 0.4rem;
  font-size: 1.15rem;
}

.var-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- Quem somos ---------- */

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--surface);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 14px 34px rgba(59, 68, 79, 0.07);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
}

.panel h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.panel p:not(.eyebrow) {
  max-width: 46rem;
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--muted);
}

.panel-facts {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .panel-facts { grid-template-columns: repeat(3, 1fr); }
}

.fact small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral-dark);
}

.fact span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Dados oficiais ---------- */

.dados { padding-top: 0; }

.dados-card {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #fffdf8, #fdf6ea);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 14px 34px rgba(59, 68, 79, 0.07);
}

.dados-card h2 { margin: 0 0 1.75rem; }

.dados-grid {
  display: grid;
  gap: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}

@media (min-width: 640px) { .dados-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dados-grid { grid-template-columns: repeat(3, 1fr); } }

.dado small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral-dark);
}

.dado span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Contato (faixa) ---------- */

.contato {
  background: var(--slate);
  color: #fff;
  padding: 3rem 0;
}

.contato-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.contato h2 {
  margin: 0;
  font-size: 1.7rem;
}

.contato-itens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
}

a.contato-item:hover .ico { background: var(--coral); color: #fff; }

.ico {
  height: 2.2rem;
  width: 2.2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 111, 78, 0.18);
  color: var(--coral-soft);
  transition: background 0.15s, color 0.15s;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--slate);
  border-top: 1px solid var(--slate-line);
  color: var(--slate-soft);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.6fr 0.7fr; }
  .footer-links { justify-items: end; }
}

.footer-name {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-data {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral-soft);
}

.footer-links a:hover { text-decoration: underline; }

/* ---------- Modal (Política de Privacidade) ---------- */

.modal {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 36, 43, 0.74);
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal-bg { position: absolute; inset: 0; }

.modal-box {
  position: relative;
  max-height: 80vh;
  width: 100%;
  max-width: 48rem;
  overflow-y: auto;
  border-radius: 1.1rem;
  background: var(--surface);
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  right: 1.1rem;
  top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
}

.modal-box h2 {
  margin: 0;
  padding-right: 2rem;
  font-size: 1.7rem;
}

.modal-box h4 {
  margin: 1.5rem 0 0.25rem;
  font-size: 0.95rem;
}

.modal-box p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- 404 ---------- */

.nf {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.nf-code {
  margin: 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(5rem, 14vw, 8.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
}

.nf h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.nf p {
  max-width: 30rem;
  margin: 1rem auto 2rem;
  color: var(--muted);
}
