﻿:root {
  --bonax-gradient: linear-gradient(125deg, #5b21b6 0%, #2563eb 45%, #db2777 100%);
  --bonax-gradient-soft: linear-gradient(135deg, rgba(91, 33, 182, 0.92) 0%, rgba(37, 99, 235, 0.88) 50%, rgba(219, 39, 119, 0.9) 100%);
  --text: #0a0a0a;
  --text-muted: #404040;
  --surface: #ffffff;
  --surface-dark: #0f0f12;
  --font-brand: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-brand);
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #fff;
  z-index: 200;
  border-radius: 8px;
  outline: 2px solid #2563eb;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(15, 15, 18, 0.08);
}
.site-header:not(.is-scrolled) .nav-link {
  color: #fff;
}
.site-header:not(.is-scrolled) .nav-link:hover,
.site-header:not(.is-scrolled) .nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}
.site-header.is-scrolled .nav-link {
  color: var(--text);
}
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus-visible {
  background: rgba(91, 33, 182, 0.08);
  color: #5b21b6;
}
.site-header.is-scrolled .menu-toggle span {
  background: var(--text);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}
/* No fundo escuro (hero): inverte para branco */
.logo-dark { display: none; }
.site-header:not(.is-scrolled) .logo-light {
  filter: brightness(0) invert(1);
  drop-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.site-header.is-scrolled .logo-light { display: none; }
.site-header.is-scrolled .logo-dark { display: block; }
/* Páginas internas: sem filtro (fundo branco) */
body.page-inner .logo-light { filter: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}
.nav-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.site-header.is-scrolled .nav-link:focus-visible {
  outline-color: #2563eb;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 22px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s;
}

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 12, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 5rem 1rem 1rem;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 100%);
    padding: 1.25rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    gap: 0.25rem;
  }
  .nav-link {
    color: var(--text) !important;
    border-radius: 10px;
  }
  .nav-link:hover {
    background: rgba(91, 33, 182, 0.08) !important;
    color: #5b21b6 !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
  background: #0f0f12;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bonax-gradient-soft), url("imagens/fotos/bonax-eventos-ativacao-hero.png") center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.55), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 span {
  background: linear-gradient(90deg, #e9d5ff, #93c5fd, #fbcfe8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  opacity: 0.94;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.btn-primary {
  background: var(--bonax-gradient);
  color: #fff;
  box-shadow:
    0 12px 40px rgba(91, 33, 182, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-glow {
  box-shadow:
    0 12px 40px rgba(91, 33, 182, 0.5),
    0 0 48px rgba(219, 39, 119, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.btn-glow:hover {
  box-shadow:
    0 16px 48px rgba(91, 33, 182, 0.55),
    0 0 56px rgba(219, 39, 119, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: float 2.2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}
.section-title {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.section-title .grad {
  background: var(--bonax-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.about {
  background: #fff;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(91, 33, 182, 0.15);
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bonax-gradient);
  opacity: 0.15;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.about-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.about-copy p strong { color: var(--text); }

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill-list li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(91, 33, 182, 0.15);
}

/* Cases */
.cases {
  background: #fafafa;
}
.cases-inner { max-width: 1200px; margin: 0 auto; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .case-grid { grid-template-columns: 1fr; }
}
.case-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  background: #0f0f12;
}
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.case-card:hover img { transform: scale(1.05); }
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
  z-index: 1;
}
.case-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 2;
  color: #fff;
}
.case-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.case-meta h3 {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  margin: 0.35rem 0 0;
  font-weight: 700;
}

/* Serviços */
.services-section { background: #fafafa; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: rgba(91, 33, 182, 0.25);
  box-shadow: 0 12px 40px rgba(91, 33, 182, 0.1);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bonax-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.3);
  flex-shrink: 0;
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 0 0.6rem;
  line-height: 1.35;
  color: var(--text);
}
.service-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* Serviços — destaque "Por que Bonax" */
.services-highlight {
  background: #0a0a0c;
  color: #fafafa;
  padding: clamp(3rem, 7vw, 4.5rem) 1.25rem;
}
.services-highlight-inner {
  max-width: 860px;
  margin: 0 auto;
}
.services-highlight h2 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 2rem;
  text-align: center;
  letter-spacing: 0.03em;
  color: #fff;
}
.services-highlight h2 span {
  background: var(--bonax-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  transition: border-color 0.25s;
}
.highlight-list li:hover {
  border-color: rgba(167, 139, 250, 0.3);
}
.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bonax-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.35);
  flex-shrink: 0;
}
.highlight-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.highlight-list li > div:last-child strong {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.highlight-list li > div:last-child p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.55;
}

/* Oportunidades + Contato strip */
.strip-gradient {
  background: var(--bonax-gradient);
  color: #fff;
}
.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.strip-inner h2 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}
.strip-inner p { margin: 0 0 1.5rem; opacity: 0.95; }

.forms-section {
  background: #fff;
}
.forms-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .forms-wrap { grid-template-columns: 1fr; }
}
.form-block {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  background: #fcfcfc;
}
.form-block h3 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}
.form-block > p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
input, textarea, select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
textarea { min-height: 110px; resize: vertical; }
.form-block .btn-primary {
  width: 100%;
  margin-top: 0.25rem;
  box-shadow: none;
}

