:root{
    --top-bar-bg-color: #8cd4b0;
    --top-bar-fg-color: #131111;
    --top-bar-main-color: #eeeff5; /* Cor azul claro da imagem */
              

    --menu-bg-color: #8ae9bd70;
    --menu-fg-color:    #608085;
    --menu-hover-bg-color: #b82b2b;

    --menu-group-fg-color: #ffae00;

    --content-bg-color: #fff;
    --content-fg-color: #00080ccb;
    
    --content-titulo-bg-color: #57666dcb;
    
    --footer-bg-color: #747a79;
    --footer-fg-color: #fff;

    --body-bg-color: #fff;
    --body-fg-color: #57666dcb;

    --color-white: #ffffff;
    --color-black: #090909;

    --shadow:  1px 2px 4px rgba(0, 0, 0, .1);
    --shadow3: inset 0 0 1em rgb(0, 0, 0, .1);
}

* {
    font-family: 'Rajdhani', sans-serif;
}

/* font sizes */
.font-size-10px { font-size: 10px; }
.font-size-12px { font-size: 12px; }
.font-size-14px { font-size: 14px; }
.font-size-16px { font-size: 16px; }
.font-size-18px { font-size: 18px; }
.font-size-20px { font-size: 20px; }
.font-size-22px { font-size: 22px; }


/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        transform: translateX(-250px);
        z-index: 1000; /* Mantém o menu acima dos outros elementos */
    }

    .btn-main-menu {
        display: flex;
        z-index: 1100; /* Garante que o botão esteja acima de outros elementos */
        color: var(--color-white);
        background: var(--menu-bg-color);
        padding: 15px;
        border-radius: 5px;
        cursor: pointer;
    }

    .btn-main-menu:hover {
        background: var(--color-black);
        color: var(--color-white);
    }

    .main-menu.show {
        transform: translateX(0);
    }
}



  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F9F9F9;
    color: #333;
  }

  header {
    background-color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #EEE;
  }

  header h1 {
    font-size: 22px;
    color: #FF5722;
    margin: 0;
  }

.navbar-nav .nav-link:hover {
  color: #ff6600; /* cor laranja, pode mudar para a que quiser */
  transition: color 0.3s ease;
}

.navbar-nav .btn:hover {
  background-color: #ff6600; /* muda o fundo do botão */
  color: #fff;               /* muda a cor do texto do botão */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: #f0f0f0;
  color: #ff6600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  nav a.btn {
    background-color: #FF5722;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
  }

  .hero {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(to right, #FFF8F0, #FFE3D0);
    gap: 40px;
  }

  .hero img {
    max-width: 400px;
    border-radius: 10px;
  }

  .hero-text {
    max-width: 600px;
  }

  .hero-text h2 {
    font-size: 36px;
    color: #FF5722;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-text .btn {
    background-color: #FFC107;
    color: #333;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }

  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px 20px;
    text-align: left;
  }

  .feature {
    max-width: 300px;
    margin: 20px;
  }

  .feature h3 {
    color: #FF5722;
    font-size: 20px;
  }

  .feature p {
    font-size: 15px;
  }

  .signup-section {
    background-color: #FFF8F0;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .registers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 10px 0px;
    text-align: left;
  }

.signup-text {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2 2px 6px rgba(0,0,0,0.1);
    max-width: 800px;
  }

  .signup-text h4 {
    margin-bottom: 20px;
    color: #FF5722;
  }

  
  .signup-text button {
    background-color: #FF5722;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
  }


  .signup-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 450px;
  }

  .signup-form h4 {
    margin-bottom: 20px;
    color: #FF5722;
  }

  .signup-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #CCC;
  }

  .signup-form button {
    background-color: #FF5722;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
  }

  footer {
    background: rgb(42, 63, 75);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #fff;
  }


/* Deixa os links e o botão com um visual consistente */
.navbar-nav .nav-link,
.navbar-nav .btn {
  color: #000; /* cor inicial do texto */
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

/* Hover com fundo laranja e texto preto */
.navbar-nav .nav-link:hover,
.navbar-nav .btn:hover {
  background-color: orange; /* ou #FFA500 */
  color: black !important;
  text-decoration: none;
}