:root {
  --bg: #061018;
  --bg2: #0b1b27;
  --text: #f7f9fc;
  --muted: #aab7c6;
  --gold: #f2b84b;
  --gold2: #ffd777;
  --line: rgba(255, 255, 255, .13);
  --card: rgba(255, 255, 255, .075);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(242, 184, 75, .22), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(92, 173, 255, .12), transparent 28%),
    linear-gradient(135deg, #03080d 0%, #061018 55%, #0b1b27 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .1;
  background-image:
    linear-gradient(90deg, #fff 1px, transparent 1px),
    linear-gradient(#fff 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 8, 13, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  transition: background .22s ease, box-shadow .22s ease;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: height .22s ease, min-height .22s ease, padding .22s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mark {
  width: 118px;
  height: 118px;
  border-radius: 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 12;
  flex: 0 0 118px;
  margin-right: 0;
  transform: translateY(22px);
  background: transparent;
  border: 0;
  font-size: 26px;
  box-shadow: none;
  transition: width .22s ease, height .22s ease, flex-basis .22s ease, transform .22s ease;
}

.mark img {
  /* width: 118px; */
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .42));
  transition: width .22s ease, height .22s ease, filter .22s ease;
}

header.is-scrolled {
  overflow: hidden;
}

header.is-scrolled .nav {
  height: 72px;
  min-height: 72px;
}

header.is-scrolled .mark {
  width: 68px;
  min-width: 68px;
  max-width: 68px;
  height: 68px;
  min-height: 68px;
  max-height: 68px;
  flex: 0 0 68px;
  transform: translateY(0);
}

header.is-scrolled .mark img {
  width: 68px;
  max-width: 68px;
  height: 68px;
  max-height: 68px;
  filter: drop-shadow(0 10px 14px rgba(37, 48, 61, .16));
}

