/* Layout institucional enxuto inspirado no exemplo de referência */
:root {
  --navy: #1c2840;
  --navy-deep: #141d2e;
  --gold: #c9a227;
  --gold-mid: #e8c76b;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e5e7eb;
  --page: #ffffff;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
}

a:hover {
  opacity: 0.85;
}

.wrap {
  width: min(720px, 100% - 48px);
  margin-inline: auto;
}

.wrap-wide {
  width: min(840px, 100% - 48px);
  margin-inline: auto;
}

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 8px 16px;
  background: var(--page);
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
}

.skip:focus {
  left: 8px;
}

/* Top bar: Facebook ao centro, Login à direita */
.bar-top {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
}

.bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 40px;
}

.bar-inner .fb-wrap {
  grid-column: 2;
  justify-self: center;
}

.bar-inner .login-wrap {
  grid-column: 3;
  justify-self: end;
}

.fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  transition: background 0.15s ease;
}

.fb-icon:hover {
  background: rgb(255 255 255 / 0.22);
  opacity: 1;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.login-link {
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.login-link:hover {
  opacity: 1;
  text-decoration-thickness: 2px;
}

/* Intro: chip + nome + CNPJ — centralizado */
.intro {
  text-align: center;
  padding: 48px 0 40px;
}

.chip-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.chip {
  width: 72px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-mid) 0%, var(--gold) 45%, #8a6b1a 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.45),
    0 4px 14px rgb(0 0 0 / 0.12);
  position: relative;
  overflow: hidden;
}

.chip::after {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.08) 1px, transparent 1px),
    linear-gradient(rgb(0 0 0 / 0.08) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.35;
}

.intro h1 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.intro .cnpj-line {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}

/* Seções */
section.content {
  padding: 36px 0 48px;
}

section.content.alt {
  background: #fafafa;
  border-block: 1px solid var(--line);
}

.section-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.section-sub {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.mission-lead {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.mission-body {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #333;
  text-align: center;
}

.prose {
  font-size: 1rem;
  color: #3d3d3d;
}

.prose p {
  margin: 0 0 1em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  font-weight: 700;
  color: var(--text);
}

.contact-block {
  text-align: center;
  font-size: 1rem;
}

.contact-block p {
  margin: 0 0 8px;
}

.contact-block a {
  word-break: break-word;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

/* Lista de serviços simples */
.simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.98rem;
  color: #3d3d3d;
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

/* Informações da empresa — lista compacta */
.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: #3d3d3d;
}

.info-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--text);
  font-weight: 600;
}

.cta-area {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #2b2f77;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-button:hover {
  opacity: 0.92;
}

/* Rodapé */
.site-footer {
  background: var(--navy-deep);
  color: #d2d9e7;
  padding: 46px 20px 30px;
  font-size: 14px;
}

.footer-wrap {
  width: min(860px, 100% - 40px);
  margin: 0 auto;
}

.site-footer .footer-brand {
  color: #e8ecf4;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

.site-footer .footer-title {
  margin: 28px 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.site-footer p,
.site-footer li {
  margin: 0 0 8px;
  line-height: 1.6;
}

.site-footer .footer-summary {
  text-align: center;
}

.site-footer .footer-summary p {
  margin-bottom: 10px;
}

.site-footer .policy {
  margin-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 0.09);
  padding-top: 20px;
}

.policy-section {
  margin: 0 0 16px;
}

.policy-section h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.policy-list {
  margin: 0;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 5px;
}

.site-footer .copy {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.09);
  font-size: 13px;
  color: #8a95a8;
  text-align: center;
}

.site-footer .policy-link {
  margin-top: 18px;
  text-align: center;
}

.site-footer .policy-link a {
  color: #d2d9e7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .intro {
    padding-top: 36px;
  }
}
