/* =========================================================
   01. FONTES E VARIÁVEIS GERAIS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&family=Lexend:wght@400;500;600;700&family=Lexend+Mega:wght@500;600;700;900&display=swap');

:root {
  --white: #ffffff;
  --paper: #f7f7f5;
  --black: #050505;
  --ink: #111111;
  --muted: #6f6f6f;
  --line: #e5e5e2;
  --soft: #f1f1ee;
  --brown: #9b7b78;

  /* 👉 ALTERE AQUI: vermelho institucional usado apenas em pequenos detalhes */
  --accent: #d71920;

  /* 👉 ALTERE AQUI: grafite usado no botão/ícone do WhatsApp */
  --whatsapp: #2f302d;

  --max: 1160px;

  /* 👉 ALTERE AQUI: altura do cabeçalho no desktop (empurra todo o resto da página) */
  --header-height: 138px;

}



/* =========================================================
   02. RESET BÁSICO
========================================================= */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}



/* =========================================================
   03. CABEÇALHO / TOPO DO SITE
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: background 0.3s ease;
}

/* 👉 QUANDO O USUÁRIO ROLA A PÁGINA: fundo sólido, sem degradê */
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.site-header.is-scrolled::before {
  opacity: 0;
}

/* 👉 ALTERE AQUI: altura do cabeçalho quando "encolhido" (rolando a página) */
.site-header.is-scrolled .header-inner {
  height: 84px;
}

/* DEGRADÊ DO TOPO NO DESKTOP */

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  /* 👉 ALTERE AQUI: altura da faixa escura atrás do menu (desktop) */
  height: 200px;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.80) 40%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(0, 0, 0, 0.15) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.header-inner {
  height: var(--header-height);
  display: grid;
  grid-template-columns: 230px 1fr 150px;
  align-items: center;
  gap: 20px;
  background: transparent !important;
  transition: height 0.3s ease;
}



/* =========================================================
   04. LOGO DO TOPO
   Desktop: 150px
   Tablet: 130px
   Celular: 105px
========================================================= */

.brand {
  position: relative;
  left: -40px;
  background: transparent !important;
}

.brand img {
  /* 👉 ALTERE AQUI: tamanho da logo no desktop */
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  filter: brightness(0) invert(1) !important;
  transition: transform 0.25s ease, filter 0.25s ease;
  transform-origin: center center;
}

.brand:hover img {
  transform: scale(1.05);
  filter: brightness(0) invert(1) contrast(1.08) !important;
}



/* =========================================================
   05. MENU PRINCIPAL
========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  /* 👉 ALTERE AQUI: tamanho do texto do menu (Início, Aulas, Pilates...) */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent !important;
}

.main-nav a {
  padding: 10px 0;
  color: #ffffff !important;
  border-bottom: 1px solid transparent;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.main-nav a:hover {
  color: #ffffff !important;
  border-color: #ffffff;
}



/* =========================================================
   06. AÇÕES DO TOPO
========================================================= */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  background: transparent !important;
}

.icon-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff !important;
}

.icon-link svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff !important;
}

