:root {
    --primary: #3DFECA;
    --secundary: #233E69;
    --light: #f5f5f5;
    --dark: #14141f;
}


.btn-sm-square{
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}


.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 30vh;
    background-color: rgb(230, 227, 227);
  }







/*=============== hero-header =========== */

.hero-header {

    background: linear-gradient(rgba(7, 7, 48, 0.7), rgba(5, 5, 22, 0.7)), url(/img/bg-hero.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;


}

/*=============== destinos =========== */

.destination img{
    transition: 0.5s;
}

.destination a:hover img{

    transform: scale(1.1);
}


/*=============== Fale conosco =========== */

.booking{
    background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



/*=============== footer section =========== */

.footer .btn.btn-social{
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;


}


.footer .btn.btn-social:hover{
    color: var(--primary);
}

.footer .btn.btn-link{
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;

}

.footer .btn.btn-link::before{
    position: relative;
    content: "\f105" ;
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover{
    letter-spacing: 1px ;
    box-shadow: none;
}

.footer .copyright{
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a{
    margin-right: 15px;
    padding-right: 15px;
    border-right:1px solid rgba(255, 255, 255, .1) ;

}

.footer .footer-menu a:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


   
    