* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, rgba(252, 252, 252, 1) 0%, rgba(255, 227, 84, 1) 46%);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#card{
    max-width: 450px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f4f4f4;
    border-radius: 12px;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    background-image: url("img01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}

span[id^="erro"] {
    display: block;
    margin: 5px;
    color: #d9534f;
    font-size: 13px;
}

p{
    color:#737373;
}

#pagina2, 
#displayMunicipio, 
#displayEquipe{
    display: none;
}

#tituloEntrevistado {
    font-weight: bold;
    color: #333;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 1px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-bottom: 1px solid #929292;
}

label {
    display: block;
    margin: 10px 0px 5px 0px;
}

.perguntas{
    margin-top: 15px;
    margin-bottom: 5px;
}


.label-radio {
    display:inline;
    margin:0px 10px 0px 0px;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    color: #333;
}

#linhaNome,
#linhaTelefoneMunicipio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#linhaNome > div,
#linhaTelefoneMunicipio > div {
    flex: 1 1 140px;
    min-width: 140px;
}

input[type="text"]{
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
 
input[type="tel"]{
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.label-radio {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 6px 0 0;
}

input[type="radio"]:checked + .label-radio {
    background-color: #333;
    color: white;
    border-color: #333;
}

#botaoProximo,
#botaoFinalizar {
    margin-top: 20px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #f5d76e;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#botaoProximo:hover,
#botaoFinalizar:hover {
    background-color: #f5d76e;
}