    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #C9A84C;
      --gold-light: #E8C96A;
      --gold-dark: #8B6B1E;
      --black: #080808;
      --dark: #0E0E0E;
      --dark2: #141414;
      --dark3: #1A1A1A;
      --white: #F5F5F0;
      --gray: #888880;
      --gray-light: #CCCCBB;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 48px;
      background: rgba(8, 8, 8, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-logo img {
      display: block;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .nav-cta:hover {
      background: var(--gold-light);
    }



    /* ──────────────────────────────────────
     CINEMA STRIP  (BG animado)
     Três fitas de fotos que correm em direções
     opostas, com opacidade baixa e escala cinza
     para não competir com o texto.
  ────────────────────────────────────── */
    .cinema-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    /* máscara de gradiente radial para escurecer bordas */
    .cinema-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 30%, rgba(8, 8, 8, 0.92) 75%),
        linear-gradient(to bottom, rgba(8, 8, 8, 0.7) 0%, transparent 40%, transparent 60%, rgba(8, 8, 8, 0.85) 100%);
      z-index: 4;
    }

    /* véu dourado sutil */
    .cinema-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
      z-index: 5;
    }

    /* cada fita horizontal */
    .strip {
      display: flex;
      align-items: center;
      gap: 0;
      will-change: transform;
      position: absolute;
      left: 0;
    }

    .strip-1 {
      top: 0;
      animation: slideRight 168s linear infinite;
    }

    .strip-2 {
      top: 33.33%;
      animation: slideLeft 152s linear infinite;
      animation-delay: -12s;
    }

    .strip-3 {
      top: 66.66%;
      animation: slideRight 144s linear infinite;
      animation-delay: -6s;
    }

    /* cada foto dentro da fita */
    .strip-frame {
      flex-shrink: 0;
      width: 400px;
      height: 297px;
      overflow: hidden;
      position: relative;
      /* espaçamento tipo película */
      margin-right: 3px;
      border-left: 3px solid rgba(201, 168, 76, 0.08);
    }

    .strip-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      /* tons de cinza + levemente dourado */
      filter: grayscale(100%) brightness(0.28) sepia(15%) contrast(1.1);
      transition: filter 0.6s ease;
      will-change: filter;
    }

    /* hover frame — traz de volta a cor momentaneamente */
    .strip-frame:hover img {
      filter: grayscale(40%) brightness(0.55) sepia(10%);
    }


    /* animações das fitas */
    @keyframes slideRight {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes slideLeft {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    /* ──────────────────────────────────────
     PARTÍCULAS DOURADAS flutuantes
  ────────────────────────────────────── */
    .particles {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0;
      animation: floatUp var(--dur, 8s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
      width: var(--size, 2px);
      height: var(--size, 2px);
      left: var(--left, 50%);
      bottom: -10px;
    }

    @keyframes floatUp {
      0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
      }

      10% {
        opacity: 0.7;
      }

      80% {
        opacity: 0.4;
      }

      100% {
        opacity: 0;
        transform: translateY(-120vh) translateX(calc(var(--drift, 20px)));
      }
    }

    /* ──────────────────────────────────────
     SCANLINES (textura cinematic)
  ────────────────────────────────────── */
    .scanlines {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background: repeating-linear-gradient(to bottom,
          transparent 0px,
          transparent 3px,
          rgba(0, 0, 0, 0.12) 3px,
          rgba(0, 0, 0, 0.12) 4px);
      opacity: 0.35;
    }


    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0;
      position: relative;
      overflow: hidden;
      background: var(--black);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-top: 96px;
    }

    .hero-top {
      padding: 48px 64px 40px;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      position: relative;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-tag::before {
      position: relative;
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      position: relative;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 10vw, 140px);
      line-height: 0.93;
      letter-spacing: 0.02em;
      margin-bottom: 32px;
    }

    .hero-title .white {
      color: var(--white);
    }

    .hero-title .gold {
      color: var(--gold);
    }

    .hero-subtitle-row {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .hero-subtitle {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray-light);
      line-height: 1.9;
    }

    .hero-subtitle strong {
      color: var(--white);
      font-weight: 700;
    }

    .hero-event-info {
    text-align: right;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #0c0c0c70;
    padding: 20px;
    border: 1px solid #c9a84c54;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
    .hero-event-info .ico {
        width: 85px;
        height: auto;
        flex-shrink: 0;
        padding: 0 15px;
    }

   
    .hero-event-info .ico img{
      max-width: 100%;
      height: auto;
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7290%) hue-rotate(318deg) brightness(83%) contrast(88%); /*sepia 22% */
    }
    .hero-event-info .flex {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-event-info .val {
      color: var(--gold);
      font-weight: 700;
      font-size: 22px;
      display: block;
    }

     @media(max-width: 495px){
      .hero-event-info {
        width:100%;
        justify-content: space-around;
      }
      .hero-event-info .flex {
        flex-direction: column;
        gap: 4px;
    }
    .hero-event-info .ico {
        padding: 0 0 0 15px;
        width: 70px;
        margin-left: auto;
    }

    
    }
    

    /* Expert strip */
    .hero-strip {
      display: flex;
    }
    
    .hero-strip-box{
      display: flex;
      width: 100%;
      height: 340px;
      margin-top: 40px;
      position: relative;
      z-index: 1;
    }
    .hero-strip-box+.hero-strip-box {
      border-left: 1px solid rgba(201, 168, 76, 0.12);
    }

    .hero-expert {
      flex: 1;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: flex 0.4s ease;
    }

    .hero-expert:hover {
      flex: 1.4;
    }

    .hero-expert img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      /* filter: grayscale(100%) brightness(0.55); */
      transition: filter 0.4s ease;
    }

    .hero-expert:hover img {
      filter: grayscale(60%) brightness(0.75) sepia(20%);
    }

    .hero-expert-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          transparent 40%,
          rgba(8, 8, 8, 0.85) 100%);
    }

    .hero-expert-name {
      position: absolute;
      bottom: 14px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.3s;
    }

    .hero-expert:hover .hero-expert-name {
      color: var(--gold);
    }

    

    .hero-expert+.hero-expert {
      border-left: 1px solid rgba(201, 168, 76, 0.12);
    }

    /* CTA row below strip */
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 32px 64px 56px;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }

    .hero-vagas {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .vagas-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.5s infinite;
      flex-shrink: 0;
    }

    /* ── SECTIONS ── */
    section {
      padding: 100px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .full-width {
      max-width: none;
      padding-left: 0;
      padding-right: 0;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 5vw, 72px);
      line-height: 1;
      letter-spacing: 0.03em;
      margin-bottom: 32px;
    }

    h2 .gold {
      color: var(--gold);
    }

    /* ── PROBLEM ── */
    .problem-section {
      background: var(--dark);
      padding: 100px 0;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    }

    .problem-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .problem-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 68px);
      line-height: 1.05;
      margin-bottom: 60px;
      border-left: 4px solid var(--gold);
      padding-left: 28px;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .problem-item {
      background: rgba(201, 168, 76, 0.07);
      border: 1px solid rgba(201, 168, 76, 0.15);
      padding: 14px 20px;
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      color: var(--gray-light);
      position: relative;
    }

    .problem-item::before {
      content: '—';
      color: var(--gold);
      margin-right: 10px;
      font-weight: 700;
    }

    .problem-right h3 {
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .problem-right p {
      color: var(--gray-light);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .problem-right .emphasis {
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: var(--white);
      line-height: 1.4;
    }

    .problem-right .emphasis span {
      color: var(--gold);
    }

    /* ── WHAT IS ── */
    .what-is-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .not-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .not-item {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .not-item .cross {
      color: rgba(201, 168, 76, 0.5);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .yes-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 8px;
    }

    .yes-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 24px;
      background: rgba(201, 168, 76, 0.06);
      border-left: 3px solid var(--gold);
    }

    .yes-item .icon {
      color: var(--gold);
      font-size: 22px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .yes-item .text strong {
      display: block;
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 4px;
    }

    .yes-item .text span {
      font-size: 15px;
      color: var(--gray-light);
    }

    /* ── CRONOGRAMA ── */
    .agenda-section {
      background: var(--dark2);
      padding: 100px 0;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    }

    .agenda-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .agenda-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }

    .agenda-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .agenda-time {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--gold);
      min-width: 72px;
      line-height: 1;
      padding-top: 2px;
    }

    .agenda-title {
      font-family: 'Barlow', sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 4px;
    }

    .agenda-speaker {
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      color: var(--gold);
      font-style: italic;
    }

    .agenda-highlight {
      grid-column: 1 / -1;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 24px 28px;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    /* ── EXPERTS ── */
    .experts-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: auto;
      gap: 24px;
      margin-top: 48px;
    }

    .expert-card {
      text-align: center;
    }

    .expert-photo {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--dark3);
      border: 1px solid rgba(201, 168, 76, 0.15);
      margin-bottom: 16px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .expert-initials {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      color: rgba(201, 168, 76, 0.2);
      letter-spacing: 0.05em;
    }

    .expert-name {
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--white);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .expert-role {
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      line-height: 1.2em;
      margin-bottom: 16px;
    }

    /* ── JUNINHO ── */
    .juninho-section {
      background: var(--dark);
      padding: 100px 0;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
    }

    .juninho-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .juninho-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: center;
    }

    .juninho-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .stat-box {
      background: rgba(201, 168, 76, 0.07);
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 20px;
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .juninho-bio {
      font-size: 18px;
      color: var(--gray-light);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .juninho-bio strong {
      color: var(--white);
    }

    /* ── INVESTIMENTO ── */
    .invest-section {
      background: var(--dark2);
      padding: 100px 0;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    }

    .invest-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .invest-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .invest-box {
      background: rgba(201, 168, 76, 0.05);
      border: 1px solid rgba(201, 168, 76, 0.25);
      padding: 48px;
      text-align: center;
      position: relative;
    }

    .invest-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 2px;
      background: var(--gold);
    }

    .invest-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .invest-from {
      font-family: 'Barlow', sans-serif;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.25);
      text-decoration: line-through;
      margin-bottom: 8px;
    }

    .invest-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      color: var(--gold);
      line-height: 1;
      letter-spacing: 0.02em;
      margin-bottom: 8px;
    }

    .invest-parcel {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      color: var(--gray-light);
      margin-bottom: 24px;
      letter-spacing: 0.05em;
    }

    .invest-badge {
      display: inline-block;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.3);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 16px;
      margin-bottom: 32px;
    }

    .invest-includes {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .invest-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 15px;
      color: var(--gray-light);
    }

    .invest-item .check {
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    .invest-right h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .invest-right h3 span {
      color: var(--gold);
    }

    .invest-right p {
      font-size: 17px;
      color: var(--gray-light);
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .vagas-alert {
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.25);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
    }

    .vagas-alert .dot {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.4;
        transform: scale(0.8)
      }
    }

    .vagas-alert span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    /* ── CTA BUTTON ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 20px 40px;
      text-decoration: none;
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::after {
      content: '→';
      font-size: 18px;
      transition: transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--gold-light);
    }

    .btn-primary:hover::after {
      transform: translateX(4px);
    }

    .btn-primary.large {
      font-size: 18px;
      padding: 24px 56px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(201, 168, 76, 0.4);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 16px 32px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.08);
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--black);
      text-align: center;
      padding: 120px 48px;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    }

    .final-cta h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 100px);
      line-height: 0.95;
      margin-bottom: 24px;
      position: relative;
    }

    .final-cta p {
      font-size: 18px;
      color: var(--gray-light);
      max-width: 560px;
      margin: 0 auto 48px;
      line-height: 1.7;
      position: relative;
    }

    .final-cta .btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      padding: 40px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 20px;
      letter-spacing: 0.2em;
      color: var(--white);
    }

    .footer-logo span {
      color: var(--gold);
    }

    .footer-copy {
      font-size: 13px;
      color: var(--gray);
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.08em;
    }

    

    .iti {
      width: 100%;
    }

    /* ── DIVIDER ── */
    .gold-line {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.3;
      margin: 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav {
        padding: 14px 20px;
      }

      .hero-top {
        padding: 32px 24px 24px;
      }

      .hero-cta-row {
        padding: 24px 24px 40px;
        gap: 16px;
      }

      .hero-strip {
        display: flex;
        flex-direction: column;
        height: auto;
      }

      .hero-strip-box {
          height: 220px;
      }

      .hero-expert-name {
        font-size: 10px;
        letter-spacing: 0.1em;
      }

      section {
        padding: 72px 24px;
      }

      .problem-grid,
      .what-is-grid,
      .agenda-grid,
      .invest-grid,
      .juninho-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .problem-inner,
      .agenda-inner,
      .juninho-inner,
      .invest-inner {
        padding: 0 24px;
      }

      .invest-box {
        padding: 32px 24px;
      }

      footer {
        padding: 32px 24px;
      }

      .final-cta {
        padding: 80px 24px;
      }
    }

    @media (max-width: 600px) {
      .experts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .invest-right h3 {
      font-size: 32px;
    }
      
    }

    @media (min-width: 601px) and (max-width: 900px) {
      .experts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }

    /* ── FADE ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up.d1 {
      transition-delay: 0.1s;
    }

    .fade-up.d2 {
      transition-delay: 0.2s;
    }

    .fade-up.d3 {
      transition-delay: 0.3s;
    }

    .fade-up.d4 {
      transition-delay: 0.4s;
    }
