@font-face {
  font-family: "Product Sans";
  src: url("ProductSansBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #ffffff;
  color: #1f2448;
  font-family: Figtree, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: #1f2448; text-decoration: none; }
img { display: block; }

.wrap { max-width: 1120px; margin: 0 auto; }
.display {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0;
}
/* Marca de canto: o quadrado com duas bordas verdes que abre hero e cards */
.corner {
  display: block;
  width: 20px; height: 20px;
  border-top: 6px solid #43b589;
  border-right: 6px solid #43b589;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eceeeb;
}
.site-header .wrap {
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-header .logo-link { display: flex; align-items: center; }
.site-header img { height: 34px; width: auto; }
.btn-outline-dark {
  font-size: 14px; font-weight: 600;
  color: #1f2448;
  border: 1.5px solid #1f2448; border-radius: 999px;
  padding: 9px 18px; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.btn-outline-dark:hover { background: #1f2448; color: #ffffff; }

/* ---------- Hero ---------- */
.hero {
  background: #1f2448; color: #ffffff;
  padding: clamp(64px, 12vw, 132px) 20px clamp(72px, 13vw, 140px);
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow span:last-child {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #9aa1bd;
}
.hero h1 {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 7.4vw, 76px);
  line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 24px; max-width: 17ch;
  text-wrap: pretty;
}
.hero h1 em { color: #43b589; font-style: normal; }
.hero p {
  font-size: clamp(17px, 2.2vw, 21px); line-height: 1.55;
  color: #c9cddd; max-width: 56ch; margin: 0 0 40px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary {
  font-size: 15px; font-weight: 600;
  background: #43b589; color: #1f2448;
  border-radius: 999px; padding: 14px 26px;
  transition: background-color .18s ease;
}
.btn-primary:hover { background: #ffffff; color: #1f2448; }
.btn-outline-light {
  font-size: 15px; font-weight: 600;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35); border-radius: 999px;
  padding: 14px 26px;
  transition: border-color .18s ease, color .18s ease;
}
.btn-outline-light:hover { border-color: #43b589; color: #43b589; }

/* ---------- O que fazemos ---------- */
.about { padding: clamp(56px, 9vw, 104px) 20px; border-bottom: 1px solid #eceeeb; }
.about .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 5vw, 64px);
}
.about-text { display: grid; gap: 22px; }
.about-text p {
  font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6;
  color: #4d5470; margin: 0; text-wrap: pretty;
}

/* ---------- Nossas marcas ---------- */
.brands { padding: clamp(56px, 9vw, 104px) 20px; background: #f7f8f7; }
.brands h2 { margin-bottom: clamp(28px, 4vw, 48px); }
/* 6 colunas com cards de 2: 3 em cima, 2 centrados embaixo — sem card órfão */
.brand-grid { display: grid; gap: 16px; grid-template-columns: repeat(6, 1fr); }
.brand-card {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid #e6e8e4; border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 172px;
  transition: border-color .18s ease, transform .18s ease;
}
.brand-card:nth-child(4) { grid-column: 2 / span 2; }
.brand-card:hover { border-color: #43b589; transform: translateY(-2px); }
.brand-card .corner { width: 14px; height: 14px; border-top-width: 4px; border-right-width: 4px; }
.brand-name {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700; font-size: 21px; letter-spacing: -0.01em;
  color: #1f2448;
}
.brand-desc { font-size: 15px; line-height: 1.5; color: #6b7288; text-wrap: pretty; }
.brand-domain {
  margin-top: auto;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: #43b589;
}
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-card, .brand-card:nth-child(4) { grid-column: span 2; }
  .brand-card:nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 580px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card, .brand-card:nth-child(4), .brand-card:nth-child(5) { grid-column: auto; }
}

/* ---------- Clientes ---------- */
.clients { padding: clamp(56px, 9vw, 104px) 20px; }
.clients h2 { margin-bottom: 10px; }
.clients .lede { font-size: 16px; color: #6b7288; margin: 0 0 clamp(28px, 4vw, 44px); }
.client-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.client-card {
  background: #ffffff;
  border: 1px solid #e6e8e4; border-radius: 12px;
  padding: 18px 20px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s ease, transform .18s ease;
}
.client-card:hover { border-color: #43b589; transform: translateY(-2px); }
/* Logos normalizados no navy da marca; ganham presença no hover */
.client-card img {
  max-width: 100%; max-height: 46px; width: auto; height: auto;
  object-fit: contain;
  opacity: .66;
  transition: opacity .18s ease;
}
.client-card:hover img { opacity: 1; }

/* ---------- Contato ---------- */
.contact { background: #1f2448; color: #ffffff; padding: clamp(56px, 9vw, 100px) 20px; }
.contact .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; align-items: center;
}
.contact h2 {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700; font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 14px; text-wrap: pretty;
}
.contact p { font-size: 17px; line-height: 1.55; color: #c9cddd; margin: 0; max-width: 46ch; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.btn-primary-lg {
  font-size: 16px; font-weight: 600;
  background: #43b589; color: #1f2448;
  border-radius: 999px; padding: 15px 28px;
  transition: background-color .18s ease;
}
.btn-primary-lg:hover { background: #ffffff; }

/* ---------- Footer ---------- */
.site-footer { background: #ffffff; padding: clamp(40px, 6vw, 64px) 20px 44px; }
.site-footer .wrap { display: grid; gap: 28px; }
.footer-top {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 20px;
}
.site-footer img { height: 30px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; font-weight: 500; }
.footer-nav a:hover { color: #43b589; }
.footer-rule { height: 1px; background: #eceeeb; }
.footer-legal { display: grid; gap: 6px; font-size: 13px; line-height: 1.6; color: #8a90a3; }
.footer-legal .entity { color: #6b7288; font-weight: 600; }

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

/* ---------- Páginas de conteúdo (termos, privacidade) ---------- */
.page-hero {
  background: #1f2448; color: #ffffff;
  padding: clamp(48px, 8vw, 88px) 20px clamp(40px, 6vw, 64px);
}
.page-hero h1 {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700; font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 14px; max-width: 20ch; text-wrap: pretty;
}
.page-hero p { font-size: 16px; line-height: 1.55; color: #c9cddd; margin: 0; max-width: 62ch; }
.prose { padding: clamp(48px, 8vw, 88px) 20px; }
.prose .wrap { max-width: 760px; }
.prose h2 {
  font-family: "Product Sans", Figtree, Helvetica, sans-serif;
  font-weight: 700; font-size: clamp(20px, 2.6vw, 25px);
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 44px 0 14px; padding-top: 22px;
  border-top: 1px solid #eceeeb;
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.prose p, .prose li { font-size: 16px; line-height: 1.68; color: #4d5470; text-wrap: pretty; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: #1f2448; font-weight: 600; }
.prose a { color: #2f8f6d; font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #43b589; }
.prose .updated {
  font-size: 13px; color: #8a90a3;
  margin: 0 0 32px; padding-bottom: 22px;
  border-bottom: 1px solid #eceeeb;
}
.prose .note {
  background: #f7f8f7; border: 1px solid #e6e8e4; border-left: 3px solid #43b589;
  border-radius: 0 10px 10px 0; padding: 18px 20px; margin: 32px 0 0;
}
.prose .note p:last-child { margin-bottom: 0; }
