/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

#apresentacao {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Cabeçalho */
h1 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #e74c3c;
}

/* Formulário */
fieldset {
    border: none;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}

legend {
    font-size: 20px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

.campos {
    margin-bottom: 25px;
}

.campos label {
    display: block;
    color: #34495e;
    margin-bottom: 8px;
    font-weight: bold;
}

.campos input[type="text"],
.campos input[type="email"],
.campos textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.campos input[type="text"]:focus,
.campos input[type="email"]:focus,
.campos textarea:focus {
    border-color: #3498db;
    outline: none;
}

/* Atualizar o estilo do campo de endereço e botão */
.campos {
    position: relative;
    margin-bottom: 25px;
}

.campos input[type="text"],
.campos input[type="email"],
.campos textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

/* Campo de endereço e botão */
.campos:first-of-type {
    display: block;
}

.campos:first-of-type .input-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 8px;
}

#txtEndereco {
    flex: 1;
    margin-top: 0;
}

#btnEndereco {
    background-color: #e74c3c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
    min-width: 150px;
    margin: 0;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .campos:first-of-type .input-group {
        flex-direction: column;
    }

    #btnEndereco {
        width: 100%;
        margin-top: 10px;
    }
}

#btnEndereco:hover {
    background-color: #c0392b;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .campos:first-of-type {
        flex-direction: column;
    }

    #txtEndereco {
        width: 100%;
    }

    #btnEndereco {
        width: 100%;
        margin-top: 10px;
    }
}

/* Mapa */
#mapa {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border-radius: 4px;
    border: 1px solid #bdc3c7;
}

/* Termos e botão de envio */
.termos {
    display: block;
    margin: 20px 0;
    color: #7f8c8d;
}

.termos a {
    color: #3498db;
    text-decoration: none;
}

.termos a:hover {
    text-decoration: underline;
}

input[type="button"] {
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 30px auto;
    transition: background-color 0.3s;
}

input[type="button"]:hover {
    background-color: #c0392b;
}

input[type="submit"] {
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 30px auto;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #c0392b;
}

.dados {
    text-align: center;
    color: #7f8c8d;
    font-size: 13px;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    #apresentacao {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
        padding: 15px 0;
    }

    .campos {
        margin-bottom: 20px;
    }

    #mapa {
        height: 300px;
    }

    input[type="submit"] {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    fieldset {
        padding: 10px;
    }

    .campos input[type="text"],
    .campos input[type="email"],
    .campos textarea {
        padding: 10px;
        font-size: 14px;
    }

    #btnEndereco {
        width: 100%;
    }
}

/* Após os estilos gerais e antes do cabeçalho */

.topo-imagem {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.topo-imagem img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

/* Media queries existentes */
@media (max-width: 768px) {
    .topo-imagem {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .topo-imagem {
        margin-bottom: 10px;
    }
}

/* Adicione após os estilos existentes */
.mensagem-sucesso {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
}

.mensagem-sucesso h1 {
    color: #2ecc71;
    border-bottom: none;
    margin-bottom: 20px;
}

.mensagem-sucesso p {
    color: #34495e;
    margin-bottom: 30px;
}

.botao-voltar {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.botao-voltar:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .mensagem-sucesso {
        padding: 20px;
    }
    
    .botao-voltar {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
.denuncia-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.denuncia-info h2 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
}

.denuncia-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.denuncia-info strong {
    color: #34495e;
}