body {
    font-family: 'Open Sans', sans-serif; /* Fonte moderna e limpa */
    margin: 0;
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9); /* Gradiente suave de azul claro para verde claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333; /* Cor de texto mais neutra */
   
}

.container {
    max-width: 600px;
    width: 95%;
    background-color: #000000;
    padding: 40px; /* Aumentando o padding */
    border-radius: 16px; /* Bordas mais arredondadas */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Sombra mais suave e moderna */
}

h1 {
    text-align: center;
    color: #26a69a; /* Verde mais moderno */
    margin-bottom: 35px;
    font-weight: 700; /* Mais destaque */
    letter-spacing: 0.5px; /* Pequeno espaçamento entre letras */
}

p {
    text-align: center;
    color: #555; /* Cor de texto mais neutra */
    margin-bottom: 20px;
    font-size: 1em; /* Aumentando o tamanho da fonte */
    line-height: 1.6; /* Melhorando o espaçamento entre linhas */
    margin-left: -5%;
}

/* h3 {
    text-align: center;
    color: #1e88e5; /* Azul mais tecnológico
    margin-bottom: 25px;
    font-weight: 600;
} */

a{
    text-decoration: none;
    color: inherit;
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

input[type="file"],
textarea,
input[type="text"] {
    display: block;
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #b0bec5; /* Borda mais clara */
    border-radius: 8px; /* Bordas mais arredondadas */
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input[type="file"]:focus,
textarea:focus,
input[type="text"]:focus {
    border-color: #26a69a;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 166, 154, 0.25);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background-color: #26a69a; /* Verde moderno */
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block; /* Coloca os botões em linhas separadas por padrão */
    width: 100%; /* Ocupam a largura total */
    margin-bottom: 10px; /* Espaço entre os botões */
}

.botao-foco-registrado, #tirar-foto, #obter-localizacao, #enviar-foco{
    font-weight: 600;
    height: 3rem;
    width: 100%;
    border-radius: 8px;
    margin-top: 2em;
}

.botao-orientacoes{
    background-color: #009688; /* Verde mais escuro ao passar o mouse */
    color: white;
    font-weight: 600;
    height: 3rem;
    width: 100%;
    border-radius: 8px;
    margin-top: 2em;
}

button:hover {
    background-color: #009688; /* Verde mais escuro ao passar o mouse */
    transform: translateY(-2px); /* Pequeno efeito de elevação */
}

#localizacao-info {
    margin-bottom: 20px;
    color: #777;
    font-size: 0.95em;
}

/* #obter-localizacao {
    background-color: #1e88e5; /* Azul tecnológico
    margin-right: 15px;
*/

#obter-localizacao:hover {
    background-color: #009688; /* Verde mais escuro ao passar o mouse */
    transform: translateY(-2px); /* Pequeno efeito de elevação */
}

/* #tirar-foto {
    background-color: #78909c; /* Cinza azulado neutro
} */

/* {

    /* background-color: #546e7a; */


.form-group p > button {
    width: auto;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px; /* Espaçamento para telas menores */
}

/* Estilos específicos para a página de focos */
#lista-focos {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #e0f2f1; /* Verde bem claro */
    border-radius: 12px;
    border: 1px solid #b2dfdb;
}

#lista-focos h2 {
    color: #26a69a;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #80cbc4;
    padding-bottom: 8px;
    text-align: left;
}

#focos-list {
    list-style: none;
    padding: 0;
}

#focos-list li {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.1s ease-in-out;
}

#focos-list li:hover {
    background-color: #f5f5f5;
}

#focos-list li img {
    max-width: 50px;
    max-height: 50px;
    margin-right: 15px;
    border-radius: 6px;
}

#focos-list li span {
    flex-grow: 1;
    color: #444;
}

#focos-list li .data-registro {
    font-size: 0.85em;
    color: #777;
    margin-left: 15px;
}

#mapa-focos {
    padding: 20px;
    background-color: #e0f2f1;
    border-radius: 12px;
    border: 1px solid #b2dfdb;
    margin-top: 20px;
}

#mapa-focos h2 {
    color: #26a69a;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #80cbc4;
    padding-bottom: 8px;
    text-align: left;
}

#mapa-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden; /* Para conter marcadores se eles saírem */
}

#mapa-container img {
    width: 100%;
    display: block; /* Evita espaço extra abaixo da imagem */
}

.marcador-foco {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.8); /* Vermelho mais vibrante */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%); /* Centraliza o marcador */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.marcador-foco:hover::before {
    content: attr(data-descricao);
    position: absolute;
    left: 15px;
    top: -10px;
    background-color: #333;
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
    z-index: 11;
}

#detalhe-foco {
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f8e9; /* Verde bem claro */
    border-radius: 12px;
    border: 1px solid #dcedc8;
}

#detalhe-foco h3 {
    color: #388e3c; /* Verde mais escuro */
    margin-top: 0;
    border-bottom: 2px solid #81c784;
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-align: left;
}

#detalhe-foco p {
    margin-bottom: 12px;
    color: #555;
}

#detalhe-foco strong {
    font-weight: 600;
    color: #333;
}

#lembretes-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #000000;
    border-radius: 12px;
    border: 1px solid #dcedc8;
}

#lembretes-section h2 {
    color: #26a69a; /* Verde mais moderno */
    margin-top: 0;
    border-bottom: 2px solid #81c784;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

#lembretes-section .form-group {
    margin-bottom: 15px;
}

#lembretes-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

#lembretes-section input[type="text"],
#lembretes-section select,
#lembretes-section input[type="time"] {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #b0bec5;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 16px;
}

#lembretes-section button {
    background-color: #26a69a; /* Verde moderno */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease-in-out;
}

#adicionar-lembrete {
    font-weight: 600;
    height: 3rem;
    width: 100%;
    border-radius: 8px;
    margin-top: 2em;
}

#lembretes-section button:hover {
    background-color: #009688; /* Verde mais escuro ao passar o mouse */
    transform: translateY(-2px); /* Pequeno efeito de elevação */
}

#lista-lembretes {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

#lista-lembretes li {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#lista-lembretes li span {
    flex-grow: 1;
    margin-right: 10px;
}

#lista-lembretes li button {
    background-color: #d32f2f;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-left: 10px;
}

#lista-lembretes li button:hover {
    background-color: #b71c1c;

}

/* pagina orientações da dengue */

.container-orientacoes {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.secao-orientacao {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.secao-orientacao h2, .secao-orientacao h3 {
    color: #333;
    margin-top: 0;
}

.secao-orientacao:last-child {
    border-bottom: none;
}

/* Estilos para telas menores */
@media (max-width: 480px) {
    .container {
        padding: 30px;
        border-radius: 12px;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        font-size: 1.1em;
    }

    input[type="file"],
    textarea,
    input[type="text"],
    button {
        font-size: 1.1em;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #ccc;
        width: 100%;
        margin-bottom: 10px;
        display: block; /* Garante que os botões fiquem um abaixo do outro em telas pequenas */
    }

    .form-group > button {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    #localizacao-info {
        font-size: 1em;
    }
}
