/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #D4A017;
  --gold-bright: #E5B800;
  --gold-edca: #EDCA74;
  --gold-light: #F0C840;
  --gold-dim: #A98500;
  --gold-glow: rgba(212, 160, 23, 0.55);
  --black: #000000;
  --bg: #060606;
  --card-bg: rgba(10, 10, 10, 0.72);
  --white: #FFFFFF;
  --gray: rgba(255, 255, 255, 0.72);

  --font-title: 'Audiowide', 'Barlow', sans-serif;
  --font-body: 'Manrope', 'Barlow', sans-serif;

  --header-h: 102px;
  --max-w: 1449px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}


/* â”€â”€â”€ PRELOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.6s ease;
}

.preloader__logo-svg {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(216, 169, 0, 0.4));
}

.preloader__logo-svg path {
  fill: transparent;
  stroke: #D8A900;
  stroke-width: 3px;
  stroke-dasharray: 15000;
  stroke-dashoffset: 15000;
  animation: drawAndFill 4s ease-in-out infinite alternate;
}

@keyframes drawAndFill {
  0% {
    stroke-dashoffset: 15000;
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #D8A900;
  }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #000;
  display: flex;
  align-items: center;
}

.header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link {
  font-size: 16px;
  font-weight: 400;
  color: #e3e3e3;
  transition: color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link svg {
  width: 13px;
  height: 7px;
  transition: transform 0.2s;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: #000;
  border: 1px solid #3b3b3b;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

.dropdown__link {
  display: block;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown__link:hover {
  background: #202020;
}

/* Segmentos specific font match if needed */
.nav__link--segmentos {
  font-size: 16px;
}

/* CTA header button */
.btn-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #D8A900 8%, #D7C471 66%, #CC9D00 100%);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 24px;
  border-radius: 40px;
  white-space: nowrap;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-header svg {
  width: 18px;
  height: 18px;
  margin-top: -1px;
  transition: transform 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.15);
  box-shadow: 0 8px 20px rgba(237, 202, 116, 0.4);
  /* #EDCA74 with opacity */
}

.btn-header:hover svg {
  transform: translateX(3px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(16px);
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav__link {
  font-size: 15px;
}

.mobile-nav .btn-header {
  align-self: flex-start;
}


/* â”€â”€â”€ WEBGL CANVAS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle radial background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 28% 60%, rgba(212, 160, 23, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 72% 50%, rgba(212, 160, 23, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 32px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - var(--header-h));
}


/* â”€â”€â”€ LEFT COLUMN (image + cards) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 560px;
}

/* Golden aura behind the person */
.hero__aura {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 674px;
  background: radial-gradient(87.19% 87.19% at 50% 56.68%, #FDF8B9 9.62%, #D8A900 83.65%);
  filter: blur(36.6px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Man image */
.hero__img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  /* Permite ocupar toda a coluna esquerda */
  mask-image: linear-gradient(to bottom,
      black 0%,
      black 70%,
      rgba(0, 0, 0, 0.5) 85%,
      rgba(0, 0, 0, 0.1) 92%,
      transparent 98%);
  -webkit-mask-image: linear-gradient(to bottom,
      black 0%,
      black 70%,
      rgba(0, 0, 0, 0.5) 85%,
      rgba(0, 0, 0, 0.1) 92%,
      transparent 98%);
}

.hero__img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  /* Aumenta drasticamente o limite */
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  animation: imgFadeIn 1s ease-out both;
  filter: brightness(1.05) contrast(1.02);
}

@keyframes imgFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* â”€â”€â”€ FLOATING CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  position: absolute;
  border: none;
  border-radius: 18px;
  padding: 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 211px;
  height: auto;
  z-index: 10;
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Isolate backdrop filter in pseudo-element to prevent transform rendering bugs */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 72, 65, 0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: inherit;
  z-index: -1;
}


.card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(237, 202, 116, 0.35),
    0 0 30px rgba(237, 202, 116, 0.15),
    inset 0 0 0 1px rgba(237, 202, 116, 0.5);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    translate: 0 0px;
  }

  50% {
    translate: 0 -10px;
  }
}

