/* Configuração para a fonte "Snell" */
@font-face {
    font-family: 'Snell';
    src: url('fonts/SnellBT-Bold.otf') format('opentype');
}


body {
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", sans-serif; /* Definindo "Libre Baskerville" como fonte principal */
    height: 100vh;
    display: flex;
    justify-content: center; /* Mantém a centralização horizontal */
    align-items: flex-start; /* Alinha os itens no topo */
    background: linear-gradient(45deg, #e7d6ce, #FFFFFF);
    background-size: 950% 950%;
    animation: gradientAnimation 10s ease infinite;
}

/* Keyframes para animar o fundo com gradiente */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Definindo estilos para os containers */
.container {
    text-align: center;
    max-width: 100%;
    padding: 20px;
}

.containerbaixo {
    text-align: center;
    max-width: 600px;
    padding: 50px;
    background-color: #ded4c950; /* Cor sólida Com 30% opacidade*/
}

/* Estilo para as imagens */
.image {
    width: 90%;
    max-width: 200px;
    height: auto;
    margin: 40px;
}

.image2 {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 10px 0 5px;
}

/* Estilos de texto */

h1 {
    font-family: "Snell", cursive;
    font-size: 42px;
    color: #741f26;
    margin: 5px 0 40px;
}
h2 {
    font-family: "Snell", cursive;
    font-size: 38px;
    color: #741f26;
    margin: 20px 0 5px;
}

h3 {
    font-family: "Libre Baskerville", serif;
    font-weight:300;
    font-size: 16px;
    color: #741f26;
    margin: 10px 0 20px;
    line-height: 1.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.classe1 {
    font-family: "Libre Baskerville", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #741f26;
    margin: 20px 0 60px;
    line-height: 1.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}
h4 {
/*    text-align: left;   Alinha o texto do h4 à esquerda */
    font-family: "Libre Baskerville", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #392f2a;
    margin: 50px 0 20px;
    line-height: 1.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.classe2 {
    font-family: "Libre Baskerville", sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #392f2a;/* #9b544a; salmao*/
    margin: 10px 0;
    line-height: 1.8;
}
.classe3{
    font-family: "Libre Baskerville", sans-serif;
    font-weight: 100;
    font-size: 10px;
    color: #ded4c9;
    margin: 10px 0 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Estilo para links */

a.link {
    color:inherit;
    font-weight:bolder;
    text-decoration: none;

}

a.link:hover {
    text-decoration: bolder;
}

.botoes {
    display: flex;
    justify-content: space-around; /* Distribui os botões lado a lado */
    margin: 20px 0 50px 0; /* Espaçamento ao redor dos botões em ordem horaria */
}

.btn {
    background-color: transparent; /* Cor do botão */
    color: #392f2a; /* Cor do texto  */
    border: 1px solid #392f2a; /* Borda fina */
    border-radius: 5px; /* Borda levemente arredondada */
    padding: 10px 20px; /*O padding cria espaçamento interno entre o conteúdo (texto) e as bordas do botão.*/
    font-size: 14px;
    cursor: pointer;
    font-family: "Libre Baskerville", sans-serif; /* Mesma fonte do restante */
    font-weight:100;
    width: 220px; /* Define uma largura específica */
    text-align: center; /* Centraliza o texto */
    white-space: normal; /* Permite a quebra de linha */
}

.btn:hover {
    background-color: #e7d6ce; /* Cor mais escura ao passar o mouse */
}


/* Estilo para o mapa */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    margin: 20px 0 50px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
