@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200&display=swap');
/* Reset de estilos padrão */
body, h1, h2, ul, li, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo global */
body {
    background-color: #f9f9f9;
    font-family: 'Titillium Web', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Estiliza os links */
a.contato {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

a.contato:hover {
    color: #212529;
}

a.footer {
    color: white;
    transition: color 0.3s;
}

a.footer:hover {
    color: #6c757d;
}

/* Estiliza os links. */
a.custom-link {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s; 
    display: inline-block; 
    border-radius: 4px; 
    border: 1px solid #212529;
    margin-right: 3px;
}

a.custom-link:hover {
    color: #212529;
    transform: scale(1.05);
}

/* Estilo de títulos */
h1, h2 {
    color: #333;
    margin-bottom: 2vh;
    font-size: 3.5vw;
}

/* Estilo de listas */
ul {
    list-style: disc;
    margin-left: 3vw;
}

li {
    margin-bottom: 1.5vh;
}

/* Estilo do conteúdo principal */
main {
    width: 90%;
    max-width: 900px;
    padding: 5vw;
    margin: 5vh auto;
    border-radius: 5px;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
    background-color: #f2f2f2;
}
  
/* Estilo das seções */
section {
    margin-bottom: 5vh;
    padding: 4vw;
    background-color: #c0c0c0;
    border-radius: 3vw;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.1);
}

/* Estilo do conteúdo interno das seções */
.conteudo {
    padding: 3vh;
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Responsividade usando media queries */

/* Smartphones */
@media only screen and (max-width: 480px) {
    h1, h2 {
        font-size: 6vw;
        margin-bottom: 5vw;
    }
    ul {
        margin-left: 6vw;
    }
    li {
        margin-bottom: 3vw;
    }
    main {
        padding: 8vw;
    }
    section {
        padding: 6vw;
        border-radius: 5vw;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    }
    .conteudo {
        padding: 5vw;
        font-size: 4vw;
        line-height: 1.8;
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    h1, h2 {
        font-size: 4vh;
        margin-bottom: 3vh;
    }
    ul {
        margin-left: 4vw;
    }
    li {
        margin-bottom: 2vh;
    }
    main {
        padding: 6vw;
    }
    section {
        padding: 5vw;
        border-radius: 4vw;
        box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.1);
    }
    .conteudo {
        padding: 4vw;
        font-size: 3vh;
        line-height: 1.7;
    }
}

/* Desktops */
@media only screen and (min-width: 769px) {
    h1, h2 {
        font-size: 3vh;
        margin-bottom: 2vh;
    }
    ul {
        margin-left: 2vw;
    }
    li {
        margin-bottom: 1vh;
    }
    main {
        padding: 5vh;
    }
    section {
        padding: 4vh;
        border-radius: 3vw;
        box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.1);
    }
    .conteudo {
        padding: 3vh;
        font-size: 2.5vh;
        line-height: 1.6;
    }
}

.filtro-imagem {
    filter: grayscale(50%) sepia(10%); /* Combinação de escala de cinza e sépia */
    border-radius: 12px; /* Bordas arredondadas */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); /* Sombra mais intensa */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Contorno mais pronunciado */
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Transições suaves para o filtro e transformação */
}
  
.filtro-imagem:hover {
    filter: grayscale(70%) sepia(20%); /* Ajuste do filtro ao passar o mouse */
    transform: scale(1.05); /* Efeito de escala ao passar o mouse */
}
  
#secao_imagem {
    text-align: center;
}

.centralizar {
    display: inline-block;
}