.card__icon {
  flex-shrink: 0;
  width: 31px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(146deg, #B89F5B 7.87%, #FDF8B9 48.09%, #FED471 87.55%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: rgba(74, 72, 65, 1) !important;
}

.card__title {
  color: #FFF;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.card__desc {
  color: #FFF;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding-right: 8px;
}

/* Card positions */
.card--tl {
  /* Investimentos â€” left/shoulder */
  left: 2%;
  top: 30%;
  animation: cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both, floatCard 6s ease-in-out 0s infinite;
}

.card--tr {
  /* AntecipaÃ§Ã£o â€” right/top */
  right: calc(10% - 6px);
  top: 18%;
  animation: cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both, floatCard 7s ease-in-out -2s infinite;
}

.card--bl {
  /* Financiamento â€” left/bottom */
  left: 6%;
  bottom: 22%;
  animation: cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both, floatCard 6.5s ease-in-out -4s infinite;
}

.card--br {
  /* CrÃ©dito Empresarial â€” right/bottom */
  right: 6%;
  bottom: 18%;
  animation: cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both, floatCard 7.5s ease-in-out -1s infinite;
}


/* â”€â”€â”€ RIGHT COLUMN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__content {
  padding: 60px 0 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: contentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headline */
.hero__headline {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.1vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero__headline span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUpLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__headline .white {
  color: var(--white);
  animation-delay: 0.2s;
}

.hero__headline span:nth-of-type(2) {
  color: #D8A900;
  animation-delay: 0.35s;
}

.hero__headline span:nth-of-type(3) {
  color: #D7C471;
  animation-delay: 1.0s;
}

@keyframes fadeUpLine {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body paragraph */
.hero__body {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  font-weight: 400;
}

.hero__body strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  /* added 16px to previous 14px */
  flex-wrap: wrap;
}

.btn-primary {
  display: flex;
  width: 184px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, #D8A900 8.17%, #D7C471 65.87%, #CC9D00 100%);
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237, 202, 116, 0.4);
}

.btn-outline {
  display: flex;
  width: 184px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 34px;
  border-radius: 40px;
  border: 1px solid #D8A900;
  background: linear-gradient(270deg, #050505 0%, #292828 100%);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* The text needs its own gradient â€” set via a span inside .btn-outline */
.btn-outline .btn-label {
  background: linear-gradient(180deg, #D8A900 8%, #D7C471 66%, #CC9D00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237, 202, 116, 0.4);
}

/* Focus visible */
.btn-outline:focus-visible {
  outline: 2px solid #D8A900;
  outline-offset: 4px;
}




/* â”€â”€â”€ SEGUNDA DOBRA: SOBRE A LUPUS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about {
  background: #000;
  padding: 100px 0;
  overflow: hidden;
}

.about__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 64px;
  align-items: center;
}

/* â”€â”€ Image side â”€â”€ */
.about__img-wrapper {
  position: relative;
  border-radius: 0 24px 24px 0;
  overflow: visible;

  /* Animate in from left */
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__img-wrapper.in-view {
  opacity: 1;
  transform: translateX(0);
}

.about__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 0 48px 48px 0;
  display: block;
}

/* Golden glow behind / around the image */
.about__img-wrapper::after {
  content: '';
  position: absolute;
  inset: -30px -30px -60px -10px;
  border-radius: 0 52px 52px 0;
  background: radial-gradient(ellipse 85% 75% at 65% 88%,
      rgba(216, 169, 0, 0.8) 0%,
      rgba(216, 169, 0, 0.4) 40%,
      transparent 70%);
  filter: blur(35px);
  z-index: -1;
  pointer-events: none;
}

/* Floating FAB button (Gold Pill) */
.about__fab {
  position: absolute;
  bottom: 24px;
  right: -24px;
  width: 76px;
  height: 54px;
  border-radius: 30px;
  background: linear-gradient(180deg, #D8A900 8.17%, #D7C471 65.87%, #CC9D00 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(216, 169, 0, 0.4);
  color: #000;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Animate in */
  opacity: 0;
  transform: scale(0.6);
}

.about__fab svg {
  transition: transform 0.3s ease;
}

.about__img-wrapper.in-view .about__fab {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease 0.7s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s;
}

.about__fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(237, 202, 116, 0.6);
}

.about__fab:hover svg {
  transform: translateY(-4px);
}

/* â”€â”€ Content side â”€â”€ */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;

  /* Animate in from bottom */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.about__content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about__eyebrow {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  /* Audiowide */
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Headline */
.about__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.about__headline-white {
  color: #fff;
}

.about__headline-gold {
  color: #D7C471;
}

/* Body paragraphs */
.about__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: calc(80%);
  margin: 0;
}

.about__body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.about__body--second {
  margin-top: -4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .about__img-wrapper,
  .about__content,
  .about__fab {
    transition: none;
  }
}

/* â”€â”€â”€ +31 ANOS â€” EXPERIÃŠNCIA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.years {
  position: relative;
  background: #000;
  padding: 100px 0 0 0;
  overflow: hidden;
}

.years__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 520px;
}

/* â”€â”€ Content left â”€â”€ */
.years__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 100px;
  /* Keep bottom padding for text only */

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.years__content.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* "+31 ANOS" headline */
.years__title {
  font-family: var(--font-title);
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #D8A900 8%, #D7C471 66%, #CC9D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* Body paragraphs */
.years__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
  max-width: 550px;
}

.years__body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* CTA Button */
.years__cta {
  display: inline-flex;
  width: 184px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, #D8A900 8.17%, #D7C471 65.87%, #CC9D00 100%);
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
  margin-top: 16px;
}

.years__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237, 202, 116, 0.4);
}

/* â”€â”€ Visual right â”€â”€ */
.years__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  perspective: 800px;
}

/* Wrapper do cofre com movimento de surgimento */
.years__chest-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;

  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.years__visual.in-view .years__chest-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glow dourado emanando forte do baÃº */
.years__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(40% 40% at 50% 50%, #FFF384 0%, #C49200 70%, transparent 100%);
  filter: blur(50px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

/* Cofre image â€” levitates */
.years__img-base {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: -10px auto 0 auto;
}

.years__img {
  position: relative;
  z-index: 4;
  width: 75%;
  height: auto;
  object-fit: contain;
  margin-left: -25px;
  /* Puxa para a esquerda para corrigir o peso visual/corte da imagem */
  filter: drop-shadow(0 20px 50px rgba(212, 160, 23, 0.35)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  animation: vaultLevitate 4s ease-in-out infinite;
}

@keyframes vaultLevitate {

  0%,
  100% {
    transform: translateY(-5px);
    /* Subiu mais 10px */
  }

  50% {
    transform: translateY(-25px);
    /* Acompanhou a subida mantendo 20px de amplitude */
  }
}

/* â”€â”€ Planetary rings (Saturn-style) â”€â”€ */
.years__orbit {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%) rotateX(65deg);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  transform-style: preserve-3d;
}

/* Inner ring */
.years__orbit::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(216, 169, 0, 0.6);
  border-bottom-color: rgba(216, 169, 0, 0.25);
  box-shadow:
    0 0 20px 4px rgba(212, 160, 23, 0.2),
    inset 0 0 20px 4px rgba(212, 160, 23, 0.08);
  animation: ringRotate 8s linear infinite;
}

/* Outer ring */
.years__orbit::after {
  content: '';
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(253, 248, 185, 0.35);
  border-bottom-color: rgba(253, 248, 185, 0.1);
  box-shadow:
    0 0 30px 6px rgba(212, 160, 23, 0.12),
    inset 0 0 30px 6px rgba(212, 160, 23, 0.05);
  animation: ringRotate 12s linear infinite reverse;
}

@keyframes ringRotate {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .years__content,
  .years__visual,
  .capital__content,
  .capital__visual,
  .security__eyebrow,
  .security__headline,
  .security__card,
  .security__coin,
  .segments__eyebrow,
  .segments__headline,
  .segments__card,
  .credit-cta__title,
  .credit-cta__button,
  .solutions__eyebrow,
  .solutions__headline,
  .solutions__subtitle,
  .solutions__card,
  .articles__headline,
  .articles__card,
  .faq__eyebrow,
  .faq__headline,
  .faq__item,
  .contact__headline,
  .contact__desc,
  .contact__form-wrapper {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .years__img {
    animation: none;
  }

  .years__orbit {
    animation: none;
    display: none;
  }
}

/* â”€â”€â”€ CAPITAL QUE MOVIMENTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.capital {
  background: linear-gradient(180deg, #D8A900 0%, #E5C840 35%, #F0D860 65%, #D8A900 100%);
  padding: 100px 0 0 0; /* removed bottom padding to align image to the bottom */
  overflow: hidden;
}

.capital__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: stretch;
}

/* â”€â”€ Content left â”€â”€ */
.capital__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 100px; /* add back the padding just for the content column */

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.capital__content.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Headline */
.capital__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

/* Body */
.capital__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0;
}

