/* Media kit — Narrativa Tricolor
   Paleta inspirada no Flu: grená, verde, branco sobre base escura */

/* Cocomat Pro — licença web obrigatória; .woff2 em /fonts/ (ver fonts/nomes-dos-arquivos.txt) */
@font-face {
  font-family: "Cocomat Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/CocomatPro-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Cocomat Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/CocomatPro-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Cocomat Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/CocomatPro-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Cocomat Pro";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/CocomatPro-Heavy.woff2") format("woff2");
}

:root {
  --grená: #8b2332;
  --grená-deep: #5c1520;
  --verde: #0f6b4e;
  --verde-bright: #1fa67a;
  --ouro-mate: #c4a35a;
  --bg-deep: #07090c;
  --bg-card: rgba(18, 22, 28, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaed;
  --text-muted: #94a3a8;
  --radius: 18px;
  --radius-sm: 10px;
  --font-sans: "Cocomat Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cocomat Pro", var(--font-sans);
  --shadow-glow: 0 0 60px rgba(139, 35, 50, 0.15);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height:1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

/* Fundo animado: malha + orbes */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(139, 35, 50, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(15, 107, 78, 0.3), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(196, 163, 90, 0.08), transparent 45%),
    var(--bg-deep);
  animation: meshShift 18s var(--ease-out) infinite alternate;
}

@keyframes meshShift {
  0% {
    filter: hue-rotate(-4deg) saturate(1);
    transform: scale(1);
  }
  100% {
    filter: hue-rotate(6deg) saturate(1.15);
    transform: scale(1.03);
  }
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  margin: 0 auto;
  max-width: 1120px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 9, 12, 0.75);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

/* Hambúrguer (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(31, 166, 122, 0.4);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--verde-bright);
  outline-offset: 2px;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
  transform-origin: center;
}

.site-nav.is-open .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-nav.is-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu hambúrguer até 1023px (celular, tablet e janela estreita no desktop) */
@media (max-width: 1023px) {
  .site-nav {
    flex-wrap: wrap;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex !important;
    order: 2;
  }

  .site-nav .logo {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav__drawer {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    display: none;
    overflow: hidden;
    border-top: 1px solid transparent;
  }

  .site-nav.is-open .site-nav__drawer {
    display: block;
    overflow: auto;
    max-height: min(75vh, 420px);
    border-top-color: var(--border);
    -webkit-overflow-scrolling: touch;
    animation: navDrawerIn 0.3s var(--ease-out);
  }

  @keyframes navDrawerIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .site-nav__drawer ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.5rem 0 1.1rem;
    margin-top: 0.35rem;
  }

  .site-nav__drawer li {
    width: 100%;
  }

  .site-nav__drawer a:not(.logo) {
    display: block;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: none;
  }

  .site-nav__drawer a:not(.logo):hover,
  .site-nav__drawer a:not(.logo):active {
    color: var(--verde-bright);
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 0.35rem;
    border-radius: var(--radius-sm);
  }

  .site-nav__drawer li:last-child a {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none !important;
  }

  .site-nav .logo {
    flex: 0 1 auto;
  }

  .site-nav__drawer {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    width: auto !important;
    flex: 0 1 auto !important;
  }
}

.site-nav a.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(135deg, var(--text) 0%, var(--verde-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.site-nav a:not(.logo) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.site-nav a:not(.logo):hover {
  color: var(--verde-bright);
  transform: translateY(-1px);
}

/* Layout */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--grená) 0%, #ff6b7a 35%, var(--verde-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 0.75rem;
}

.hero-line {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.92;
  max-width: 58ch;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--verde);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero com retrato (JPG perfil) */
.hero--with-photo {
  padding-bottom: 2.25rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(272px, 38%);
    gap: 2.5rem 3rem;
  }
}

.hero-copy {
  min-width: 0;
}

.hero-portrait {
  margin: 0;
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 920px) {
  .hero-portrait {
    justify-self: end;
    max-width: 380px;
  }
}