/* Blog */
.blog-section { background: var(--surface-dark); color: #fff; }
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-section .section-title { color: #fff; }
.blog-section .section-sub { color: #a3a3a3; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: #18181c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.4);
}
.blog-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.1rem 1.25rem 1.35rem; }
.blog-card time {
  font-size: 0.75rem;
  color: #a78bfa;
  font-weight: 600;
}
.blog-card h4 {
  margin: 0.5rem 0 0;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  line-height: 1.35;
}

/* Mascote strip */
.mascote-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
  background: #fff;
}
.mascote-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 640px) {
  .mascote-inner { grid-template-columns: 1fr; text-align: center; }
  .mascote-inner img { max-width: 200px; margin: 0 auto; }
}
.mascote-inner img { filter: drop-shadow(0 16px 32px rgba(91, 33, 182, 0.2)); }

/* Home — pilares (valor + operação) */
.home-pillars {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) 1.25rem;
  background: #0a0a0c;
  color: #fafafa;
  overflow: hidden;
}
.home-pillars::before,
.home-pillars::after {
  content: "";
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55) 0%, transparent 72%);
}
.home-pillars::before { top: -32%; left: -18%; }
.home-pillars::after {
  bottom: -28%;
  right: -12%;
  opacity: 0.1;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.5) 0%, transparent 72%);
}
.home-pillars-xmark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background:
    linear-gradient(118deg, transparent 47.5%, rgba(167, 139, 250, 0.6) 49%, rgba(167, 139, 250, 0.6) 51%, transparent 52.5%),
    linear-gradient(62deg, transparent 47.5%, rgba(96, 165, 250, 0.55) 49%, rgba(96, 165, 250, 0.55) 51%, transparent 52.5%);
}
.home-pillars-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.home-pillars-heading {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: #fff;
}
.home-pillars-lead {
  text-align: center;
  color: rgba(250, 250, 250, 0.72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.55;
}
.pillar-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s;
}
.pillar-card:hover {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.pillar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bonax-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.35);
}
.pillar-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: #fff;
  flex-shrink: 0;
}
.pillar-card h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.65rem;
  color: #fff;
  line-height: 1.3;
}
.pillar-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.72);
}