/* Feature items */
.capital__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.capital__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.capital__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.capital__check svg {
  stroke: #FFF;
}

.capital__feature-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
}

.capital__feature-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  max-width: 400px;
}



/* â”€â”€ Visual right â”€â”€ */
.capital__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.capital__visual.in-view {
  opacity: 1;
  transform: scale(1);
}

.capital__img-base {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: -10px auto 0 auto;
}

.capital__img-wrapper {
  position: relative;
  width: 120%;
  left: -10%; /* shifts it back to center horizontally */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -60px;
}

.capital__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}


/* â”€â”€â”€ QUARTA DOBRA â€” SEGURANÃ‡A â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.security {
  position: relative;
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
  min-height: 650px;
}

.security__coin {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.security__coin img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px rgba(212, 160, 23, 0.15));
}

.security__coin--top {
  top: 100px;
  right: -50px;
  transform: translateX(40px);
}

.security__coin--top.in-view {
  opacity: 1;
  transform: translateX(0);
}

.security__coin--bottom {
  bottom: 120px;
  left: -80px;
  transform: translateX(-40px);
}

.security__coin--bottom.in-view {
  opacity: 1;
  transform: translateX(0);
}

.security__container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security__eyebrow {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.security__eyebrow.in-view {
  opacity: 1;
  transform: translateY(0);
}

.security__headline {
  font-family: var(--font-title);
  font-size: clamp(42px, 3vw, 27px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px 0;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.security__headline.in-view {
  opacity: 1;
  transform: translateY(0);
}

.security__headline-gold {
  color: var(--gold-bright);
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.security__card {
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 32px 28px;
  height: 207px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;

  opacity: 0;
  transform: translateY(10px);
}

.security__card.in-view {
  animation: cardFadeIn 0.4s ease forwards;
}

.security__card:nth-child(1).in-view {
  animation-delay: 0.1s;
}

.security__card:nth-child(2).in-view {
  animation-delay: 0.15s;
}

.security__card:nth-child(3).in-view {
  animation-delay: 0.2s;
}

.security__card:nth-child(4).in-view {
  animation-delay: 0.25s;
}

.security__card:nth-child(5).in-view {
  animation-delay: 0.3s;
}

.security__card:nth-child(6).in-view {
  animation-delay: 0.35s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.security__card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 23, 0.6);
  background: rgba(212, 160, 23, 0.03);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.08);
}

.security__card-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-bright);
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.security__card-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}



/* â”€â”€â”€ QUINTA DOBRA â€” SEGMENTOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.segments {
  background: var(--black);
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.segments__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
}

.segments__eyebrow {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.segments__eyebrow.in-view {
  opacity: 1;
  transform: translateY(0);
}

.segments__headline {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 40px 0;
  max-width: 1200px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.segments__headline.in-view {
  opacity: 1;
  transform: translateY(0);
}

.segments__headline-gold {
  color: var(--gold-bright);
}

.segments__grid-container {
  background: transparent;
  padding: 0;
  width: 100%;
  max-width: 940px;
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}

.segments__card {
  background: #0E0E0E;
  border: 1px solid #1A1A1A;
  border-radius: 16px;
  padding: 20px 16px;
  height: 127px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(8px);
}

.segments__card.in-view {
  animation: cardFadeIn 0.4s ease forwards;
}

.segments__card:nth-child(1).in-view {
  animation-delay: 0.1s;
}

.segments__card:nth-child(2).in-view {
  animation-delay: 0.15s;
}

.segments__card:nth-child(3).in-view {
  animation-delay: 0.1s;
}

.segments__card:nth-child(4).in-view {
  animation-delay: 0.25s;
}

.segments__card:nth-child(5).in-view {
  animation-delay: 0.15s;
}

.segments__card:nth-child(6).in-view {
  animation-delay: 0.35s;
}

.segments__card:nth-child(7).in-view {
  animation-delay: 0.2s;
}

.segments__card:nth-child(8).in-view {
  animation-delay: 0.45s;
}

.segments__card:nth-child(9).in-view {
  animation-delay: 0.25s;
}

.segments__card:nth-child(10).in-view {
  animation-delay: 0.55s;
}

.segments__card:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}

.segments__card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.segments__card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

/* â”€â”€â”€ CTA â€” SOLICITAR ANÃLISE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.credit-cta {
  width: 100%;
  border-top: 1px solid var(--Cor-03, #BBAA9B);
  border-bottom: 1px solid var(--Cor-03, #BBAA9B);
  background: var(--LUPUS, linear-gradient(180deg, #D8A900 8.17%, #D7C471 65.87%, #CC9D00 100%));
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  padding: 48px 0;
}

.credit-cta__container {
  width: 100%;
  max-width: 900px;
  /* Slightly offset to the left of the exact center by not filling up the whole viewport, 
     but keeping the container itself narrow and centered, with left-aligned contents. */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 5vw;
  /* subtle shift left */
}