.brand strong {
  letter-spacing: .08em;
  font-size: 16px;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-cta {
  font-size: 13px;
  white-space: nowrap;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1d1304;
  box-shadow: 0 18px 45px rgba(242, 184, 75, .24);
}

.secondary {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 76px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-full .hero-copy {
  width: 100%;
  text-align: center;
}

.hero-full h1 {
  max-width: 1080px;
  margin-inline: auto;
}

.hero-full p {
  max-width: 900px;
  margin-inline: auto;
}

.hero-full .stats {
  max-width: 920px;
  margin-inline: auto;
}

.hero-full .tag,
.hero-full .actions {
  justify-content: center;
}

.tag {
  display: inline-flex;
  color: var(--gold2);
  background: rgba(242, 184, 75, .1);
  border: 1px solid rgba(242, 184, 75, .25);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h1 span,
h2 span {
  color: var(--gold2);
}

.hero p,
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat,
.card,
.person,
.post {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--gold2);
  font-size: 24px;
  margin-bottom: 4px;
}

.stat small {
  color: var(--muted);
}

.visual {
  min-height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 50% 22%, rgba(242, 184, 75, .30), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.owl {
  width: min(68%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, .42));
}

.note {
  position: absolute;
  max-width: 230px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(3, 8, 13, .76);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.note strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.n1 {
  left: 26px;
  bottom: 36px;
}

.n2 {
  right: 26px;
  top: 36px;
}

section {
  padding: 92px 0;
  scroll-margin-top: 112px;
}

.section {
  max-width: 760px;
  margin-bottom: 40px;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#historia .kicker,
#hub .kicker,
#atuacao .kicker,
#fundadores .kicker,
#noticias .kicker {
  margin-top: 25px;
}

.section p + p {
  margin-top: 14px;
}

.hub-page .hub-hero {
  min-height: calc(92vh - 82px);
}

.hub-page nav {
  gap: 16px;
}

.hub-page section {
  scroll-margin-top: 116px;
}

.hub-page .hub-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hub-page .hub-card-large {
  padding: 32px;
}

.hub-page .hub-card-large h3,
.hub-page .hub-panel-list h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.hub-page .hub-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.hub-page .hub-list li::marker {
  color: var(--gold2);
}

.hub-page .hub-cards .card {
  min-height: 230px;
}

.hub-page .hub-differentials {
  margin-top: 18px;
}

.hub-page .hub-panel-list p {
  color: var(--muted);
  line-height: 1.65;
}

.hub-page .hub-panel-list p + h3 {
  margin-top: 24px;
}

.hub-page .hub-post {
  justify-content: flex-start;
  min-height: 340px;
}

.hub-page .hub-post .hub-list {
  color: inherit;
}

.hub-page .hub-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hub-page .hub-timeline small {
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-page .hub-timeline h3 {
  margin: 10px 0 12px;
}

.hub-page .hub-note {
  align-items: center;
}

.hub-page .hub-note p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 28px;
}

.icon {
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(242, 184, 75, .12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.card p {
  font-size: 16px;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.panel {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1d1304;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step p {
  font-size: 16px;
}

.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.person {
  padding: 28px;
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff);
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 18px;
}

.person small {
  color: var(--gold2);
  font-weight: 900;
}

.person h3 {
  margin: 8px 0 10px;
}

.person p {
  font-size: 16px;
}

.news {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.post {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(242, 184, 75, .18), transparent 38%);
}

.post > * {
  position: relative;
}

.post h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.post p {
  font-size: 16px;
}

.consult {
  border-radius: 42px;
  padding: 46px;
  background:
    radial-gradient(circle at top right, rgba(242, 184, 75, .18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
}

#consultoria .consult {
  margin-top: 58px;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(2, 8, 14, .58);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #7f8c9a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242, 184, 75, .7);
}

footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 72px 0 28px;
  background: #020405;
  border-top: 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr .95fr .95fr .95fr;
  gap: 44px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(255, 255, 255, .12));
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
}

.footer-brand span {
  display: block;
  max-width: 260px;
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.45;
}

.footer-block h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-block p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: .2s;
}

.social-links a:hover {
  border-color: var(--gold2);
  color: var(--gold2);
  transform: translateY(-2px);
}

.social-links .social-icon {
  border-color: rgba(242, 184, 75, .78);
  color: #f2b84b;
  background: rgba(242, 184, 75, .08);
}

.social-links .social-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .instagram-icon:hover {
  border-color: #ffd777;
  color: #ffd777;
  background: rgba(242, 184, 75, .14);
}

.social-links .social-handle {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.social-links .social-handle:hover {
  color: var(--gold2);
  transform: none;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.footer-light {
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 150, 29, .16), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef5f8 58%, #fff8eb 100%);
  border-top: 1px solid rgba(16, 32, 45, .12);
  color: #10202d;
}

.footer-light .footer-brand img {
  filter: drop-shadow(0 12px 18px rgba(37, 48, 61, .16));
}

.footer-light .footer-brand strong,
.footer-light .footer-block h3 {
  color: #10202d;
}

.footer-light .footer-brand span,
.footer-light .footer-block p {
  color: #52616f;
}

.footer-light .social-links a {
  border-color: rgba(16, 32, 45, .72);
  color: #10202d;
}

.footer-light .social-links a:hover {
  border-color: #b67814;
  color: #b67814;
}

.footer-light .footer-bottom {
  border-top-color: rgba(16, 32, 45, .12);
  color: #52616f;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #082713;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .3);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-widget::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 9px;
  background: currentColor;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38a9.91 9.91 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91a9.86 9.86 0 0 0-2.91-7.01ZM12.05 20.15h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.38c0-4.55 3.7-8.25 8.25-8.25a8.2 8.2 0 0 1 5.83 2.42 8.2 8.2 0 0 1 2.41 5.84c0 4.54-3.7 8.23-8.24 8.23Zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.98-.14.16-.29.18-.54.06-.25-.13-1.05-.39-2-1.24-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.13-.56-1.35-.76-1.84-.2-.48-.4-.41-.56-.42h-.48c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07s.89 2.4 1.01 2.56c.12.17 1.75 2.68 4.24 3.75.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.1-.22-.16-.47-.28Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(37, 211, 102, .38);
}

.light-mode {
  --text: #10202d;
  --muted: #52616f;
  --gold: #d9961d;
  --gold2: #b67814;
  --line: rgba(16, 32, 45, .14);
  --card: rgba(255, 255, 255, .72);
  --shadow: 0 24px 70px rgba(37, 48, 61, .16);
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 150, 29, .22), transparent 30%),
    radial-gradient(circle at 12% 8%, rgba(44, 121, 176, .13), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #edf4f7 52%, #fff7e7 100%);
}

.light-mode::before {
  opacity: .36;
  background-image:
    linear-gradient(90deg, rgba(16, 32, 45, .13) 1px, transparent 1px),
    linear-gradient(rgba(16, 32, 45, .13) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.light-mode header {
  background: rgba(250, 253, 255, .82);
  border-bottom-color: rgba(16, 32, 45, .14);
  box-shadow: 0 12px 34px rgba(37, 48, 61, .08);
}

.light-mode .brand {
  gap: 18px;
}

.light-mode .mark {
  margin-right: 0;
}

.light-mode .brand span,
.light-mode nav,
.light-mode .hero p,
.light-mode .section p,
.light-mode .stat small,
.light-mode footer:not(.site-footer) {
  color: var(--muted);
}

.light-mode nav a:hover {
  color: #10202d;
}

.light-mode .mark img {
  filter: drop-shadow(0 16px 22px rgba(37, 48, 61, .18));
}

.light-mode .tag {
  color: #8b5a0b;
  background: rgba(217, 150, 29, .13);
  border-color: rgba(217, 150, 29, .3);
}

.light-mode .primary {
  background: linear-gradient(135deg, #f6bd52, #ffd878);
  color: #201506;
  box-shadow: 0 18px 38px rgba(217, 150, 29, .22);
}

.light-mode .secondary {
  background: rgba(255, 255, 255, .78);
  color: #10202d;
  border-color: rgba(16, 32, 45, .18);
  box-shadow: 0 14px 32px rgba(37, 48, 61, .08);
}

.light-mode .stat,
.light-mode .card,
.light-mode .person,
.light-mode .post,
.light-mode .panel,
.light-mode .consult {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(16, 32, 45, .13);
  box-shadow: 0 18px 45px rgba(37, 48, 61, .10);
}

.light-mode .stat strong,
.light-mode .kicker,
.light-mode h1 span,
.light-mode h2 span,
.light-mode .person small {
  color: #b67814;
}

.light-mode .icon {
  background: rgba(217, 150, 29, .14);
}

.light-mode .dot,
.light-mode .avatar {
  background: linear-gradient(135deg, #f6bd52, #fff4ca);
  color: #201506;
}

.light-mode .post::before {
  background: radial-gradient(circle at 20% 10%, rgba(217, 150, 29, .16), transparent 38%);
}

.light-mode .consult {
  background:
    radial-gradient(circle at top right, rgba(217, 150, 29, .18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .52));
}

.light-mode input,
.light-mode select,
.light-mode textarea {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(16, 32, 45, .16);
  color: #10202d;
}

.light-mode input::placeholder,
.light-mode textarea::placeholder {
  color: #7b8894;
}

.light-mode input:focus,
.light-mode select:focus,
.light-mode textarea:focus {
  border-color: rgba(217, 150, 29, .72);
}

.cinpai-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 150, 29, .18), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(44, 121, 176, .14), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #edf4f7 58%, #fffaf0 100%);
}

.cinpai-page .brand strong,
.cinpai-page .footer-brand strong {
  letter-spacing: .05em;
}

.cinpai-page .brand span {
  max-width: 360px;
  line-height: 1.35;
}

.cinpai-nav nav {
  gap: 18px;
}

.cinpai-page .card,
.cinpai-page .post,
.cinpai-page .panel,
.cinpai-page .consult,
.cinpai-page .stat {
  border-radius: 8px;
}

.cinpai-hero {
  min-height: calc(88vh - 82px);
  padding: 86px 0 70px;
}

.cinpai-hero-grid {
  display: block;
}

.cinpai-hero .hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cinpai-hero h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1;
  margin-bottom: 22px;
}

.cinpai-hero p {
  max-width: 760px;
  margin-inline: auto;
}

.cinpai-hero .actions {
  justify-content: center;
}

.cinpai-hero p:first-of-type {
  color: #8b5a0b;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
}

.cinpai-section {
  padding: 88px 0;
}

.cinpai-band {
  background: rgba(255, 255, 255, .34);
  border-top: 1px solid rgba(16, 32, 45, .08);
  border-bottom: 1px solid rgba(16, 32, 45, .08);
}

.cinpai-about {
  align-items: stretch;
}

.cinpai-panel {
  display: grid;
  align-content: center;
  gap: 18px;
}

.cinpai-panel p,
.cinpai-contact .contact-list p {
  color: #52616f;
  font-size: 17px;
  line-height: 1.7;
}

.cinpai-about .section p,
.cinpai-panel p,
.cinpai-courses .section p,
.cinpai-library .hub-post p {
  text-align: justify;
  text-justify: inter-word;
}

.cinpai-panel strong,
.cinpai-contact strong {
  color: #10202d;
}

.cinpai-principles .card {
  min-height: 220px;
}

.cinpai-courses {
  align-items: center;
}

.cinpai-coming {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(217, 150, 29, .28);
  background:
    radial-gradient(circle at top right, rgba(217, 150, 29, .18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .6));
  box-shadow: 0 18px 45px rgba(37, 48, 61, .1);
}

.cinpai-coming strong {
  color: #b67814;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.cinpai-coming span {
  color: #52616f;
  font-size: 18px;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

.cinpai-founders {
  display: grid;
  gap: 18px;
}

.founder-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: start;
}

.founder-featured {
  grid-template-columns: 300px 1fr;
  padding: 32px;
}

.founder-photo {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #e9eef3;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-placeholder {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #10202d, #2c79b0);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.founder-card small {
  color: #b67814;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-card h3 {
  margin-top: 8px;
}

.founder-card p + p {
  margin-top: 12px;
}

.founder-bio {
  margin-top: 14px;
}

.founder-bio p {
  color: #52616f;
  font-size: 16px;
  line-height: 1.68;
  text-align: justify;
  text-justify: inter-word;
}

.founder-more {
  margin-top: 12px;
}

.founder-more summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
  color: #8b5a0b;
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid rgba(139, 90, 11, .3);
  outline: none;
}

.founder-more summary::-webkit-details-marker {
  display: none;
}

.founder-more summary:hover,
.founder-more summary:focus-visible {
  color: #10202d;
  border-bottom-color: rgba(16, 32, 45, .35);
}

.founder-more p {
  margin-top: 12px;
}

.founder-more[open] summary {
  margin-bottom: 2px;
}

.cinpai-library .hub-post {
  min-height: 320px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: #8b5a0b;
  font-weight: 900;
  border-bottom: 2px solid rgba(139, 90, 11, .32);
}

.cinpai-contact {
  align-items: start;
}

.cinpai-contact h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
}

.cinpai-contact .contact-copy {
  max-width: 560px;
  color: #52616f;
  font-size: 17px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .grid,
  .about,
  .consult,
  .news,
  .cinpai-hero-grid,
  .hub-page .hub-split,
  .hub-page .hub-timeline {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .visual {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cinpai-hero {
    min-height: auto;
  }

  .founder-featured,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  header {
    position: sticky;
  }

  .nav {
    height: auto;
    min-height: 82px;
    padding: 10px 0 12px;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .brand {
    flex: 1 1 0;
    min-width: 0;
    gap: 8px;
  }

  .mark {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    margin-right: 0;
    transform: translateY(6px);
  }

  .mark img {
    width: 72px;
    height: 72px;
  }

  header.is-scrolled .nav {
    height: auto;
    min-height: 72px;
  }

  header.is-scrolled .mark {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    flex-basis: 56px;
    transform: translateY(0);
  }

  header.is-scrolled .mark img {
    width: 56px;
    max-width: 56px;
    height: 56px;
    max-height: 56px;
  }

  .brand strong {
    display: block;
    max-width: none;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .05em;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .brand span {
    display: block;
    max-width: 150px;
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.25;
  }

  .nav > .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    max-width: none;
  }

  nav {
    order: 3;
    display: flex;
    width: 100%;
    gap: 3px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 7px 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 10px;
    background: rgba(255, 255, 255, .08);
  }

  .light-mode nav a {
    background: rgba(255, 255, 255, .72);
  }

  .hero {
    padding: 52px 0;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cinpai-hero {
    padding: 46px 0 54px;
  }

  .cinpai-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .cinpai-coming,
  .founder-featured,
  .founder-card {
    padding: 24px;
  }

  .cinpai-section {
    padding: 64px 0;
  }

  .cinpai-principles .card {
    min-height: 0;
  }

  .founder-placeholder {
    width: 104px;
    height: 104px;
  }

  .founder-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .founder-card p {
    font-size: 15px;
    line-height: 1.62;
  }

  .founder-card small {
    font-size: 11px;
  }

  .cards,
  .people,
  .hub-page .hub-split,
  .hub-page .hub-timeline {
    grid-template-columns: 1fr;
  }

  .hub-page .hub-card-large {
    padding: 26px;
  }

  .hub-page .hub-cards .card {
    min-height: 0;
  }

  .hub-page .hub-post {
    min-height: 280px;
  }

  .visual {
    min-height: 340px;
    border-radius: 30px;
  }

  .owl {
    width: min(72%, 260px);
  }

  .note {
    display: none;
  }

  section {
    padding: 66px 0;
  }

  .consult {
    padding: 26px;
    border-radius: 30px;
  }

  .site-footer {
    padding: 54px 0 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 96px;
    height: 96px;
  }

  .footer-bottom {
    margin-top: 36px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    min-width: 52px;
    width: 52px;
    padding: 0;
  }

  .whatsapp-widget::before {
    margin-right: 0;
  }

  .whatsapp-widget span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
