/******************************* Hero-page ************************************/
/*==== About-page ====*/
.background-container {
    position: relative;
    width: 100%;
    height: 55vh;
    top: -8vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    overflow: hidden;
}

.background-container img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 78%;
    filter: brightness(.5);
}

.page-area {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 60%;
    justify-content: space-between;
}

.page-data {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.aboutUs-title {
    color: var(--light-brown);
    font-size: 4rem;
    font-weight: 400;
    line-height: 3rem;
}

.page-text {
    color: var(--light-beige);
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 3px;
}

.page-email {
    color: var(--light-beige);
    z-index: 1;
    align-self: flex-end;
    margin-right: 20px;
    font-size: 1.2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    user-select: none;
}

/*==== QuemSomos-page ====*/
.aboutUs-data {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8vh;
}

.who-content {
    width: 70%;
}

.who-text {
    text-align: justify;
}

.who-title {
    margin-bottom: 30px;
}

/*==== Values-page ====*/
.our-values {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8vh;
}

.values-area {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.values-title {
    margin-bottom: 30px;
}

.values-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.values-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 48.5%;
}

.card {
    width: 49.5%;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    user-select: none;
    transition: .5s all;
}

.card:hover {
    transform: scale(1.02);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.card-text {
    opacity: 0.8;
}

/*==== Collaborators-page ====*/
.our-collaborators {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 8vh 0;
}

.collaborators-zone {
    width: 70%;
    display: flex;
    gap: 10%;
    flex-wrap: wrap;
    /* Permite ajuste em telas menores */
}

.collaborators-data,
.collaborators-content {
    flex: 1;
}

.collaborators-data {
    max-width: 40%;
}

.collaborators-title {
    line-height: 3.5rem;
}

.collaborators-text {
    margin-top: 40px;
    text-align: justify;
}

.collaborators-content {
    max-width: 50%;
}

.line-division {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    opacity: 0.3;
}

.collaborator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    position: relative;
    margin: 15px 0;
}

.collaborator-description {
    display: flex;
    align-items: center;
    gap: 15px;
}

.collaborator-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    transition: .3s all;
}

.collaborator-img:hover {
    transform: scale(1.05);
}

.collaborator-name {
    font-size: 1.2rem;
    font-weight: 400;
}

.collaborator-role {
    opacity: .8;
}

.linkedin-logo {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--black);
    background-color: var(--light-grey);
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}