.credit-cta__title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 32px 0;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.credit-cta__title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.credit-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 20px 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, #050505 0%, #292828 100%);
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, box-shadow 0.2s ease, background 0.2s ease;
}

.credit-cta__button.in-view {
  opacity: 1;
  transform: translateY(0);
}

.credit-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
}

.credit-cta__icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.credit-cta__button:hover .credit-cta__icon {
  transform: translate(2px, -2px);
}

/* â”€â”€â”€ SEÃ‡ÃƒO â€” SOLUÃ‡Ã•ES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.solutions {
  background: var(--black);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.solutions__coin {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.2));
}

.solutions__coin--left {
  left: -100px;
  bottom: 50px;
  width: 250px;
  height: auto;
}

.solutions__coin--right {
  right: -80px;
  top: 150px;
  width: 200px;
  height: auto;
}

.solutions__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
  position: relative;
  z-index: 1;
}

.solutions__eyebrow {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.solutions__eyebrow.in-view {
  opacity: 1;
  transform: translateY(0);
}

.solutions__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px 0;
  max-width: 1000px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.solutions__headline.in-view {
  opacity: 1;
  transform: translateY(0);
}

.solutions__headline-gold {
  color: var(--gold-bright);
}

.solutions__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 0 48px 0;
  font-weight: 400;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.solutions__subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
}

.solutions__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1026px;
  /* ~326px per card */
  margin: 0 auto;
}

