/* reset css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* ------------------------------------classes-gerais---------------------------------------------------------------- */

html {
    /*Isso faz a rolagem suave quando clicar no menu */
    /* scroll-behavior: smooth; */
    scroll-padding-top: 104px;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #552814;
}

.container {
    margin: auto;
    max-width: 1200px;
}

.flex {
    display: flex;
}

.cor-de-fundo-da-pagina {
    background-color: #D4C7C3
}

.menu .btn-sinalizar:visited {
    color: #EFE3D9;
}

.menu a:hover {
    color: #B54124;
    font-weight: bold;
}

.menu a:visited {
    text-decoration: none;
    font-size: 16px;
    /* mesma cor do link normal */
}



/* ------------------------------------------------------------------------------------------------------ */

.logotipo {
    margin: 10px;
    height: 70px;
    width: 70px;

}


.menu {
    padding: 5px;
    list-style-type: none;
    align-items: center;
    font-size: 16px;
    gap: 30px;
}

header {
    background-color: #EFE3D9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1;
    width: 100%;
    top: 0px;
    left: 0px;
    position: sticky;
    top: 0;
}


.menu a {
    text-decoration: none;
    font-size: 16px;
    color: #552814;


}

.bem-vindo {
    background-color: #D4C7C3;
}

.subtitulo {
    font-size: 20px;
    margin-bottom: 20px;
}

.principal {
    justify-content: center;
    align-items: center;
    padding: 32px;
}


.imagem-mulher-cachorro {
    border-radius: 1000px;
}

/* seção adotar eclipse */

.adotar {
    text-align: center;
    padding: 32px;
}

.circulo {
    margin: 25px;
    width: 100%;
    max-width: 250px;
    height: auto;
    min-height: 250px;
    /* mantém o formato bonito */
    background-color: #F7E7DA;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 12px #9E6B50;
}

.titulo-do-circulo {
    font-size: 12px;
    text-align: center;
    padding: 5px;
    margin-bottom: 30px;
}

.imagem-card {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    padding: 3px;
    margin-left: 10px;
    text-align: center;
    background-color: #D4C7C3;
}

.texto-img {
    text-align: center;
    font-size: 12px;
    padding: 10px;
}

.texto-imagem {
    margin-bottom: 15px;
}

.botao-adote-alinhar {
    justify-content: center;

}

.botao {
    display: flex;
    padding: 0 20px 0 20px;
    height: 31px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #F5EDE3;
    background-color: #5d4037;
    cursor: pointer;
    border: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.botao:hover {
    background-color: #8f6747;
    color: #F5EDE3;
}

.botao:visited {
    color: #F5EDE3;
    /* mantém a cor mesmo depois de clicar */
}

/* verificar este campo */
.mensagem-sucesso {
    display: none; 
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    width: fit-content;
    margin: 10px auto;
}

.mensagem-erro {
    display: none; 
    background-color: #bf1f03;
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    width: fit-content;
    margin: 10px auto;
}


/* ---------------------------------seção---sobre------------------------------------------------------------------- */

#sobre {
    margin-top: 32px;
    margin-bottom: 30px;
}

#sinalizar {
    padding: 15px;
}

.texto-da-secao-sobre {
    text-align: justify;
    padding: 15px;
}

.secao-video {
    justify-content: center;
    padding: 15px;

}

/* -------------------------seção sinalizar------------------------------------------------------------------- */

.image-sinalizar {
    align-items: flex-end;
    padding: 7px;
    margin-left: 31px;


}

/* classe  gerais para formulario */

.formulario {
    border: #552814 1px solid;
    padding: 18px;
    border-radius: 8px;
}

.titulo-form {
    font-weight: bold;
    padding: 5px;
}


/* ----------------------------------------------------------------------------------------- */

.elementos-do-form {
    padding: 6px;
}

.input-file {
    width: 100%;
}

.caixa-input {
    padding: 6px;
    width: 100%;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.nome-da-caixa {
    display: block;
    margin-bottom: 10px;
}

.descricao-da-caixa {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 8px;
    resize: none;
}

.radio-option {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.botao-formulario {
    justify-content: center;
    padding: 29px;
}

.bnt-form {
    margin: 10px;


}

.opcoes-porte {
    align-items: center;
    gap: 10px;

}

/* -----------------------------------secao-perguntas------------------------------------------------------------ */
#perguntas {
    background-color: #D4C7C3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 0 30px 0;
}

.pergunta {
    width: 80%;
}

.borda-do-quadrado {
    border: solid 2px;
    border-radius: 7px;
    padding: 28px;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
}

.borda-do-quadrado h5 {
    margin-bottom: 10px;
}

.titulo-de-perguntas {
    text-align: center;
    width: 100%;
    padding: 10px;
}

/* ----------------------------------------secao-do-footer----------------------------------------------- */
.rodape {
    margin-top: 30px;
    background-color: #EFE3D9;
}

.subtitulo-footer {
    margin-bottom: 7px;
    font-size: 15px;
}

.texto-footer {
    text-align: center;
    padding: 15px;
}

.link-footer a {
    padding: 10px;
    color: #552814;
    /* cor normal */
    text-decoration: none;
}

.link-footer a:visited {
    color: #552814;
    /* impede ficar roxo */
}

.link-footer a:hover {
    color: #B54124;
    /* efeito ao passar o mouse */
}

.imagem-github {
    text-align: center;
}

.imagem-github img {
    width: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.imagem-github img:hover {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 8px white);
}



.centralizar-link {
    text-align: center;
}

.container-link {
    justify-content: space-evenly;
}

.centralizar-missao {
    text-align: center;

}

/* ================= UPLOAD DE IMAGEM ================= */



.upload-box {
    display: block;
    border: 2px solid #9E6B50;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f5ede3;
    position: relative;
    overflow: hidden;
}

#preview {
    display: none;
    max-height: 300px;
    max-width: 100%;
    border-radius: 12px;
    margin: 10px auto;
}


