@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif !important;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    text-align: center;
  }

  .navbar-center h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
}

  .list-cont{
    padding: 30px;
    height: 100%;
  }

.azul {
    color: #174F97;
    font-weight: 700;
}

.filtro-form {
    margin: 20px 0;
}

.filtro-form input {
    padding: 10px;
    width: 150px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.filtro-form button {
    padding: 10px 20px;
    background-color: #174F97;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.contadores-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contador-box {
    display: flex;
    background: #f5f5f5;
    border: 1px solid #ccc;
    width: 90%;
    max-width: 600px;
    text-align: left;
    text-decoration: none;
    color: #333;
}

.nome-escritorio {
    background-color: #174F97;
    color: white;
    font-weight: bold;
    padding: 20px;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-local {
    padding: 20px;
    width: 70%;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {

.navbar {
    flex-direction: column;
}

.navbar-center h1 {
    font-size: 12px;
}

.navbar-center p {
    display: none;
}

.filtro-form {
    margin: 20px 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.filtro-form input {
    width: 96%;
}

.contadores-container {
    gap: 25px;
    flex-direction: column;
}

.contador-box {
    flex-direction: column;
}

.nome-escritorio {
    width: 100%;
    text-align: center;
}

.info-local {
    width: 100%;
    text-align: center;
}

}