.solutions__card {
  background: #0E0E0E;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  min-height: 560px;

  opacity: 0;
  transform: translateY(10px);
}

.solutions__card.in-view {
  animation: cardFadeIn 0.4s ease forwards;
}

.solutions__card:nth-child(1).in-view {
  animation-delay: 0.15s;
}

.solutions__card:nth-child(2).in-view {
  animation-delay: 0.2s;
}

.solutions__card:nth-child(3).in-view {
  animation-delay: 0.25s;
}

.solutions__card:hover {
  transform: translateY(-3px);
  border-color: #2A2A2A;
}

.solutions__card-img-wrapper {
  width: 100%;
  height: 220px;
  flex: 0 0 220px;
  overflow: hidden;
  background: #1A1A1A;
  position: relative;
}

.solutions__card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 14, 14, 0.3) 0%, rgba(14, 14, 14, 0.3) 40%, rgba(14, 14, 14, 1) 100%);
  pointer-events: none;
}

.solutions__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solutions__card:hover .solutions__card-img {
  transform: scale(1.02);
}

.solutions__card-content {
  padding: 24px 20px 32px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solutions__card-category {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-edca);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.solutions__card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.solutions__card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px 0;
}

.solutions__card-list {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.solutions__card-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.solutions__card-list li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: var(--gold-edca);
  border-radius: 50%;
}

