.logo {
  display: flex; /* Alinha o logotipo e o texto lado a lado */
  align-items: center; /* Alinha verticalmente no centro */
  gap: 10px; /* Espaço entre o logotipo e o texto */
  font-size: 24px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.logo img {
  height: 40px; /* Altura do logotipo */
  width: auto;  /* Mantém a proporção */
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px; /* Espaço entre os links */
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: black;
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #004d40;
  color: #fff;
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
}
nav {
 /*menu
   background-color: #1a1d2e; Fundo escuro para destacar o menu */
  padding: 10px 20px;
  position:relative;
  right: -5%;
 /* margin-left: ri;*/

}
nav ul {
  list-style: none; /* Remove os marcadores da lista */
  margin: 0;
  padding: 0;
  display: flex; /* Alinha os itens horizontalmente */
  justify-content: flex-end; /* Move o menu para a direita */
}
nav ul li {
  margin-left: 25px; /* Espaçamento entre os itens */
}
nav ul li a {
    text-decoration: none; /* Remove o sublinhado dos links */
    font-family: 'Roboto', sans-serif; /* Fonte estilosa (use Google Fonts ou fontes locais) */
    font-size: 18px; /* Aumenta o tamanho da fonte */
    color: white; /* Cor do texto */
    transition: color 0.3s; /* Efeito suave ao passar o mouse */
}

nav ul li a:hover {
    color: #f0a500; /* Cor de destaque ao passar o mouse */
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

nav ul li a {
  text-decoration: none;
  color: white;
}

#home {
  padding: 2em;
  background-color: #e0f7fa;
  text-align: center;
}

section {
  padding: 2em;
}

.card-container {
  display: flex;
  gap: 1em;
  justify-content: space-around;
}

.card {
  padding: 1em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #222;
  color: white;
}
#dashboard {
  padding: 2em;
  background-color: #e8f5e9;
}

#dashboard-data {
  padding: 1em;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1c29;
  padding: 10px 20px;
  color: #fff;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 20px;
}

/* Links de navegação */
.nav-links {
  display: flex;
  list-style: none;
  margin-left: 20px;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
}

/* Botões */
.navbar-right {
  display: flex;
  gap: 10px;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: #1a1c29;
}

.btn-filled {
  background-color: #fff;
  color: #1a1c29;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-filled:hover {
  background-color: #ccc;
}

/* Responsividade */

/*@media (max-width: 768px) {
  nav {
    background-color: #c80e0e; /* Fundo escuro para destacar o menu 
    padding: 10px 20px;
   /* margin-left: ri;
  }
  .nav-links {
      display: none;
  }
}*/
@media (max-width: 1518px) {
  nav {
   /* background-color: #540808; /* Fundo escuro para destacar o menu */
    padding: 10px 20px;
    position: relative;
 right: -5%;
  }
  .nav-links {
      display: none;
  }
}
@media (max-width: 501px) {
  nav {
    /*background-color: #540808; /* Fundo escuro para destacar o menu */
    padding: 10px 20px;
    position: relative;
 right: 0%;
  }
  .nav-links {
      display: none;
  }
}

/* Modal (estilização) */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  text-align: center;
}

.close-btn {
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close-btn:hover {
  color: #f00;
}

/* Estilo do formulário */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  
}

form input:focus {
  border-color: #1a75ff;
  outline: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

.navbar {
    background-color: #1a1d2e;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-container {
    position: relative;
}

#search-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    width: 300px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    z-index: 1000;
}

.search-dropdown input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

.search-categories {
    margin-bottom: 10px;
}

.search-categories h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.search-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-categories li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    padding: 5px 0;
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 4px;
    text-align: center;
    line-height: 20px;
    color: white;
    font-size: 12px;
}

.search-footer {
    display: flex;
    justify-content: space-between;
}

.search-footer button {
    padding: 8px 10px;
    font-size: 14px;
    color: white;
    background-color: #1a1d2e;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-footer button:hover {
    background-color: #333;
}

.btn-pes {
  background-color: #fff;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.crypto-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 30px;
}

.content {
    max-width: 500px;
}





.cards {
    margin-bottom: 20px;
}

.card {
    background-color: #f9f5ff;
    border: 1px solid #e2dff7;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}


.start-btn {
    background-color: #5b44d9;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.start-btn:hover {
    background-color: #432db1;
}

.image-container {
    max-width: 500px;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