.whatsapp-link {
  display: none;
  border: 1px solid #ffffff;
  color: #ffffff !important;
  padding: 11px 18px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.mobile-btn {
  display: none;
  border: 0;
  background: transparent;
  /* 👉 ALTERE AQUI: tamanho do ícone ☰ (menu mobile) */
  font-size: 34px;
  line-height: 1;
  padding: 8px;
  color: #ffffff;
}



/* =========================================================
   07. HERO ESTÁTICO: HOME
========================================================= */

body.home-page .home-hero {
  min-height: clamp(680px, 54vw, 780px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  overflow: hidden;
  background: var(--paper);
}

body.home-page .home-hero__content {
  min-width: 0;
  padding: clamp(72px, 6vw, 112px);
  display: flex;
  align-items: center;
}

body.home-page .home-hero__content-inner {
  width: 100%;
  max-width: 560px;
}

body.home-page .home-hero__eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-page .home-hero__title {
  margin: 0;
  color: var(--ink);
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(52px, 5.3vw, 82px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

body.home-page .home-hero__text {
  max-width: 520px;
  margin: 32px 0 0;
  color: #3f3f3f;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

body.home-page .home-hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.home-page .home-hero__cta {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

body.home-page .home-hero__cta--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

body.home-page .home-hero__cta--secondary {
  background: transparent;
  color: var(--ink);
}

body.home-page .home-hero__media {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #d9d9d6;
}

body.home-page .home-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}

@media (max-width: 900px) {
  body.home-page .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.home-page .home-hero__content {
    padding: 72px 28px 64px;
  }

  body.home-page .home-hero__content-inner {
    max-width: 680px;
  }

  body.home-page .home-hero__title {
    font-size: clamp(44px, 8vw, 64px);
  }

  body.home-page .home-hero__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  body.home-page .home-hero__content {
    padding: 48px 14px 44px;
  }

  body.home-page .home-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  body.home-page .home-hero__title {
    font-size: clamp(40px, 11vw, 48px);
  }

  body.home-page .home-hero__text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  body.home-page .home-hero__actions {
    margin-top: 32px;
  }

  body.home-page .home-hero__cta {
    flex: 1 1 190px;
    width: 100%;
  }

  body.home-page .home-hero__media img {
    object-position: center center;
  }
}



/* =========================================================
   13. SEÇÕES GERAIS
========================================================= */

.section {
  /* 👉 ALTERE AQUI: espaço em branco acima/abaixo de cada seção do site */
  padding: 108px 0;
}

.section.tight {
  padding: 78px 0;
}

.section-muted {
  /* 👉 ALTERE AQUI: cor de fundo das seções "cinza clarinho" (ex: Modalidades) */
  background: var(--paper);
}

.section-head {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 820px;
}

.eyebrow {
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  /* 👉 ALTERE AQUI: tamanho do texto pequeno acima dos títulos (ex: "MODALIDADES") */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.title-xl {
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  /* 👉 ALTERE AQUI: tamanho dos títulos grandes das seções (ex: "Treino para diferentes objetivos") */
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
  font-weight: 700;
}

.lead {
  /* 👉 ALTERE AQUI: tamanho do texto de apoio abaixo dos títulos */
  font-size: 17px;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
}



/* =========================================================
   14. SEÇÃO SOBRE A HANGAR
========================================================= */

.section-photo {
  position: relative;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  /* 👉 ALTERE AQUI: espaço acima/abaixo do conteúdo (topo, base) */
  padding: 48px 0 108px;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 👉 ALTERE AQUI: intensidade do escurecimento sobre a foto de fundo (0 = sem escurecer, 1 = totalmente preto) */
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.section-photo .container {
  position: relative;
  z-index: 1;
}

.section-photo .eyebrow {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.section-photo .title-xl {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
}

.section-photo .lead {
  color: #f0f0f0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-title {
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  /* 👉 ALTERE AQUI: tamanho do título "Concept Training" */
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
}

.about-text p {
  margin: 0 0 18px;
  color: #f0f0f0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
  text-align: justify;
}

.section-photo .btn {
  border-color: #ffffff;
  color: #ffffff;
}

.section-photo .btn:hover {
  background: #ffffff;
  color: #111111;
}



/* =========================================================
   15. CARDS DE MODALIDADES
========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.card {
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease;
}

.card:first-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}

.card:hover {
  /* 👉 ALTERE AQUI: cor da linha lateral que acende ao passar o mouse (vermelho Hangar) */
  border-left-color: var(--accent);
}

.card-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  /* 👉 ALTERE AQUI: cor dos números "01, 02, 03, 04" (vermelho Hangar) */
  color: var(--accent);
}

.card h3 {
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  margin: 0;
  /* 👉 ALTERE AQUI: tamanho do nome da modalidade (ex: "Musculação") */
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}



/* =========================================================
   16. SEÇÃO PILATES / FEATURE
========================================================= */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-media {
  /* 👉 ALTERE AQUI: altura mínima da área visual do Pilates */
  min-height: 480px;
  background: linear-gradient(135deg, #ecece8, #d9d9d4);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.feature-media::before {
  content: "PILATES";
  font-size: 78px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.08);
}

.feature-copy {
  padding: 70px 8vw;
  background: #ffffff;
}

.feature-copy h2 {
  /* 👉 ALTERE AQUI: tamanho do título "Pilates Hangar" */
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.feature-copy p {
  color: #333333;
}



/* =========================================================
   17. BOTÕES
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid #111111;
  /* 👉 ALTERE AQUI: tamanho da caixa dos botões (ex: "Agendar visita", "Consultar") */
  padding: 15px 24px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  /* 👉 ALTERE AQUI: tamanho do texto dos botões */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #111111;
  color: #ffffff;
}



/* =========================================================
   18. PLANOS
========================================================= */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan {
  border: 1px solid var(--line);
  padding: 34px;
  background: #ffffff;
}

.plan h3 {
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 18px;
}

.plan .price {
  /* 👉 ALTERE AQUI: tamanho do valor do plano (ex: "R$ --") */
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0;
}

.plan p {
  color: var(--muted);
  font-size: 14px;
}



/* =========================================================
   19. CONTATO
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.info-item strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 4px;
}

.map-block {
  position: relative;
  margin-top: 52px;
  border: 1px solid var(--line);
}

.map-embed {
  width: 100%;
  /* 👉 ALTERE AQUI: altura do mapa incorporado */
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

.map-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin-top: 0;
  background: #ffffff;
  border-color: #111111;
}



/* =========================================================
   20. RODAPÉ
========================================================= */

.footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: #555555;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

/* =========================================================
   21. ACESSIBILIDADE
========================================================= */

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: #ffffff;
  color: #000000;
  z-index: 10000;
  padding: 10px;
}



/* =========================================================
   22. PÁGINAS INTERNAS
========================================================= */

.page-main {
  margin-top: var(--header-height);
}

.page-main .section {
  padding-top: 72px;
}

/* =========================================================
   25. RESPONSIVO - TABLET
   (tudo dentro daqui só vale para telas até 900px)
========================================================= */

@media (max-width: 900px) {
  :root {
    /* 👉 ALTERE AQUI: altura do cabeçalho no tablet */
    --header-height: 94px;
  }

  .site-header {
    position: fixed;
  }

  body.home-page .site-header {
    isolation: isolate;
  }

  body.home-page .site-header:not(.is-scrolled) {
    background: #050505 !important;
  }

  body.home-page .home-hero {
    margin-top: var(--header-height);
  }

  .site-header::before {
    /* 👉 ALTERE AQUI: altura da faixa escura atrás do menu (tablet) */
    height: 220px;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.62) 58%,
      rgba(0, 0, 0, 0.20) 88%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .site-header.open {
    background: rgba(0, 0, 0, 0.94) !important;
  }

  .site-header.open::before {
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: var(--header-height);
    padding: 12px 0;
  }

  .brand {
    position: static;
    left: auto;
  }

  .brand img {
    /* 👉 ALTERE AQUI: tamanho da logo no tablet */
    width: 130px !important;
    max-width: 130px !important;
  }

  .mobile-btn {
    display: block;
    min-width: 44px;
    min-height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    background: #111111;
    color: #ffffff;
    z-index: 2;
  }

  .main-nav,
  .header-actions {
    display: none;
    flex-basis: 100%;
  }

  .site-header.open .main-nav,
  .site-header.open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0 18px;
  }

  .site-header.open .main-nav a {
    color: #ffffff !important;
  }

  .whatsapp-link {
    display: inline-flex;
  }

  .hero {
    /* 👉 ALTERE AQUI: altura do carrossel no tablet */
    height: 380px !important;
    min-height: 340px !important;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .two-col,
  .feature,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-title,
  .title-xl {
    font-size: 42px;
  }

  .cards,
  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy {
    padding: 56px 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-main {
    margin-top: var(--header-height);
  }
}



/* =========================================================
   26. RESPONSIVO - CELULAR
   (tudo dentro daqui só vale para telas até 560px)
========================================================= */

@media (max-width: 560px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
    min-height: var(--header-height);
  }

  .brand img {
    width: 80px !important;
    max-width: 80px !important;
  }

  .mobile-btn {
    margin-right: 52px;
  }

  .site-header::before {
    height: 140px !important;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.44) 36%,
      rgba(0, 0, 0, 0.16) 76%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
  }

  .site-header.open::before {
    height: 100% !important;
    background: rgba(0, 0, 0, 0.88) !important;
  }

  .hero {
    height: 56.25vw !important;
    min-height: 210px !important;
    max-height: 270px !important;
  }

  .hero-media {
    transform: scale(1.02) !important;
  }

  .hero-caption {
    top: 57%;
  }

  .hero-title {
    font-size: 13px;
    line-height: 1.02;
    letter-spacing: 0.06em;
  }

  .hero-cta {
    margin-top: 16px;
    padding: 5px 12px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .cards,
  .plans {
    grid-template-columns: 1fr;
  }

  .main-nav {
    font-size: 13px;
  }

  .section-head {
    text-align: left;
  }

  .lead {
    margin-left: 0;
  }

  .about-title,
  .title-xl {
    font-size: 36px;
  }

  .feature-media {
    min-height: 300px;
  }

  .page-main {
    margin-top: var(--header-height);
  }

}


/* =========================================================
   27. PÁGINA WELLHUB / TOTALPASS
========================================================= */

.partners-page {
  background: #ffffff;
}

.partners-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 18% 26%, rgba(215, 25, 32, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(215, 25, 32, 0.10), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111111 48%, #1a1a1a 100%);
  color: #ffffff;
}

.partners-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.24;
  pointer-events: none;
}

.partners-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.partners-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.partners-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.partners-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.partners-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.partners-hero p {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.partners-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.partners-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff !important;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.partners-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #050505 !important;
  border-color: #ffffff;
}

.partners-btn--solid {
  background: #ffffff;
  color: #050505 !important;
  border-color: #ffffff;
}

.partners-btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff !important;
}

.partner-device {
  position: relative;
  display: grid;
  gap: 18px;
}

.partner-card-main {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.partner-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.partner-logo-box {
  min-height: 132px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.partner-logo-img {
  display: block;
  max-width: 168px;
  max-height: 58px;
  width: auto;
  height: auto;
}

.partner-wordmark {
  display: block;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.partner-wordmark--wellhub {
  color: #F2496B;
  font-size: 34px;
}

.partner-wordmark--totalpass {
  color: #111111;
  font-size: 30px;
}

.partner-wordmark--totalpass span {
  color: #25D366;
}

.partner-mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.partner-mini-info div {
  padding: 18px 14px;
  background: rgba(0, 0, 0, 0.28);
}

.partner-mini-info strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 8px;
}

.partner-mini-info span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.partners-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.partners-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.10);
  border: 1px solid var(--line);
}

.partners-stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.partners-stat:last-child {
  border-right: 0;
}

.partners-stat strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.partners-stat span {
  display: block;
  color: #222222;
  font-size: 14px;
  line-height: 1.55;
}

.partner-section {
  padding: 108px 0;
}

.partner-section--muted {
  background: var(--paper);
}

.partner-section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.partner-section-head h2 {
  margin: 0 0 22px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.partner-section-head p {
  margin: 0 auto;
  color: #444444;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.partner-access-card {
  position: relative;
  min-height: 520px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.partner-access-card--dark {
  background: #050505;
  color: #ffffff;
  border-color: #050505;
}

.partner-access-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: rgba(215, 25, 32, 0.10);
  pointer-events: none;
}

.partner-access-card--dark::after {
  background: rgba(255, 255, 255, 0.08);
}

.partner-access-top {
  position: relative;
  z-index: 2;
}

.partner-label {
  display: inline-flex;
  margin-bottom: 24px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.partner-access-card h3 {
  margin: 0 0 22px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.partner-access-card p {
  margin: 0;
  color: #444444;
  font-size: 15px;
  line-height: 1.75;
}

.partner-access-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.partner-access-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.partner-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 15px 18px;
  border: 1px solid #111111;
  color: #111111 !important;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.partner-link-btn:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #ffffff !important;
}

.partner-access-card--dark .partner-link-btn {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff !important;
}

.partner-access-card--dark .partner-link-btn:hover {
  background: #ffffff;
  color: #050505 !important;
}

.partner-link-btn span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

.partner-link-btn .external-link-icon {
  display: block;
  flex: 0 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step-card {
  padding: 34px 26px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 250px;
}

.step-number {
  display: block;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0 0 14px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-card p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.partner-note {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  color: #444444;
  font-size: 14px;
  line-height: 1.7;
}

.partner-rules {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-rules-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: end;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.partner-rules-head > span,
.double-access-kicker {
  color: #666666;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-rules-head h3 {
  margin: 0;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.partner-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.partner-rules-grid article {
  padding: 30px 28px 32px;
  border-right: 1px solid var(--line);
}

.partner-rules-grid article:last-child {
  border-right: 0;
}

.partner-rules-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: #777777;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.partner-rules-grid h4 {
  margin: 0 0 10px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-rules-grid p,
.partner-rules-note {
  margin: 0;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.65;
}

.partner-rules-note {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.double-access {
  padding: 112px 0;
  background: #ffffff;
  color: #111111;
}

.double-access-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.double-access-kicker {
  margin: 0 0 18px;
}

.double-access-head h2 {
  max-width: 720px;
  margin: 0;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.double-access-head > p {
  margin: 0;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.7;
}

.double-access-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.double-access-flow::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 21px;
  right: 21px;
  height: 1px;
  background: #bdbdbd;
}

.double-access-flow article {
  position: relative;
  z-index: 1;
}

.double-access-number {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.double-access-flow h3 {
  margin: 0 0 12px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.double-access-flow p {
  margin: 0;
  color: #5d5d5d;
  font-size: 14px;
  line-height: 1.65;
}

.double-access-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.double-access-summary p {
  max-width: 680px;
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.7;
}

.double-access-summary strong {
  color: #111111;
}

.double-access-summary .partners-btn {
  flex: 0 0 auto;
}

.partner-final {
  padding: 100px 0;
  background: #050505;
  color: #ffffff;
  text-align: center;
}

.partner-final h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-family: 'Lexend Mega', Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.partner-final p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.partner-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 980px) {
  .partners-hero-inner,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partners-strip-inner,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-hero {
    padding-top: 130px;
  }
}

@media (max-width: 560px) {
  .partners-hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .partners-hero-inner {
    gap: 42px;
  }

  .partners-hero h1 {
    font-size: 31px;
    line-height: 1.02;
  }

  .partners-hero p,
  .partner-section-head p,
  .partner-final p {
    font-size: 14px;
  }

  .partners-actions,
  .partner-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partners-btn,
  .partner-link-btn {
    width: 100%;
  }

  .partner-card-main {
    padding: 22px;
  }

  .partner-logos,
  .partner-mini-info,
  .partners-strip-inner,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .partners-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partners-stat:last-child {
    border-bottom: 0;
  }

  .partner-section {
    padding: 72px 0;
  }

  .partner-section-head {
    text-align: left;
    margin-bottom: 34px;
  }

  .partner-section-head h2,
  .partner-final h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .partner-access-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .partner-access-card h3 {
    font-size: 26px;
  }

  .step-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .partner-final {
    padding: 72px 0;
    text-align: left;
  }

  .partner-wordmark--wellhub {
    font-size: 31px;
  }

  .partner-wordmark--totalpass {
    font-size: 28px;
  }
}


@media (min-width: 561px) and (max-width: 900px) {
  .partner-rules-head {
    grid-template-columns: 170px 1fr;
  }

  .double-access {
    padding: 88px 0;
  }

  .double-access-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .double-access-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }

  .double-access-flow::before {
    display: none;
  }

  .double-access-flow article {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

  .double-access-summary {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .partner-rules {
    margin-top: 40px;
  }

  .partner-rules-head {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .partner-rules-head h3 {
    font-size: 17px;
  }

  .partner-rules-grid {
    grid-template-columns: 1fr;
  }

  .partner-rules-grid article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-rules-grid article:last-child {
    border-bottom: 0;
  }

  .partner-rules-grid article > span {
    margin-bottom: 14px;
  }

  .double-access {
    padding: 72px 0;
  }

  .double-access-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 38px;
  }

  .double-access-head h2 {
    font-size: 29px;
    line-height: 1.02;
  }

  .double-access-head > p {
    font-size: 14px;
  }

  .double-access-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }

  .double-access-flow::before {
    top: 21px;
    bottom: 21px;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .double-access-flow article {
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 20px;
    padding-bottom: 34px;
  }

  .double-access-flow article:last-child {
    padding-bottom: 0;
  }

  .double-access-number {
    margin-bottom: 0;
  }

  .double-access-summary {
    display: grid;
    gap: 24px;
    margin-top: 42px;
    padding-top: 28px;
  }

  .double-access-summary .partners-btn {
    width: 100%;
  }
}


/* =========================================================
   28. ÍCONE FLUTUANTE WHATSAPP
========================================================= */

.whatsapp-float {
  position: fixed;
  /* 👉 ALTERE AQUI: posição do ícone do WhatsApp (canto inferior direito) */
  bottom: 22px;
  right: 22px;
  z-index: 10000;
  /* 👉 ALTERE AQUI: tamanho do círculo verde do WhatsApp */
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  /* 👉 ALTERE AQUI: cor do círculo do WhatsApp */
  background: var(--whatsapp);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.whatsapp-float:hover {
  background: #1f201e;
  transform: scale(1.06);
}

@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}




/* =========================================================
   30. NOSSA HISTÓRIA
   Página: nossa-historia.html
========================================================= */

body.page-history {
  background: #f4f4f0;
}

body.page-history .site-header {
  background: rgba(244, 244, 240, 0.88) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

body.page-history .site-header::before {
  display: none;
}

body.page-history .brand img {
  filter: brightness(0) !important;
}

body.page-history .main-nav a {
  color: #111111 !important;
}

.history-page {
  overflow: hidden;
}

.history-hero {
  position: relative;
  min-height: clamp(460px, 54svh, 560px);
  display: flex;
  align-items: flex-end;
  color: #111111;
  background: #deded8;
}

.history-hero__content {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0 48px;
}

.history-hero__content > p,
.history-hero__content > span,
.history-kicker {
  margin: 0;
  font-family: 'Lexend Mega', 'Lexend', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-hero__content h1 {
  max-width: 1100px;
  margin: 26px 0 38px;
  font-family: 'Lexend', Arial, sans-serif;
  font-size: clamp(58px, 7.5vw, 112px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.history-hero__content > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.history-intro {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(72px, 7vw, 104px) 0;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 70px;
}

.history-kicker {
  color: #696a65;
}

.history-intro h2,
.history-chapter h2 {
  margin: 0;
  font-family: 'Lexend', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.history-intro h2 {
  font-size: clamp(44px, 5.5vw, 80px);
}

.history-intro__text {
  grid-column: 2;
  max-width: 780px;
  margin-top: 8px;
}

.history-intro__text p {
  margin: 0 0 24px;
  color: #4f504b;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.history-years {
  width: calc(100% - 48px);
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #ccccc6;
  border-bottom: 1px solid #ccccc6;
}

.history-years span {
  padding: 0 24px;
  border-left: 1px solid #ccccc6;
  color: #555651;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-years span:first-child {
  border-left: 0;
}

.history-chapter {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(90px, 9vw, 140px) 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  border-bottom: 1px solid #d2d2cc;
}

.history-chapter__year {
  color: #c4c4be;
  font-family: 'Lexend', Arial, sans-serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.history-chapter--without-year .history-chapter__year {
  font-size: clamp(30px, 3vw, 44px);
  text-transform: uppercase;
}

.history-chapter__copy {
  max-width: 780px;
}

.history-chapter h2 {
  margin: 24px 0 40px;
  font-size: clamp(42px, 4.5vw, 64px);
}

.history-chapter__copy > p:not(.history-kicker) {
  margin: 0 0 24px;
  color: #454641;
  font-size: 16px;
  line-height: 1.78;
}

.history-quote {
  width: calc(100% - 48px);
  min-height: 52vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 100px 40px;
  border-radius: 28px;
  background: #deded8;
  text-align: center;
}

.history-quote p {
  margin: 0;
  font-family: 'Lexend', Arial, sans-serif;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.history-chapter--hangar {
  padding-top: clamp(100px, 10vw, 160px);
}

.history-closing {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
}

.history-closing p {
  margin: 0;
  font-family: 'Lexend', Arial, sans-serif;
  font-size: clamp(25px, 2.8vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.history-closing strong {
  display: block;
  margin-top: 70px;
  font-family: 'Lexend Mega', 'Lexend', Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: 0.2em;
}

@media (max-width: 900px) {
  .history-hero {
    min-height: clamp(430px, 60svh, 520px);
  }

  .history-hero__content,
  .history-intro {
    width: calc(100% - 36px);
  }

  .history-intro,
  .history-chapter {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .history-intro__text {
    grid-column: auto;
  }

  .history-years {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  .history-chapter__year {
    font-size: 54px;
  }

}

@media (max-width: 560px) {
  .history-hero {
    min-height: clamp(390px, 56svh, 460px);
    background-position: center;
  }

  .history-hero__content {
    padding: 110px 0 34px;
  }

  .history-hero__content h1 {
    margin: 18px 0 24px;
    font-size: clamp(50px, 16vw, 66px);
  }

  .history-intro {
    padding: 72px 0;
  }

  .history-intro h2 {
    font-size: clamp(42px, 12.5vw, 54px);
  }

  .history-years {
    width: calc(100% - 24px);
  }

  .history-chapter {
    width: calc(100% - 34px);
    padding: 96px 0;
  }

  .history-chapter h2 {
    margin: 24px 0 38px;
    font-size: clamp(40px, 11.5vw, 52px);
  }

  .history-chapter__copy > p:not(.history-kicker) {
    font-size: 16px;
    line-height: 1.72;
  }

  .history-quote {
    width: calc(100% - 24px);
    min-height: 48vh;
    padding: 80px 18px;
    border-radius: 20px;
  }

  .history-quote p {
    font-size: clamp(40px, 12vw, 54px);
  }

  .history-closing {
    width: calc(100% - 34px);
  }
}


/* =========================================================
   31. CABEÇALHO UNIFICADO
   Mesmo menu visual da página inicial em todas as páginas.
========================================================= */

:root {
  --header-height: 96px;
}

.site-header,
.site-header.is-scrolled,
.site-header.open,
body.page-history .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header::before,
.site-header.is-scrolled::before,
.site-header.open::before,
body.page-history .site-header::before {
  display: none !important;
}

.site-header .header-inner,
.site-header.is-scrolled .header-inner {
  position: relative;
  width: calc(100% - 76px);
  max-width: none;
  height: 96px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.site-header .brand {
  position: static;
  left: auto;
  width: 168px;
  flex: 0 0 168px;
}

.site-header .brand img,
body.page-history .site-header .brand img {
  width: 168px !important;
  max-width: 168px !important;
  filter: brightness(0) !important;
}

.site-header .main-nav {
  position: absolute;
  top: 20px;
  right: -38px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  padding: 0 70px 0 34px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: rgba(0, 0, 0, 0.32) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-header .main-nav a,
body.page-history .site-header .main-nav a {
  padding: 0;
  border: 0;
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: none;
}

.site-header .main-nav a:hover,
body.page-history .site-header .main-nav a:hover {
  border: 0;
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-header .header-actions {
  display: none !important;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 82px;
  }

  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    width: calc(100% - 30px);
    height: 82px;
    min-height: 82px;
    padding: 0;
    flex-wrap: nowrap;
  }

  .site-header .brand {
    width: 138px;
    flex-basis: 138px;
  }

  .site-header .brand img,
  body.page-history .site-header .brand img {
    width: 138px !important;
    max-width: 138px !important;
  }

  .site-header .mobile-btn {
    position: relative;
    z-index: 2;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    margin: 0 0 0 auto;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 50%;
    background: rgba(242, 242, 239, 0.76);
    color: transparent;
    font-size: 0;
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-header .mobile-btn::before,
  .site-header .mobile-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 17px;
    height: 1px;
    background: #111210;
    transform: translateX(-50%);
  }

  .site-header .mobile-btn::before {
    top: 18px;
  }

  .site-header .mobile-btn::after {
    top: 25px;
  }

  .site-header .main-nav {
    display: none;
  }

  .site-header.open .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.90) !important;
  }

  .site-header.open .main-nav a,
  body.page-history .site-header.open .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
  }

  .site-header.open .main-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.open .header-actions {
    display: none !important;
  }

  .page-main {
    margin-top: var(--header-height);
  }
}

@media (max-width: 560px) {
  .site-header .brand {
    width: 110px;
    flex-basis: 110px;
  }

  .site-header .brand img,
  body.page-history .site-header .brand img {
    width: 110px !important;
    max-width: 110px !important;
  }

}