/* â”€â”€â”€ SEÃ‡ÃƒO â€” CONTEÃšDOS (EDUCAÃ‡ÃƒO FINANCEIRA) â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.articles {
  background: var(--black);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.articles__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
}

.articles__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 48px 0;
  max-width: 1000px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.articles__headline.in-view {
  opacity: 1;
  transform: translateY(0);
}

.articles__headline-gold {
  color: var(--gold-bright);
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.articles__card {
  background: #0E0E0E;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 420px;

  opacity: 0;
  transform: translateY(10px);
}

.articles__card.in-view {
  animation: cardFadeIn 0.4s ease forwards;
}

.articles__card:nth-child(1).in-view {
  animation-delay: 0.15s;
}

.articles__card:nth-child(2).in-view {
  animation-delay: 0.2s;
}

.articles__card:nth-child(3).in-view {
  animation-delay: 0.25s;
}

.articles__card:hover {
  transform: translateY(-3px);
  border-color: #2A2A2A;
}

.articles__card-img-wrapper {
  width: 100%;
  height: 160px;
  flex: 0 0 160px;
  overflow: hidden;
  background: #1A1A1A;
  position: relative;
}

.articles__card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.2) 50%, rgba(14, 14, 14, 1) 100%);
  pointer-events: none;
}

.articles__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.articles__card:hover .articles__card-img {
  transform: scale(1.03);
}

.articles__card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.articles__card-category {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-edca);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.articles__card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.articles__card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
}

.articles__card-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-edca);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.3s ease;
  cursor: pointer;
}

.articles__card-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.articles__card:hover .articles__card-link {
  color: var(--gold-bright);
}

.articles__card:hover .articles__card-arrow {
  transform: translateX(4px);
}

/* â”€â”€â”€ SEÃ‡ÃƒO â€” FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq {
  background: linear-gradient(180deg, #EFC500 0%, #D8A900 100%);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 430px;
}

.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
}

.faq__eyebrow {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: #0A192F;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq__eyebrow.in-view {
  opacity: 1;
  transform: translateY(0);
}

.faq__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: #0A192F;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 48px 0;
  max-width: 1000px;

  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.faq__headline.in-view {
  opacity: 1;
  transform: translateY(0);
}

.faq__list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  
  opacity: 0;
  transform: translateY(15px);
}

.faq__item.in-view {
  animation: cardFadeIn 0.4s ease forwards;
}

.faq__item:nth-child(1).in-view { animation-delay: 0.1s; }
.faq__item:nth-child(2).in-view { animation-delay: 0.15s; }
.faq__item:nth-child(3).in-view { animation-delay: 0.2s; }
.faq__item:nth-child(4).in-view { animation-delay: 0.25s; }
.faq__item:nth-child(5).in-view { animation-delay: 0.3s; }
.faq__item:nth-child(6).in-view { animation-delay: 0.35s; }

.faq__question {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: #0A192F;
}

.faq__icon {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: #0A192F;
  margin-left: 16px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #1A2840;
  padding: 0 24px 24px 24px;
  margin: 0;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
}

/* â”€â”€â”€ SEÃ‡ÃƒO â€” CONTATO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact {
  background: var(--black);
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
}

.contact__headline {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 24px 0;

  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact__headline-light {
  color: var(--gold-edca);
}

.contact__headline.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact__desc {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;

  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.contact__desc.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact__form-wrapper {
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid #1A1A1A;
  border-radius: 20px;
  padding: 40px;

  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.contact__form-wrapper.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
}

.contact__form-group label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group textarea,
.contact__form-group select {
  width: 100%;
  background: #050505;
  border: 1px solid #1A1A1A;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus,
.contact__form-group select:focus {
  border-color: var(--gold-bright);
}

.contact__form-group input,
.contact__form-group select {
  height: 56px;
  padding: 0 16px;
}

.contact__form-group textarea {
  height: 120px;
  padding: 16px;
  resize: none;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__select-wrapper {
  position: relative;
}

.contact__select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(229, 184, 0, 0.3);
  cursor: pointer;
}

.contact__select-wrapper select:focus {
  border-color: var(--gold-bright);
}

.contact__select-wrapper::after {
  content: "\25BC";
  font-size: 10px;
  color: var(--gold-bright);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact__submit {
  background: linear-gradient(180deg, #D8A900 8.17%, #D7C471 65.87%, #CC9D00 100%);
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 20px 34px;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237, 202, 116, 0.4);
}

/* â”€â”€â”€ SEÃ‡ÃƒO â€” FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.footer__container {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 42px;
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.footer__logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__links-wrapper {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px 0;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: var(--gold-bright);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* â”€â”€â”€ PARCEIROS â€” MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.partners {
  background: #000;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.partners__track-wrapper {
  /* Fade edges via mask */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  overflow: hidden;
}

.partners__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.partners__logo-set {
  display: flex;
  align-items: center;
  gap: 180px;
  padding: 0 90px;
}

.partners__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.25s;
}

