@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --cor-primaria: #ff7a00; 
    --cor-secundaria: #6ab82e;
}

.mobile {display: none;}

.cards {
    display: flex;
    flex-wrap: wrap;
}

.bold {
    font-weight: 700 !important;
}

.item {
    display: flex;
    align-items: center;
}

.item p {
    font-size: 1.1rem;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor-primaria);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    padding: 20px;
}

.green {
    background-color: var(--cor-secundaria);
}

.btn {
    height: 60px;
    background-color: var(--cor-secundaria) !important;
    border: none !important;
}

.btn:hover {
    background-color: #579c23 !important;
}

.form-control {
   border-radius: 0 !important;
   height: 60px;
   border: none;
}

input {
    background-color: #e3e3e3 !important;
    color: #303030 !important;
}

textarea {
    background-color: #e3e3e3 !important;
    color: #303030 !important;
    height: 200px !important;
}

label {
    position: absolute;
    top: 0;
    left: 0;
}

.btn {
    border-radius: 0 !important;
}

.logos {
    background-color: var(--cor-primaria);
    color: white;
}

/* CARDS CORRETORES */

.contact {
    border: rgb(208, 208, 208) 1px solid;
    border-radius: 5px;
}

.picture {
    border-radius: 50%;
    width: 110px;
    height: 110px;
}

.img-um {
    background-image: url('../img/corretores/ademir.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.img-tres {
    background-image: url('../img/corretores/ismael.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.img-quatro {
    background-image: url('../img/corretores/ariel.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.img-cinco {
    background-image: url('../img/corretores/bruno.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h5 {
    font-size: 25px !important;
}

.p {
    font-size: 12px !important;
}

.w-icon {
    position: absolute;
    right: 0;
    margin-right: 50px;
    cursor: pointer;
}

#whats:hover {
    width: 60px;
    transition: 0.2s ease-in-out;
}

header {
    background-color: var(--cor-secundaria);
    color: white;
}


footer {
    background-color: var(--cor-secundaria);
    color: white;
}

@media screen and (max-width: 1024px) {
    .mobile {display: block;}
    .desktop {display: none;}
    
    .info_name {
        font-size: 30px !important;
    }
    
    .info-location{
        font-size: 9px !important;
        text-align: center;
    }

    #whats {
        width: 35px;
    }

    .picture {
        width: 70px;
        height: 70px;
    }

    .w-icon {
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .mobile {display: block;}
    .desktop {display: none;}

    #instagram {
        width: 28px;
    }

    #youtube {
        width: 32px;
    }

    #facebook {
        width:  30px;
    }

    .h2 {
        font-size: 30px !important;
    }

    footer b {
        font-size: 10px;
    }
}


@media screen and (max-width: 425px) {
    .mobile {display: block;}
    .desktop {display: none;}

    #instagram {
        margin: 10px;
    }

    #youtube {
        margin: 10px;
    }

    #facebook {
        margin: 10px;
    }

    #logo-gkm {
        width: 70px;
    }

    #slogan {
        font-size: 10px;
    }

    iframe {
        height: 300px;
    }
    
    footer b {
        font-size: 10px;
    }

    .item {
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .item p {
        margin-top: 20px;
    }

    .cube{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .h5 {
        justify-content: center !important;
        align-items: center;
        display: flex;
    }

    .w-icon {
        position: relative;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0;
    }

    #whats {
        width: 40px;
    }

    .picture {
        width: 90px;
        height: 90px;
    }
}


