/* ─── CENÁRIO REGULATÓRIO SECTION ─── */
.cenario-regulatorio {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 48px 0 96px 0;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 100vmax #f5f5f5;
  clip-path: inset(0 -100vmax);
}

.cenario-regulatorio__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.cenario-regulatorio__card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 24px 35px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cenario-regulatorio__card:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 10px 30px rgba(17, 24, 52, 0.05);
}

.cenario-regulatorio__number-wrapper {
  flex-shrink: 0;
  width: 169px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cenario-regulatorio__number {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 121px;
  font-weight: 100;
  font-variation-settings: "wght" 100;
  line-height: 1;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(200.89deg, #ecdec3 40.59%, #9b876b 150.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cenario-regulatorio__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cenario-regulatorio__header {
  display: flex;
  align-items: center;
}

.cenario-regulatorio__title {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.389;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #3a3a3a;
  margin: 0;
}

.cenario-regulatorio__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cenario-regulatorio__description {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: 0.36px;
  color: #3a3a3a;
  max-width: 598px;
  margin: 0;
}

.cenario-regulatorio__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 24px;
  color: #b49b78;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cenario-regulatorio__card:hover .cenario-regulatorio__arrow {
  transform: translateX(4px);
}

/* ─── RESPONSIVENESS ─── */
@media (max-width: 900px) {
  .cenario-regulatorio__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 30px;
  }

  .cenario-regulatorio__number-wrapper {
    width: auto;
    justify-content: flex-start;
  }

  .cenario-regulatorio__number {
    font-size: 80px;
  }

  .cenario-regulatorio__body {
    width: 100%;
  }

  .cenario-regulatorio__description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cenario-regulatorio {
    width: min(calc(100% - 32px), var(--container-max));
    padding: 32px 0 64px 0;
  }

  .cenario-regulatorio__card {
    padding: 24px;
  }

  .cenario-regulatorio__number {
    font-size: 60px;
  }

  .cenario-regulatorio__title {
    font-size: 18px;
  }

  .cenario-regulatorio__description {
    font-size: 16px;
  }
}
