body {
  background-color: #0e0e0e;
  color: white;
  font-size: 18px;
}
img {
  width: 100%;
}
html {
  --primary-color: #fbc300;
}
header,
footer {
  background-color: #1c1c1c;
}
a {
    text-decoration: none;
}
.nav-link,
.dropdown-toggle {
  color: white !important;
}
.nav-link {
  padding-right: 32px;
  padding-left: 32px;
  text-transform: uppercase;
  font-size: 1rem;
}
.dropdown-toggle::after {
  color: var(--primary-color);
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
}
.highlight {
  color: var(--primary-color);
}
.feature-list span {
  color: var(--primary-color);
  margin-right: 10px;
}
.feature-list p {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.btn-yellow {
  background-color: var(--primary-color);
  border: none;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1.5rem;
  font-weight: 500;
}
.logo_main,
.logo_main2 {
  border-radius: 300px;
  background: #292929;
  background: linear-gradient(354deg, rgb(0, 0, 0) 0%, rgb(94, 94, 94) 100%);
}
.logo_main2 {
  width: 120px;
}
.intro {
  padding: 80px 0;
  background-image: url("../assets/images/fundo_intro.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro h1 {
  font-size: 4.5rem;
}
.lead {
  width: 50%;
  justify-self: center;
}
.img_intro_2 {
  max-width: 500px;
  align-self: center;
}
.bg-dark-custom {
  background: #232323;
  background: linear-gradient(
    333deg,
    rgb(10, 10, 10) 0%,
    rgb(17, 17, 17) 44%,
    rgb(70, 70, 70) 100%
  );
  border-radius: 15px;
  padding: 1.5em;
  align-content: center;
  min-height: 100%;
}
.bg-dark-custom img {
  margin-bottom: 12px;
  width: auto;
  height: 60px;
}
.img-character {
  height: auto;
  max-width: 450px;
}
.profiles h2,
.features h2 {
  font-size: 4.5rem;
  font-weight: 500;
}
.features {
  padding: 80px 0;
  background-image: url("../assets/images/419077.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-icon {
  background-color: #1c1c1c;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid var(--primary-color);
  color: #fff;
}
.rodape {
  padding: 80px 0 0 0;
}
.footer_bottom {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
  padding: 12px 0;
  margin-top: 44px;
  text-align: center;
  background-color: var(--primary-color);
}
/* Animação constante para imagens */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


.img_intro_2 {
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Hover com leve zoom */
.bg-dark-custom img:hover {
  transform: scale(1.05);
}

h1,
h2,
h5,.bg-dark-custom img {
  transition: 0.3s ease;
}

/* Hover para textos */
h1:hover,
h2:hover,
h5:hover {
  transform: scale(1.02);
}
.btn-yellow {
  background-color: var(--primary-color);
  color: #000;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--primary-color);
}