.partners__logo:hover {
  opacity: 1;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */


@media (max-width: 1024px) {
  .hero__headline {
    font-size: clamp(1.4rem, 3.1vw, 2.4rem);
  }

  /* About â€” tablet */
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  .about__img {
    height: 340px;
  }

  .about__headline {
    font-size: 1.5rem;
  }

  .about__body {
    max-width: 100%;
  }

  .card {
    padding: 9px 11px;
    width: 211px;
  }

  .card__title {
    font-size: 10.5px;
  }

  .card__desc {
    font-size: 9.5px;
  }

  .card__icon {
    width: 24px;
    height: 24px;
  }

  .card__icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 860px) {

  /* Partners marquee â€” tighter on mobile */
  .partners__logo-set {
    gap: 80px;
    padding: 0 40px;
  }

  .partners__logo {
    height: 44px;
  }

  /* About â€” mobile: single column, image below text */
  .about {
    padding: 64px 0;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .about__img-wrapper {
    border-radius: 16px;
    order: 2;
  }

  .about__img {
    height: 260px;
    border-radius: 16px;
  }

  .about__content {
    order: 1;
  }

  .about__fab {
    width: 54px;
    height: 40px;
    border-radius: 20px;
    right: -16px;
    bottom: 16px;
  }

  .about__fab svg {
    width: 18px;
    height: 18px;
  }

  .nav {
    display: none;
  }

  .btn-header.desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 48px;
  }

  .hero__visual {
    min-height: 380px;
    order: 2;
  }

  .hero__content {
    order: 1;
    padding: 0 0 32px;
    gap: 22px;
    align-items: center;
    text-align: center;
  }

  .hero__body {
    max-width: 80%;
    margin: 0 auto;
  }

  .hero__ctas {
    justify-content: center;
    gap: 12px;
  }

  /* Years & Capital Mobile Layout */
  .years__container,
  .capital__container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
    box-sizing: border-box;
    width: 100%;
  }

  .capital {
    overflow-x: hidden;
  }

  .capital__content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .years__title {
    font-size: 72px;
  }

  .years__glow {
    z-index: 0;
  }

  .capital__headline {
    font-size: 26px;
  }

  .years__content,
  .capital__content {
    padding-bottom: 40px;
  }

  .capital__body {
    max-width: 100%;
    font-size: 20px;
  }

  .capital__feature-desc {
    max-width: 100%;
    font-size: 16px;
  }

  .capital__feature-title {
    font-size: 16px;
  }

  .years__visual,
  .capital__visual {
    min-height: 250px;
    align-items: center;
    justify-content: center;
  }

  .capital__img-wrapper {
    width: 100%;
    left: 0;
    margin-bottom: 0;
    justify-content: center;
  }

  .capital__img-base {
    width: 100%;
  }

  .capital__img {
    transform: scale(1.3);
  }

  .security__container,
  .segments__container {
    padding: 0 20px;
  }

  .security__headline {
    font-size: 32px;
  }

  .segments__headline {
    font-size: 22px;
  }

  .solutions__headline,
  .articles__headline {
    font-size: 24px;
  }

  .credit-cta__title {
    font-size: 24px;
    text-align: center;
  }

  .credit-cta__container {
    align-items: center;
    margin-right: 0;
    width: 100%;
  }

  /* Reposition cards for mobile â€” less rounded, spread out vertically */
  .card {
    border-radius: 10px;
  }

  .card--tl {
    left: 2%;
    top: 52%;
  }

  .card--tr {
    right: 2%;
    top: 64%;
  }

  .card--bl {
    left: 2%;
    bottom: 16%;
  }

  .card--br {
    right: 2%;
    bottom: 4%;
  }

  .btn-primary,
  .btn-outline,
  .years__cta,
  .contact__submit {
    font-size: 14px;
    padding: 12px 24px;
    width: 184px;
  }

  .btn-outline .btn-label {
    font-size: 14px;
  }

  .credit-cta__button {
    font-size: 14px;
    padding: 12px 28px;
    width: auto;
    white-space: nowrap;
  }

  /* Security & Segments */
  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments__grid-container {
    max-width: 100%;
    width: 100%;
  }

  /* Solutions & Articles */
  .solutions__grid,
  .articles__grid {
    grid-template-columns: 1fr;
    max-width: 95%;
    margin: 0 auto;
  }

  /* FAQ */
  .faq__headline {
    font-size: 24px;
  }

  .faq__question-text {
    font-size: 16px;
  }

  .faq__answer p {
    font-size: 16px;
  }

  /* Contact */
  .contact__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .contact__headline {
    font-size: 22px;
  }

  .contact__headline,
  .contact__desc,
  .contact__form-wrapper,
  .contact__form-wrapper.in-view,
  .contact__headline.in-view,
  .contact__desc.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 520px) {
  .header__inner {
    padding: 0 20px;
  }

  .logo img {
    height: 26px;
  }

  .hero__headline {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .years__title {
    font-size: 56px;
  }

  .capital__headline {
    font-size: 22px;
  }

  .card {
    padding: 8px 10px;
    gap: 7px;
    width: 170px;
    transform: none;
  }

  .card--tr,
  .card--br {
    transform-origin: right top;
  }

  .card__title {
    font-size: 10px;
  }

  .card__desc {
    font-size: 8px;
  }

  /* Security */
  .security__grid {
    grid-template-columns: 1fr;
    max-width: 95%;
  }

  .security__coin {
    display: none;
  }

  /* Segments */
  .segments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments__card:last-child {
    grid-column: auto;
  }

  /* Solutions & Articles */
  .solutions__grid,
  .articles__grid {
    grid-template-columns: 1fr;
    max-width: 95%;
  }

  .solutions__coin {
    display: none;
  }

  .solutions__card-content {
    padding-bottom: 32px;
  }

  /* Contact */
  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__form-wrapper {
    padding: 24px;
  }

  /* Credit CTA */
  .credit-cta {
    height: auto;
    padding: 32px 20px;
  }

  .credit-cta__container {
    margin-right: 0;
    padding-left: 0;
    align-items: center;
    width: 100%;
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .footer__nav-group {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline,
  .years__cta,
  .credit-cta__button,
  .contact__submit {
    text-align: center;
    justify-content: center;
  }

  .card {
    transform: scale(0.7);
    transform-origin: left top;
  }

  .card__desc {
    display: none;
  }
}
/* --- PÁGINA DE ARTIGO ------------------------------- */
.article-page {
  padding: 120px 0 80px 0;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  background: var(--black);
}

.article-page__container {
  width: 100%;
  max-width: 800px;
  padding: 0 42px;
}

.article-page__title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
  margin-bottom: 32px;
}

.article-page__intro {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 40px;
}

.article-page p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.article-page h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 24px 0;
}

.article-page h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 16px 0;
}