.hero-portrait__glow {
  position: absolute;
  inset: -14% -10%;
  background:
    radial-gradient(ellipse 70% 60% at 45% 35%, rgba(139, 35, 50, 0.5), transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 75%, rgba(31, 166, 122, 0.35), transparent 60%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
  animation: portraitGlow 12s ease-in-out infinite alternate;
}

@keyframes portraitGlow {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero-portrait__frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 80px rgba(139, 35, 50, 0.12);
  animation: portraitFloat 8s ease-in-out infinite;
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.hero-portrait__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 4 / 5;
}

.hero-portrait__caption {
  margin: 0.85rem 0 0;
  font-size: 0.74rem;
  text-align: center;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Galeria JPG — mosaico (bento) */
.galeria-intro {
  margin-bottom: 1.35rem;
  max-width: 62ch;
}

.photo-bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.photo-bento__item {
  margin: 0;
  padding: 0;
  min-height: 0;
}

.photo-bento__item .photo-bento__cell {
  height: 100%;
}

.photo-bento__cell {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  outline: none;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s;
}

.photo-bento__cell:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.55);
  border-color: rgba(31, 166, 122, 0.5);
}

.photo-bento__cell:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 35, 50, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.photo-bento__cell img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 0.75s var(--ease-out);
}

.photo-bento__cell:hover img {
  transform: scale(1.07);
}

.photo-bento__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 58%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease-out);
  pointer-events: none;
}

.photo-bento__cell:hover .photo-bento__shine {
  transform: translateX(120%);
}

@media (min-width: 720px) {
  .photo-bento {
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: minmax(170px, 30vh) minmax(170px, 30vh);
    gap: 0.95rem;
  }

  .photo-bento__item--hero {
    grid-row: 1 / -1;
  }

  .photo-bento__item--tall {
    grid-column: 2;
    grid-row: 1;
  }

  .photo-bento__item--wide {
    grid-column: 2;
    grid-row: 2;
  }

  .photo-bento__cell--hero img,
  .photo-bento__cell--tall img,
  .photo-bento__cell--wide img {
    min-height: 100%;
    aspect-ratio: unset;
  }
}

@media (max-width: 719px) {
  .photo-bento__cell--hero img {
    min-height: 260px;
  }

  .photo-bento__cell--tall img {
    min-height: 220px;
  }

  .photo-bento__cell--wide img {
    min-height: 200px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--grená) 0%, var(--grená-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 35, 50, 0.35);
}

.btn-ghost {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.btn-ghost:hover {
  color: var(--verde-bright);
  border-color: var(--verde-bright);
}

/* Seções */
section {
  margin-bottom: 3.5rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grená);
  opacity: 0.9;
  letter-spacing: 0.1em;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.card:hover {
  border-color: rgba(31, 166, 122, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

.placeholder {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--ouro-mate);
  background: rgba(196, 163, 90, 0.12);
  border: 1px dashed rgba(196, 163, 90, 0.4);
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.5rem 0 0.65rem;
  color: var(--text);
}

h3:first-of-type {
  margin-top: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

/* Grid pilares */
.pillar-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grená), var(--verde-bright));
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: grayscale(0.2);
}

/* Tabelas */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin: 1rem 0;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 640px;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--verde-bright);
  background: rgba(15, 107, 78, 0.12);
}

tr:last-child td {
  border-bottom: none;
}

tbody tr {
  transition: background 0.2s;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Lista parceria */
.partnership-list {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .partnership-list {
    grid-template-columns: 1fr 1fr;
  }
}

.partnership-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, background 0.25s;
}

.partnership-item:hover {
  border-color: rgba(139, 35, 50, 0.4);
  background: rgba(139, 35, 50, 0.06);
}

.partnership-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.partnership-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pacotes */
.tier-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}

.tier::after {
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(31, 166, 122, 0.2), transparent 70%);
  pointer-events: none;
}

.tier-bronze {
  border-color: rgba(180, 120, 80, 0.35);
}

.tier-prata {
  border-color: rgba(180, 190, 200, 0.35);
  transform: scale(1);
}

@media (min-width: 900px) {
  .tier-prata {
    transform: scale(1.03);
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  }
}

.tier-ouro {
  border-color: rgba(196, 163, 90, 0.45);
}

.tier h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.tier ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tier li {
  margin-bottom: 0.5rem;
}

.tier-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

