/* Logo */
.brand-info {
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
}

.brand-info-black {
  color: #000;
}

.brand-info-blue {
  background: linear-gradient(to right, #0067ff, #004eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 3s infinite linear;
}

@keyframes gradient-slide {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-weight: 700;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background-color: var(--bs-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Remove white background on mobile hamburger menu */
@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

/* Estilo moderno das abas laterais */
.nav-pills .nav-link {
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-pills .nav-link:hover {
  background-color: #1a1a1a;
}

.nav-pills .nav-link.active {
  background-color: #0056cc;
  color: #fff;
}

.nav-pills .nav-link .icon-pill {
  background-color: rgba(255, 255, 255, 0.03);
  color: #0067ff;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-pills .nav-link.active .icon-pill {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Separador SVG */
.section-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  margin-top: -1px;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Separadores triangulares com altura reduzida para mobile */
.triangle,
.triangle-negative {
  position: relative;
  height: 2vh;
}

@media (max-width: 576px) {
  .triangle,
  .triangle-negative {
    height: 1.5vh;
  }
}

.triangle {
  background: #181818;
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #181818 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.triangle-negative {
  background: #ebeef2;
}

.triangle-negative::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #181818 transparent;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsividade ícone Sobre */
@media (max-width: 768px) {
  #sobre lord-icon {
    width: 250px !important;
    height: 250px !important;
  }
}
