/* =============================================
       RESET & CSS VARIABLES
    ============================================= */
*,
*::before,
*::after {
  /* box-sizing: border-box;
  margin: 0;
  padding: 0; */
}

:root {
  --black: #111111;
  --black-2: #161616;
  --black-3: #1A1A1A;
  --gray: #727272;
  --gray-lt: #999;
  --white: #F9F9F9;
  --white-2: #F2F1EF;
  --gold: #BF9D6C;
  --gold-dk: #A3844D;
  --gold-lt: #D4B98A;
  --border: rgba(191, 157, 108, 0.22);
  --border-w: rgba(249, 249, 249, 0.06);
  --max-w: 1100px;
}

/* html {
  scroll-behavior: smooth;
} */





/* =============================================
       FIXED HEADER
    ============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 157, 108, 0.1);
  padding: 18px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;

  span {
    color: #BF9D6C;
  }

}

/* =============================================
       HERO
    ============================================= */



.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: top;
  padding-bottom: 80px;

  h1 {
    color: var(--white);
    margin-bottom: 28px;
  }

  p {
    color: rgba(249, 249, 249, 0.55);
    margin-bottom: 36px;
    font-size: 16px;
  }
}



.hero-pillars {
  list-style: none;
  margin-bottom: 44px;

  li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(249, 249, 249, 0.65);
    padding: 11px 0;
    border-bottom: 1px solid rgba(191, 157, 108, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;

    &::before {
      content: '';
      width: 18px;
      height: 1px;
      background: #BF9D6C;
      flex-shrink: 0;
    }
  }
}


/* Dashboard Visual */
.hero-img-wrapper {
  position: relative;
  /* border: 1px solid var(--border); */
  overflow: hidden;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.05) 60%);
  z-index: 2;
  pointer-events: none;
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border-right: 14px solid #BF9D6C;
  border-bottom: 14px solid #BF9D6C;
  z-index: 3;
}

.corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-top: 14px solid #BF9D6C;
  border-left: 14px solid #BF9D6C;
  z-index: 3;
}

.hero-img-wrapper img {
  display: block;
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  border-radius: 30px;

  transform: scale(1.5);
  transform-origin: bottom;
}

.dashboard-placeholder {
  width: 100%;
  max-height: 680px;
  /* background: var(--black-3); */
  position: relative;
  overflow: hidden;
}

.dash-svg {
  width: 100%;
  height: 100%;
}

.hero-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--border);
  border-left: 2px solid #BF9D6C;
  padding: 10px 16px;
  z-index: 4;
}

.hero-img-tag span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BF9D6C;
  display: block;
}

.hero-img-tag p {
  font-size: 11px;
  color: rgba(249, 249, 249, 0.45);
  margin-top: 2px;
}

/* =============================================
       PERFORMANCE SNAPSHOT — 4 KPI Cards
    ============================================= */
#snapshot {
  background: var(--black-2);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.snapshot-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kpi-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.kpi-card:last-child {
  border-right: none;
}

.kpi-card:hover {
  background: rgba(191, 157, 108, 0.03);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #BF9D6C;
  opacity: 0;
  transition: opacity 0.25s;
}

.kpi-card:hover::before {
  opacity: 0.5;
}

.kpi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.kpi-num {
  font-size: 42px;
  font-weight: 700;
  color: #BF9D6C;
  line-height: 1;
  letter-spacing: -0.03em;
}

.kpi-num sup {
  font-size: 16px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.kpi-trend {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: rgba(191, 157, 108, 0.1);
  color: #BF9D6C;
  border: 1px solid var(--border);
}

.kpi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.5);
  display: block;
  margin-bottom: 12px;
}

.kpi-micro {
  font-size: 11px;
  color: rgba(249, 249, 249, 0.26);
  line-height: 1.5;
}

.sparkline {
  display: block;
  margin-top: 18px;
}

.spark-line {
  fill: none;
  stroke: #BF9D6C;
  stroke-width: 1.5;
  opacity: 0.6;
}

.spark-fill {
  fill: url(#sparkGrad);
  opacity: 0.15;
}

/* =============================================
       DOR
    ============================================= */
#dor {
  background: var(--white);
}

.dor-header {
  max-width: 620px;
  margin-bottom: 60px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(17, 17, 17, 0.07);
  margin-bottom: 60px;
}

.pain-item {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}

.pain-item:hover {
  background: #F5F4F2;
}

.pain-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 24px;
  height: 2px;
  background: #BF9D6C;
}

.pain-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #BF9D6C;
  opacity: 0.6;
  display: block;
  margin-bottom: 14px;
}

.pain-item h3 {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 10px;
}

.pain-item p {
  font-size: 13px;
  line-height: 1.7;
}

.dor-final {
  border-left: 2px solid #BF9D6C;
  padding-left: 28px;
}

.dor-final p {
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.55;
}

/* =============================================
       MÉTODO 5P + FUNIL
    ============================================= */
#metodo {
  background: #141414;
}

