/* Nossa Equipe */
.nossa {
    margin-top: 40px;
}

.nossa h4 {
    color: #3C8855;
    font-weight: 700;
    text-transform: uppercase;
}

.nossa p {
    padding-top: 10px;
    font-size: 13pt;
    color: #000000;
}

.border {
    width: 40px;
    height: 5px;
    background-image: linear-gradient(to right, #138137, #7dff7d, #3C8855);
}

/* Equipa */
.equipa {
    margin-top: -60px;
}

.usuarios {
    position: relative;
   height: 290px;
    border-radius: 20px;
    background-color: #fff;
     box-shadow: 0 2px 2px 2px #d6d9e2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 30px;
}

.user-img-wrap {
    position: relative;
    width: 117px;
    padding: 5px;
    margin-top: 30px;
}


.user-img img {
    width: 100%;
    border-radius: 50px;
}

.user-meta {
    text-align: center;
}

.user-name {
    font-size: 20px;
    font-size: 1em;
    font-weight: 500;
}

.user-location {
    font-size: .9em;
    font-weight: 500;
    color: #1d6821;
    margin-bottom: 1rem;
}

.user-profiles {
    margin-bottom: 30px;
    font-size: 1.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.user-profiles .fab {
    color: #0A66C2;
}

.user-profiles .far {
    color: #030303;
}








/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {


    /* Nossa Equipe */
    .nossa {
        margin-top: 40px;
    }

    .nossa h4 {
        color: #0a4522;
        font-weight: 700;
        font-size: 1.4em;
    }

    .nossa p {
        padding-top: 10px;
        font-size: 1em;
    }

    .border {
        width: 40px;
        height: 5px;
        background-image: linear-gradient(to right, #138137, #7dff7d, #3C8855);
    }

    /* Equipa */
    .equipa {
        margin-top: -50px;
    }

    .card {
        height: 290px;
        width: 300px;
        box-shadow: 0 3px 5px #2b2b2b;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        background-color: #222;
        margin: 30px auto;
    }

    .card .bg-image img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
        opacity: .9;
        margin-top: -30px;
    }

    .card .pic img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 5px solid #ffffff;
        margin-top: -90px;
        position: relative;
    }

    .card .info h3 {
        color: #000000;
        font-size: 1em;
        padding: 10px 0;
    }

    .card .info p {
        color: #1d6821;
        font-size: .9em;
        font-weight: 600;
        margin-top: -10px;
    }

    .card .icons {
        margin-top: -10px;
    }

    .card .info .icons a {
        color: #525252;
        font-size: 1.5em;
        padding: 0 5px;
        text-decoration: none;
    }


}