/* Importa a fonte Roboto Mono do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aleo&display=swap');

* {
  box-sizing: border-box;
}

/* Basic Reset & Body Styles */
body {
margin: 10px;
font-family: 'Roboto Mono', monospace;
background-color: white;
color: #333;
}

/* Prevents scrolling on the body when menu is open */
body.no-scroll {
    overflow: hidden;
}

.desktop { display: block; }
.mobile { display: none; }

@media (max-width: 768px) {
.desktop { display: none; }
.mobile { display: block; }
}

.card {
  width: 200px;
  height: 200px;
  background-color: #D3D3D3;
  border-radius: 5px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  margin-top: 0;
}

.card-button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Roboto Mono', monospace;
}

.container-titulo {
display: flex;
flex-direction: column;
}

.container-cards {
display: flex;
gap: 10px;
}

/*@media (max-width: 768px) {
  .card {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .container-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-button {
    width: 50%;
  }

  .card-title {
    font-size: 1.25rem;
  }
}*/

.container-form {
display: flex;
flex-direction: column;	
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"] {
  all: unset;
  width: 20%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 10px;
}

input:focus {
  border-color: #3b82f6; /* azul suave */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"] {
    width: 60%;
  }
}

/* Smartphones (≤ 480px) */
@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"] {
    width: 90%;
  }
}

.rolagem_container {
position: relative;
width: 95%;
margin: 2rem auto;
background: #fff;
border-radius: 10px;
overflow: hidden;
}

.rolagem_conteudo {
display: flex;
overflow-x: scroll;
scroll-behavior: smooth;
padding: 20px;
}

.rolagem_conteudo::-webkit-scrollbar {
display: none;
}

.rolagem_conteudo {
scrollbar-width: none;
}

.rolagem_item {
flex: 0 0 auto;
width: 200px;
height: 150px;
margin-right: 20px;
background: #ddd;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2em;
color: #555;
}

.rolagem_seta {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
z-index: 10;
}

.rolagem_seta:hover {
background: rgba(0, 0, 0, 0.7);
}

.rolagem_seta_esquerda {
left: 10px;
}

.rolagem_seta_direita {
right: 10px;
}