.metodo-header {
  text-align: center;
  margin-bottom: 64px;
}

.metodo-header h2 {
  color: var(--white);
}

.metodo-header p {
  color: rgba(249, 249, 249, 0.38);
  max-width: 500px;
  margin: 14px auto 0;
  font-size: 14px;
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}

.metodo-card {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.metodo-card:last-child {
  border-right: none;
}

.metodo-card:hover {
  background: rgba(191, 157, 108, 0.04);
}

.metodo-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.metodo-icon svg {
  width: 20px;
  height: 20px;
  stroke: #BF9D6C;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metodo-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(191, 157, 108, 0.5);
  display: block;
  margin-bottom: 10px;
}

.metodo-card h3 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 10px;
}

.metodo-card p {
  font-size: 12px;
  color: rgba(249, 249, 249, 0.36);
  line-height: 1.7;
}

/* Funil horizontal */
.funnel-wrap {
  padding: 0;
}

.funnel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(191, 157, 108, 0.5);
  margin-bottom: 24px;
}

.funnel-stages {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  overflow: hidden;
}

.funnel-step {
  flex: 1;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.funnel-step:last-child {
  border-right: none;
}

.funnel-step:hover {
  background: rgba(191, 157, 108, 0.05);
}

.funnel-step::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #141414;
  z-index: 2;
}

.funnel-step:last-child::after {
  display: none;
}

.funnel-step-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #BF9D6C;
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}

.funnel-step h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.funnel-gap {
  font-size: 10px;
  color: rgba(249, 249, 249, 0.3);
  line-height: 1.5;
}

.funnel-gap strong {
  color: rgba(191, 157, 108, 0.65);
  font-weight: 600;
  display: block;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* =============================================
       DIFERENCIAL
    ============================================= */
#diferencial {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.dif-header {
  margin-bottom: 56px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.compare-col-wrap {
  background: var(--black-2);
}

.compare-col-head {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-col-head.alonfy {
  border-top: 2px solid #BF9D6C;
}

.compare-col-head.trad {
  border-top: 2px solid #2a2a2a;
}

.ch-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.compare-col-head.alonfy .ch-badge {
  background: rgba(191, 157, 108, 0.12);
  color: #BF9D6C;
  border: 1px solid var(--border);
}

.compare-col-head.trad .ch-badge {
  background: rgba(255, 255, 255, 0.04);
  color: #727272;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.04);
}

.compare-row:last-child {
  border-bottom: none;
}

.cr-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cr-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cr-icon.yes {
  background: rgba(191, 157, 108, 0.12);
}

.cr-icon.yes svg {
  stroke: #BF9D6C;
}

.cr-icon.no {
  background: rgba(255, 255, 255, 0.04);
}

.cr-icon.no svg {
  stroke: #3a3a3a;
}

.cr-text {
  font-size: 13px;
  color: rgba(249, 249, 249, 0.5);
  line-height: 1.5;
}

.cr-text.dim {
  color: rgba(255, 255, 255, 0.2);
}

.cr-text.gold {
  color: rgba(249, 249, 249, 0.78);
  font-weight: 500;
}

/* =============================================
       PROOF WALL
    ============================================= */
#prova {
  background: var(--white-2);
}

.prova-header {
  margin-bottom: 56px;
}

.prova-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(17, 17, 17, 0.08);
  margin-bottom: 56px;
}

.prova-num-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-right: 1px solid #BF9D6C;
    border-bottom: 1px solid #BF9D6C;
    opacity: 0.35;
  }
}


.big-number {
  display: flex;
  gap: 10px;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;

  span {
    color: #BF9D6C;
  }
}


.num-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #727272;
  margin-top: 12px;
  display: block;
}

/* 2×2 proof grid */
.proof-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(17, 17, 17, 0.1);
  margin-bottom: 16px;
}

.proof-img-card {
  position: relative;
  overflow: hidden;
  background: var(--black-3);

  img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: brightness(0.75) grayscale(0.2) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  /* // Hover */
  &:hover {
    transform: scale(1.03);
    filter: brightness(0.85) grayscale(0) contrast(1.05);
  }
}



.proof-mock {
  width: 100%;
  height: 260px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  svg {
    width: 100%;
    height: 100%;
  }
}


.proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, 0.88) 100%);
  z-index: 2;
}

.proof-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  z-index: 3;


  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-top: 1px solid #BF9D6C;
    border-left: 1px solid #BF9D6C;
    z-index: 4;
    opacity: 0.5;
  }


  span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #BF9D6C;
    display: block;
  }

  p {
    font-size: 11px;
    color: rgba(249, 249, 249, 0.45);
    margin-top: 2px;
  }
}


.proof-footnote {
  font-size: 11px;
  color: var(--gray-lt);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

/* =============================================
       FILTRO
    ============================================= */
#filtro {
  background: var(--white);
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.filtro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.filtro-left h2 {
  margin-bottom: 16px;
}

.filtro-left>p {
  margin-bottom: 40px;
}

.filtro-criteria {
  list-style: none;
}

.filtro-criteria li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.filtro-criteria li .check {
  width: 20px;
  height: 20px;
  border: 1px solid #BF9D6C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.filtro-criteria li .check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #BF9D6C;
}

.filtro-right {
  background: var(--black);
  padding: 52px 48px;
  position: relative;
}

.filtro-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #BF9D6C 0%, transparent 100%);
}

