@charset "UTF-8";

@font-face {
    font-family: 'blackgold';
    src: url('fonte/blackgold.otf.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Cormorant';
    src: url('fonte/Cormorant/static/Cormorant-Regular.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant&display=swap');

* {
    padding: 0px;
    margin: 0px;
    --fonte-gold: 'blackgold', cursive;

}

/* ####################### Ajusta o radapé ######################## */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#wrapper {
    min-height: 100%;
    position: relative;
}

div.body-content {
    /** Altura do rodapé tem que ser igual a isso aqui e vice-versa **/
    padding-bottom: 50px;
}

/* ####################### Ajusta o radapé ######################## */

:root {
    --cordourado: #d9b569;
}

main {
    clear: left;
    width: 70%;
    margin: auto;
    margin-bottom: 50px;

}

header>h1 {
    text-align: center;
    font-family: 'blackgold';
    font-size: 3em;
    font-weight: bolder;
    color: #213958;
    padding: 20px;
    margin: auto;

}

header h2 {
    text-align: center;
    font-family: 'Cormorant';
    font-style: italic;
    font-size: 1.5em;
    color: var(--cordourado);
    padding-top: 15px;
    padding-bottom: 35px;
}

header nav {
    text-align: center;
    padding-bottom: 19px;
}

header a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    padding: 5px;
    color: rgb(117, 116, 116);
}

#dourado {
    color: var(--cordourado);
}

a:hover {
    color: var(--cordourado);
}

.header-img {
    display: inline-block;
    width: 100%;
}

section {
    text-align: justify;
}

.frente {
    width: 30%;
    float: left;
    margin: 10px 10px 50px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.53);
}

/*aqui o margin é importante para leitura*/
.titulo-principal {
    font-family: 'blackgold';
    margin: 10px 24px 10px 24px;
    color: #213958;
}

/*Aqui criei uma section para englobar todos os parágrafos*/
p {

    font-family: 'Cormorant';
    font-weight: bolder;
    padding: 10px;
}

footer {
    /* -Padrão para funcionar */
    clear: left;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
  

    /* -De fato estilizando CSS */
    background-color: #213958;
    text-align: center;
    font-size: 20px;

}

/*################# Marcação página localização #################*/
.map {
    width: 100%;
    text-align: center;
    line-height: 50px;
}


/*################# Marcação página trabalhe conosco #################*/
label,
input {
    display: block;
    font-family: 'Cormorant';
    font-weight: bolder;
    font-size: 20px;
    margin: auto;
    padding: 10px 25px;
    width: 50%;
    text-align: center;

}

h1 {
    display: block;
    font-family: 'Cormorant';
    font-weight: bolder;
    font-size: 20px;
    margin: auto;
    padding: 10px 25px;
    text-align: center;
}

textarea {
    display: block;
    font-family: 'Cormorant';
    font-weight: bolder;
    font-size: 20px;
    margin: auto;
    padding: 10px 0 20px 50px;
    height: 100px;
    width: 50%;
    text-align: center;
}

#submit {
    margin-top: 20px;

}