/* Home — manifesto (quem somos em destaque) */
.home-manifesto {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.25rem) 1.25rem;
  background: #050506;
  color: #fafafa;
  text-align: center;
  overflow: hidden;
}
.home-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.1) 0%, transparent 42%, rgba(219, 39, 119, 0.07) 100%);
  pointer-events: none;
}
.home-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.home-manifesto .brand-wordmark {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  color: #fff;
  line-height: 1.1;
}
.home-manifesto .brand-tagline {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.52);
  margin: 0 0 1.5rem;
}
.home-divider-gradient {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  margin: 0 auto 1.75rem;
  background: var(--bonax-gradient);
  box-shadow: 0 0 22px rgba(219, 39, 119, 0.42);
}
.home-manifesto-text {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.86);
}
.home-manifesto-text strong {
  color: #fff;
  font-weight: 700;
}
.home-manifesto-text + .home-manifesto-text {
  margin-top: 0;
  margin-bottom: 2rem;
  color: rgba(250, 250, 250, 0.78);
}
.home-manifesto .cta-inline {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: #0a0a0c;
  color: #a3a3a3;
  padding: 2.75rem 1.25rem 2rem;
  font-size: 0.875rem;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.site-footer .footer-brand img {
  height: 42px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer-label {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.footer-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover {
  color: #e9d5ff;
}
.footer-address {
  margin: 0;
  color: #e5e5e5;
  line-height: 1.55;
  font-style: normal;
}
.footer-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(163, 163, 163, 0.85);
  line-height: 1.4;
}
.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: #737373;
}
.footer-copy strong {
  color: #fff;
}

/* Cabeçalho — área do menu (toggle + nav) */
.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

/* CTAs em linha */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.cta-inline--center {
  justify-content: center;
  margin-top: 0;
}
.cta-inline--tight {
  margin-top: 1.25rem;
}
.about-copy .cta-inline,
.mascote-inner .cta-inline {
  margin-top: 1.5rem;
}

/* Faixa CTA (páginas internas) */
.cta-strip {
  background: linear-gradient(135deg, #1a0a2e 0%, #0f172a 50%, #2a0a18 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  text-align: center;
}
.cta-strip-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-strip h2 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: #fff;
}
.cta-strip p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.5;
}
.cta-strip .cta-inline {
  justify-content: center;
  margin-top: 0;
}

/* Botão flutuante WhatsApp */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.wa-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.wa-float svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 480px) {
  .wa-float {
    width: 54px;
    height: 54px;
    right: 0.85rem;
    bottom: 0.85rem;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Páginas internas (cabeçalho sempre sólido) */
body.page-inner .site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(15, 15, 18, 0.08);
}
body.page-inner .site-header .nav-link {
  color: var(--text);
}
body.page-inner .site-header .nav-link:hover,
body.page-inner .site-header .nav-link:focus-visible {
  background: rgba(91, 33, 182, 0.08);
  color: #5b21b6;
}
body.page-inner .site-header .nav-link:focus-visible {
  outline-color: #2563eb;
}
body.page-inner .logo-light { display: none !important; }
body.page-inner .logo-dark { display: block !important; }
body.page-inner .menu-toggle span { background: var(--text); }

.site-header:not(.is-scrolled) .nav-link.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.site-header.is-scrolled .nav-link.is-active,
body.page-inner .site-header .nav-link.is-active {
  background: rgba(91, 33, 182, 0.12);
  color: #5b21b6;
}

.page-hero {
  padding: clamp(5.5rem, 12vw, 7rem) 1.25rem 2.75rem;
  background: var(--bonax-gradient);
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.page-hero p {
  margin: 0 auto;
  opacity: 0.95;
  max-width: 560px;
  font-size: 1.05rem;
}

.form-wrap-single {
  max-width: 560px;
  margin: 0 auto;
}

/* Artigo do Blog */
.post-hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #0f0f12;
  margin-top: 72px;
}
.post-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem clamp(3rem, 7vw, 5rem);
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.post-breadcrumb a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-breadcrumb a:hover { color: #5b21b6; }
.post-breadcrumb span { opacity: 0.5; }
.post-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(91, 33, 182, 0.2);
  color: #5b21b6;
  margin-bottom: 1rem;
}
.post-wrap h1 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  color: var(--text);
}
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.post-meta-row time { font-weight: 600; }
.post-meta-row .post-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.post-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}
.post-content h2 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--text);
}
.post-content h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}
.post-content p { margin: 0 0 1.25rem; }
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.post-content li { margin-bottom: 0.5rem; }
.post-content strong { color: var(--text); }
.post-content blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #7c3aed;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(37, 99, 235, 0.04));
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #444;
}
.post-content blockquote p { margin: 0; }
.post-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a0a2e 0%, #0f172a 60%, #2a0a18 100%);
  color: #fff;
  text-align: center;
}
.post-cta-box h3 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.post-cta-box p { margin: 0 0 1.25rem; opacity: 0.88; font-size: 0.95rem; }

/* Cards do blog clicáveis */
.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card-link:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 3px;
  border-radius: 16px;
}
