@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap'); /* Semibold (600) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap'); /* Regular (400) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap'); /* Bold (700) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap'); /* Light (300) */

/* Exemplo de aplicação das diferentes variações de peso da fonte Poppins a seletores */
.font-semibold {
    font-family: 'Poppins', sans-serif; /* Use o nome da fonte definido na regra @import */
    font-weight: 600; /* Semibold */
}

.font-regular {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular */
}

.font-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold */
}

.font-light {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light */
}

.navbar {
    height: 132px;
}

.logo-topo{
    height: 68px;
}

.nav-link{
    color: #FFF;
    transition: 0.4s ease all;
    text-transform: uppercase;
    font-size: 16px;
}

.nav-link:hover{
    color: #ffae00;
}

footer {
    background-color: #000000;
    padding: 50px 0px;
}

.send-form {
    width: 100% !important;
    background-color: transparent;
    border: 2px solid #ffae01;
    padding: 15px;
    color: #FFF;
    text-transform: uppercase;
    border-radius: 10px;
    transition: 0.4s ease all;
    text-decoration: none;
    display: block;
    text-align: center;
}

.send-form:hover{
    background-color: #ffae00;
}

a.app_logo {
    display: block;
    margin-top: 10px;
}

h4.footer-tittle {
    font-size: 18px;
    text-transform: uppercase;
    color: #FFF;
}

p.footer-item {
    color: #FFF;
    margin-bottom: 4px;
    font-size: 16px;
}

p.footer-item a{
    color: #FFF;
    text-decoration: none;
    transition: 0.4s ease all;
}

p.footer-item a:hover{
    color: #ffae00;
}

div#footer-details {
    border-bottom: 2px solid #ffae01;
    padding-bottom: 29px;
}
.gray-border{
    border: 2px solid #a7bfd2;;
}

p.imobase-info {
    margin-top: 25px;
    color: #a7bfd2;
    font-size: 16px;
}

ul.social-links {
    margin-top: 30px;
    list-style: none;
    float: right;
}

li.social-link {
    float: left;
    margin-left: 20px;
}

li.social-link a {
    color: #a7c0d2;
    transition: 0.4s ease all;
}

li.social-link a:hover {
    color: #ffae01;
}

button.navbar-toggler {
    border: 2px solid #FFF;
    padding: 10px;
}

span.navbar-toggler-icon {
    background-color: #FFF;
}

#contato {
    background-image: url('../../images/site/bg_contato.png');
    background-size: cover;
    background-position: center top;
    height: 605px;
    overflow: hidden;
    margin-top: -61px;
}


.input-form{
    background-color: transparent;
    width: 100%;
    border: 2px solid #FFF;
    height: 40px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #FFF;
}

.sites-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 200;
    margin-top: 30px;
}


.subtittle {
    font-size: 40px;
    color: #FFF;
}

.orange-bold{
    color: #ffae00;
}

.active{
    color: #ffae00 !important;
}

#topo{
    height: 675px;
    background-image: url('../../images/site/banner_secundario.png');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    margin-top: -132px;
}

div#topo-container {
    padding-top: 212px;
}
.custom-container {
    padding-left: 60px;
    padding-right: 60px;
}


#robbu-whatsapp-button {
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-div{
    position:fixed;
    bottom:80px;
    right:40px;
    text-align:center;
    font-size:30px;
    z-index:1000;
}

.whatsapp-icon{
    width: 60px;
    height: 60px;
    background-color:#25d366;
    color:#FFF;
    border: 2px solid #FFF;
    box-shadow: 1px 1px 2px #888;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-whatsapp.font-bold {
    background-color: #27d366;
    padding: 5px 17px;
    border: 2px solid #FFF;
    border-radius: 16px;
    position: relative;
    right: -13px;
    z-index: -1 !important;
    box-shadow: 1px 1px 2px #888;
}

.whatsapp-icon i{
    font-size: 30px;
}

@media (max-width: 576px) {
    div#navbarNav {
        background-color: #FFF;
        border-radius: 10px;
    }
    a.nav-link {
        color: #000;
        width: 100%;
        text-align: center;
        transition: 0.4s ease all;
    }

    .nav-link:hover{
        color: #2f55d4;
    }

    #contato{
        height: 780px;
    }
}

a.app_logo img {
    width: 148px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 80%;
    background: #00014df5;
    color: white;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    z-index: 99999 !important;
    margin-left: 10%;
    border-radius: 10px;
    transition: 0.5s ease all;
}

.cookie-banner a {
    color: #ffae01;
    text-decoration: none;
    font-weight: bold;
}
.cookie-banner button {
    background: #ffae01;
    color: #FFF;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    width: 10%;
    text-transform: uppercase;
}

.cookie-banner p{
   margin-bottom: 0px; 
}