/* Lista compliance / checklist */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1rem;
  height: 1rem;
  border-radius: 5px;
  border: 2px solid var(--verde);
  background: rgba(15, 107, 78, 0.15);
}

.checklist-page .list-check li::before {
  border-color: var(--ouro-mate);
  background: rgba(196, 163, 90, 0.12);
}

/* Contato */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.contact-row {
  display: grid;
  gap: 0.35rem 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

@media (min-width: 600px) {
  .contact-row {
    grid-template-columns: 180px 1fr;
    align-items: baseline;
  }
}

.contact-row dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--verde-bright);
  font-weight: 700;
  margin: 0;
}

.contact-row dd {
  margin: 0;
  color: var(--text-muted);
}

.cta-box {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 166, 122, 0.35);
  background: linear-gradient(135deg, rgba(15, 107, 78, 0.15), rgba(139, 35, 50, 0.1));
  font-style: italic;
  color: var(--text);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}

footer em {
  color: var(--ouro-mate);
  font-style: normal;
  font-weight: 600;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

code {
  font-size: 0.88em;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--verde-bright);
}

/* --- Narrativa Tricolor: blocos de conteúdo --- */

.hero-byline {
  margin: -0.35rem 0 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

.hero-meta {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-meta-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-line--quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--verde-bright);
  border-left-color: var(--grená);
  opacity: 1;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.list-inline-check {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.list-inline-check li {
  margin-bottom: 0.35rem;
}

.pin-callout {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 163, 90, 0.35);
  background: rgba(196, 163, 90, 0.08);
  color: var(--text);
  font-size: 0.95rem;
}

.pin-callout-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ouro-mate);
  margin-right: 0.5rem;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.subsection-title:first-of-type {
  margin-top: 0.5rem;
}

.table-wrap--narrow table {
  min-width: 0;
  width: 100%;
}

@media (max-width: 520px) {
  .table-wrap--narrow table {
    font-size: 0.8rem;
  }

  .table-wrap--narrow th,
  .table-wrap--narrow td {
    padding: 0.65rem 0.65rem;
  }
}

.stat-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s var(--ease-out);
}

.stat-card:hover {
  border-color: rgba(31, 166, 122, 0.35);
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-bright);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.highlight-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .highlight-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-card p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.two-col-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .two-col-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.list-plain {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.list-plain li {
  margin-bottom: 0.4rem;
}

.list-plain.tight li {
  margin-bottom: 0.25rem;
}

.content-format-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .content-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .content-format-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.content-format-card h3 {
  margin-top: 0;
  font-size: 0.98rem;
}

.lead-muted {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.partnership-list--numbered {
  counter-reset: commercial;
}

.partnership-list--numbered .partnership-item {
  position: relative;
  padding-left: 2.75rem;
}

.partnership-list--numbered .partnership-item::before {
  counter-increment: commercial;
  content: counter(commercial);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--grená), var(--grená-deep));
  border-radius: 8px;
  line-height: 1;
}

.compliance-mini {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  font-style: normal;
}

.differentials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .differentials-list {
    grid-template-columns: 1fr 1fr;
  }
}

.differentials-list li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(139, 35, 50, 0.06);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.differentials-list li:hover {
  border-color: rgba(139, 35, 50, 0.45);
  transform: translateX(4px);
}

.differentials-list li::before {
  content: "\1F525";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1;
}

.case-example-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ouro-mate);
  margin: 0 0 0.35rem;
}

.list-goals {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.list-goals li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

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

.list-goals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--verde-bright);
  box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.25);
}

.closing-quote {
  margin: 2rem 0 0;
  padding: 1.35rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 35, 50, 0.18), rgba(15, 107, 78, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
}

.card--soft {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}

.pitch-list li {
  margin-bottom: 0.65rem;
}

.pitch-list li:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .accent,
  .hero-portrait__glow,
  .hero-portrait__frame {
    animation: none;
  }

  .photo-bento__cell:hover img {
    transform: none;
  }

  .photo-bento__cell:hover {
    transform: none;
  }

  .photo-bento__shine {
    display: none;
  }

  .site-nav__drawer {
    transition: none !important;
  }

  .nav-toggle__line {
    transition: none;
  }

  .site-nav.is-open .site-nav__drawer {
    animation: none;
  }
}
