:root {
  --branco: #eaeaea;
  --inox: #acaba9;
  --cinza: #75706f;
  --chumbo: #2c2c2c;
  --preto: #121212;
}
a{
  color:black !important;
  font-weight: bold !important;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
  transition: all 0.5s ease-in-out;
}
.bg-gray{
  background-color:rgba(0, 0, 0, 0.232);
}
a:hover:not(nav a) {
  border-radius: 1rem;
  border-bottom: 2px solid #000000;
  transform: translateX(-10px);
}
nav a:hover{
  border:none !important;
  color:black;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.142);
}
.contact-icons-float a{
  color:white !important;
}
nav a{
  font-weight:500 !important;
  padding: .3rem .5rem;
  border-radius: .3rem;
}

body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

/************************** Navbar styles ********************************/
.navbar {
  background-color: var(--branco);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-dark-mode {
  background-color: var(--preto) !important;
}

.navbar a,
.navbar .navbar-brand {
  color: var(--preto);
  transition: color 0.3s ease;
}

.navbar-dark-mode a {
  color: var(--branco) !important;
}

.dropdown-menu {
  border: none;
  background-color: var(--inox);
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-item:hover {
  background-color: var(--cinza);
  color: white;
}

/* Search icon in input */
.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: var(--cinza);
}

.form-control:focus {
  border-color: var(--cinza);
  box-shadow: 0 0 0 0.2rem rgba(117, 112, 111, 0.25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mode-toggle {
  border: none;
  background: transparent;
  font-size: 1.3rem;
  color: var(--cinza);
  transition: transform 0.3s ease;
}

.mode-toggle:hover {
  transform: rotate(180deg);
}

/* Nested dropdown support */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(10px);
  visibility: hidden;
  z-index: 1000;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
/* Fix for nested dropdowns in Bootstrap 5 */
.dropdown-submenu .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  background-color: var(--inox);
  border: none;
  z-index: 1050;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

.dropdown-submenu:hover .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/**************************** Home Section ****************************/
.interactive-section {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-pills .nav-link {
  background-color: #f2f2f2;
  color: #333;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
  background-color: #2c2c2c;
  color: #fff;
}

.tab-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .interactive-section {
    padding: 1rem;
  }

  .tab-content {
    padding-top: 1rem;
  }
}
/*********************** Marketing setup Section ************************/
.marketing-section {
    background-color: var(--branco);
    color: var(--preto)!important;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }

  .marketing-section h2, .marketing-section h5 {
    color: var(--cinza);
  }

  .marketing-section p, .marketing-section span {
    color: var(--cinza);
  }

  .marketing-section li:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    padding-left: 0.25rem;
  }

  .content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
li{
  color:var(--cinza);
}
  iframe {
    border-radius: 12px;
  }
/*Contact Section*/
.contact-icons-float {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-icon {
  background-color: #000;
  color: white;
  padding: 12px;
  font-size: 18px;
  border-radius: 8px 0 0 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.contact-icon:hover {
  border-radius: 50%;
  box-shadow: 2px 2px 15px 5px rgba(0, 0, 0, 0.2);
  background-color: #dddddd;
  color: #000;
  transform: translateX(-8px);
}
 