/*INICIO ESTILOS GERAIS*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Souce Sans Pro', sans-serif;
}

section, footer {
    width: 100%;
    text-align: center;
}

#sobre,p,.lista,.figuras,.botao,figcaption,#contato {
    margin: 20px auto;
}

h2 {
    font-size: 25px;
}

h3,figcaption {
    font-size: 22px;
}

p,li,a {
    font-size: 18px;
}

/*FIM ESTILOS GERAIS*/

/*INICIO ESTILOS SEÇÃO TOPO*/

.topo {
    background-color: #04ccd4;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav {
    width: 300px;
    display: flex;
    justify-content: space-between;
}

nav a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    color: black;
}

/*FIM ESTILOS SEÇÃO TOPO*/

/*INICIO ESTILOS BANNER*/
.banner {
    width: 100%;
    background-image: url("../imagens/recepcao.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 400px;
}

.destaque-banner {
    color: white;
    font-size: 32px;
    text-transform: uppercase;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    text-align: justify;
}

.destaque-banner h1 {
    width: 72%;
    white-space: nowrap;
}

/*FIM ESTILOS BANNER*/

/*INICIO ESTILOS SEÇÃO SOBRE*/
.lista {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
}

.lista p {
    text-transform: uppercase;
}

.figuras {
    max-width: 1024px;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
}

.figuras figcaption, .figuras img {
    border: 1px solid black;
    width: 90%;
    box-shadow: 0 0 5px 2px black;
}

.figuras figcaption:hover, .figuras img:hover {
    border: 3px solid blue;
}

.figuras img {
    border-radius: 15px 15px 0 0;
}

.figuras figcaption {
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    padding: 10px;
}

.botao a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    padding: 10px 20px;
    background-color: #04ccd4;
}

.botao a:hover {
    color: black;
    background-color: green;
}

/*FIM ESTILOS SEÇÃO SOBRE*/

/*INICIO SEÇÃO CONTATO*/
#contato {
    margin: 40px auto;
}

#contato iframe {
    width: 75%;
}

#contato p {
    width: 50%;
}

#contato span {
    font-weight: bold;
}

/*FIM SEÇÃO CONTATO*/

/*INICIO SEÇÃO RODAPÉ (FOOTER)*/
footer {
    background-color: #0c6c74;
    padding: 20px 0;
}

footer p {
    color: white;
}

/*FIM SEÇÃO RODAPÉ (FOOTER)*/