.filtro-quote {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 36px;
}













/* =============================================
       FOOTER
    ============================================= */
footer {
  background: var(--black);
  padding: 72px 0 44px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}

.footer-brand .logo {
  font-size: 19px;
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(249, 249, 249, 0.3);
  max-width: 300px;
  line-height: 1.75;
}

.footer-disclaimer {
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.footer-disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: #BF9D6C;
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(249, 249, 249, 0.3);
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-cta {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(249, 249, 249, 0.05);
}

.footer-cta p {
  font-size: 13px;
  color: rgba(249, 249, 249, 0.3);
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(249, 249, 249, 0.04);
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(249, 249, 249, 0.18);
}

/* =============================================
       FLOATING BAR
    ============================================= */
.floating-bar {
  width: calc(100% - (20px + 20px));
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  z-index: 150;
  text-align: center;
}

/* =============================================
       ANIMATIONS
    ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.65s ease both;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.34s;
}

.d4 {
  animation-delay: 0.48s;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 960px) {

  section {
    padding: 72px 0;
  }



  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 0;
  }

  .snapshot-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpi-card:nth-child(2) {
    border-right: none;
  }

  .kpi-card:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .kpi-card:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .metodo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metodo-card:nth-child(2) {
    border-right: none;
  }

  .metodo-card:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .funnel-stages {
    flex-wrap: wrap;
  }

  .funnel-step {
    flex: 0 0 calc(50% - 1px);
    border-bottom: 1px solid var(--border);
  }

  .funnel-step::after {
    display: none;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .prova-numbers {
    grid-template-columns: 1fr;
  }

  .proof-wall {
    grid-template-columns: 1fr;
  }

  .filtro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nav .btn {
    display: none;
  }

  .floating-bar {
    display: block;

    .btn {
      width: calc(100% - (38px + 38px));
      text-align: center;
      display: block;
    }
  }


  .big-number {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .metodo-grid {
    grid-template-columns: 1fr;
  }

  .metodo-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .metodo-card:nth-child(5) {
    grid-column: auto;
  }

  .kpi-num {
    font-size: 34px;
  }

  .proof-mock {
    height: 200px;
  }

  .filtro-right {
    padding: 36px 24px;
  }
}

/* =============================================
       LOGO IMAGE
    ============================================= */
.logo-img-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  filter: invert(1) brightness(2);
  display: block;
}

.footer-logo {
  height: 28px;
  filter: invert(1) brightness(0.6);
  margin-bottom: 18px;
}

/* =============================================
       CEO / AUTORIDADE
    ============================================= */
.autoridade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ceo-img-wrapper {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-right: 1px solid #BF9D6C;
    border-bottom: 1px solid #BF9D6C;
    z-index: 3;
  }

  img {
    width: 100%;
  }
}


.ceo-img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) contrast(1.05);
}

.ceo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.7) 100%);
  z-index: 2;
}

.ceo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--border);
  border-left: 2px solid #BF9D6C;
  padding: 10px 16px;
}

.ceo-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BF9D6C;
  display: block;
}

.ceo-badge p {
  font-size: 11px;
  color: rgba(249, 249, 249, 0.45);
  margin-top: 2px;
}

.ceo-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.cred-item {
  background: var(--black-3);
  padding: 24px 20px;
  position: relative;
}

.cred-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: #BF9D6C;
}

.cred-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}

.cred-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #727272;
}

/* =============================================
       EVENTOS
    ============================================= */
.eventos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.eventos-list {
  list-style: none;
}

.eventos-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

.eventos-list li:last-child {
  border-bottom: none;
}

.ev-dot {
  width: 6px;
  height: 6px;
  background: #BF9D6C;
  flex-shrink: 0;
  margin-top: 7px;
}

.eventos-list li strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.eventos-list li p {
  font-size: 13px;
  color: rgba(249, 249, 249, 0.38);
  line-height: 1.6;
}

.evento-img-wrapper {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}

.evento-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border-right: 1px solid #BF9D6C;
  border-bottom: 1px solid #BF9D6C;
  z-index: 3;
}

.evento-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.85) contrast(1.05);
}

.evento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 17, 0.75) 100%);
  z-index: 2;
}

.evento-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--border);
  border-left: 2px solid #BF9D6C;
  padding: 10px 16px;
}

.evento-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BF9D6C;
  display: block;
}

.evento-badge p {
  font-size: 11px;
  color: rgba(249, 249, 249, 0.45);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .autoridade-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ceo-img {
    height: 360px;
  }

  .eventos-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .evento-img {
    height: auto;
  }

  .ceo-creds {
    grid-template-columns: 1fr 1fr;
  }
}