/* Config. Padrão */

body{
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', sans-serif;
    src: url('../fonts/century-gothic.ttf');
    font-size: 30px;
}

/* NAVEGAÇÃO */

header, .navbar{
    padding: 5px;
    background-color: #F7F6F4;
}

#nav-container{
    padding-top: 0;
    padding-bottom: 0;
}

#logo{
    width: 100%;
    height: auto;
}

@media (max-width: 768px){
    #logo{
        width: 150px;
    }
}

.navbar-brand{
    padding: 0;
}

.navbar a{
    padding: 0;
    font-size: 60%;
    color: #444;
}

.navbar-expand-lg .navbar-nav .nav-link{
    margin: 1rem .8rem;
    text-align: center;
}

.navbar-nav a{
    padding: .5rem 1rem;
    color: #444;
}

.navbar-nav a:hover{
    color: #008CFF;
    transition: 1s;
}

.navbar-toggler{
    background-color: none!important;
    border: none!important;
    padding: 0!important;
}

.navbar-toggler:focus{
    box-shadow: none!important;
}

.navbar-toggler-icon{
    color: #444;
}

.navbar-toggler .close{
    display:inline;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #444;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.navbar-toggler.collapsed>.close, .navbar-toggler:not(.collapsed)>.navbar-toggler-icon{
    display:none;
}

/* CAROUSEL */

section.carousel{
    background: linear-gradient(0deg, rgba(0,76,138,1) 0%, rgba(0,140,255,1) 100%);
    padding: 0;
    height: 100vh;
}

.carousel-fade{
    opacity: 1.0;
}

#mainSlider .carousel-inner, #mainSlider .carousel-item{
    height: 90vh;
    display: flex;
    align-items: center;
}

#mainSlider .carousel-item img{
    display: inline-block;
    max-width: 100%;
}

.caption{
    padding: 50px;
    text-align: left;
}

@media (max-width: 768px){
    .caption{
        text-align: center;
    }
}

.caption h2{
    width: 100%;
    font-size: 120%;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 10px;
}

.caption p{
    font-size: 60%;
    color: #FFF;
    margin-bottom: 30px;
}

.main-btn:hover{
    color: #008CFF;
    background-color: #FFF;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  justify-content: right;
  width: auto;
}

/* SOBRE */

section#sobre{
    font-size: 60%;
    text-align: center;
    padding: 40px 0;
}

section#sobre img{
    padding: 40px;
}

/* PORTFÓLIO */

section#portfolio{
    background-image: url(../imagens/bg-portfolio.jpg);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 20px 0;
}

section#portfolio .row{
    padding: 40px 0;
}

section#portfolio .col-md-4{
    margin: auto;
    padding: 0;
    position: relative;
}

section#portfolio .col-md-4 span{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    font-size: 70%;
    color: #FFF;
    text-align: center;
    margin: auto;
    padding: 15vh 0;
    bottom: 0;
    transition: 0.5s ease;
}

section#portfolio .col-md-4:hover span{
    border: 10px solid #fdfdf7;
    opacity: 0.9;
    visibility: visible;
}

section#portfolio h3{
    text-align: center;
    text-transform: uppercase;
    font-size: 100%;
    font-weight: 600;
    color: #004C8A;
    padding: 40px 0;
}

/* SERVIÇOS */

section#servicos{
    background-color: #008CFF;
    text-align: center;
    padding: 40px 0;
}

section#servicos .col-md-3{
    text-align: center;
    padding: 40px 0;
}

section#servicos .col-md-3 h4{
    color: #FFF;
    font-size: 60%;
    font-weight: 600;
    padding: 20px 0;
}

/* HOSPEDAGEM */

section#hospedagem{
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(221,221,221,1) 100%);
    text-align: center;
    padding: 40px 0;
}

section#hospedagem h3{
    text-align: center;
    text-transform: uppercase;
    font-size: 100%;
    font-weight: 600;
    color: #004C8A;
    padding-top: 40px;
}

section#hospedagem img{
    padding: 40px;
}

section#hospedagem p{
    font-size: 60%;
    text-align: center;
}

/* CONTATO */

section#contato{
    background-color: #FFF;
    padding: 40px 0;
}

section#contato h3{
    text-align: center;
    font-size: 100%;
    font-weight: 300;
    color: #004C8A;
    padding: 40px 0 20px 0;
}

section#contato .form-control, .form-select{
    background-color: #F8F8F8;
}

@media (max-width: 768px){
    .g-4{
        padding-right: 0;
    }
}

section#contato .invalid-feedback{
    font-size: 50%;
}

section#contato button{
    font-size: 50%;
    text-transform: uppercase;
    color: #FFF;
    background-color: #008CFF;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: .375rem .75rem;
    transition: .5s;
}

@media (max-width: 768px){
    section#contato button{
        width: 100%;
    }
}

section#contato button:hover{
    background-color: #004C8A;
    transition: .5s;
}

.icon-sociais{
    text-align: right;
}

@media (max-width: 768px){
    .icon-sociais{
        text-align: center;
    }
}

.icon-sociais a{
    text-decoration: none;
    color: #AAA;
}

.whatsapp:hover{
    color: #03C100;
    transition: .5s;
}

.facebook:hover{
    color: #1977F3;
    transition: .5s;
}

.instagram:hover{
    color: #DE2777;
    transition: .5s;
}

.icon-sociais svg{
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.icon-sociais svg:last-child{
    margin-right: 0;
}

/* Footer */

footer{
    font-size: 50%;
    color: #FFF;
    text-align: center;
    padding: 15px 0;
    background-color: #1977F3;
}

footer p{
    margin-bottom: 0;
    font-weight: 600;
}