.article-page ul {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  padding-left: 24px;
}

.article-page li {
  margin-bottom: 12px;
}

.article-page li::marker {
  color: var(--gold-bright);
}

.article-page strong {
  color: var(--white);
  font-weight: 600;
}

.article-page__highlight {
  background: #0E0E0E;
  border-left: 4px solid var(--gold-bright);
  padding: 32px;
  border-radius: 0 12px 12px 0;
  margin-top: 64px;
}

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

@media (max-width: 860px) {
  .article-page {
    padding: 100px 0 60px 0;
  }
  .article-page__container {
    padding: 0 20px;
  }
  .article-page p, .article-page ul {
    font-size: 20px;
  }
  .article-page__intro {
    font-size: 20px;
  }
  .article-page h2 {
    font-size: 24px;
  }
}
.article-page__cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
  max-height: 400px;
}



/* ─── Animações de Entrada do Artigo ─────────────────── */
.article-page__title, 
.article-page__cover, 
.article-page__intro, 
.article-page h2, 
.article-page p, 
.article-page ul,
.article-page__highlight,
.article-page__table {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.article-page__title.in-view, 
.article-page__cover.in-view, 
.article-page__intro.in-view, 
.article-page h2.in-view, 
.article-page p.in-view, 
.article-page ul.in-view,
.article-page__highlight.in-view,
.article-page__table.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .article-page__title, 
  .article-page__cover, 
  .article-page__intro, 
  .article-page h2, 
  .article-page p, 
  .article-page ul,
.article-page__highlight,
.article-page__table {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.article-page__table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.article-page__table th, .article-page__table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.article-page__table th {
  background: rgba(216, 169, 0, 0.1);
  color: var(--gold-bright);
  font-weight: 600;
}

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

@media (max-width: 860px) {
  .article-page__table {
    display: block;
    overflow-x: auto;
    font-size: 14px;
  }
}

