:root {
    --primary: #508071;
    --secondary: #e4f1ed;
    --tertiary: #61bda8;
    --quartiary: #F2F2F2;
    --grey: #d9d9d9;
    --lightgrey: #f5f5f5;
    --mediumgrey: #3e3e3e;
    --darkgrey: #1f1f1f;
    --white: #fff;
    --black: #000;
    --font-sans: "Inter", sans-serif;
}

h1 {
    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

h2 {
    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

p {
    margin-top: 1rem;
    font-size: 0.8rem;
}

nav {
    height: 87px;
}

.nav-logo {
    height: 55px;
    width: auto;
}

.nav-mobile {
    position: relative;
}

.nav-spacer {
    height: 86px;
}

.location {
    position: relative;
    background-color: var(--quartiary);
    padding: 20px;
    font-size: 0.8rem;
    color: var(--primary);
    top: -15px;
}

.infograph ul {
    list-style: none;
}

.infograph ul li::before {
    content: "\2022";
    /* Inserts a Unicode bullet character */
    color: var(--primary);
    display: inline-block;
    width: 1em;
    margin-left: 0;
}


/* PEOPLE */

div.member {
    border: var(--grey) 1px solid;
    border-radius: 30px;
    padding: 15px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

div.member .photo img {
    border: var(--grey) 1px solid;
    border-radius: 150px;
    width: 100%;
}

div.member .photo {
    padding: 1vw;
}

.hidden-section {
    opacity: 0;
    display: none;
}


/* COLORED BOXES */

.colored-boxes h2 {
    color: unset;
}

.colored-boxes div {
    border-radius: 30px;
    padding: 30px;
    margin: 20px;
    text-align: left;
    /* color: white; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--grey);
    color: var(--primary);
}

.colored-boxes div:hover {
    background-color: var(--primary);
    color: var(--secondary) !important;
}

div.tall:hover {
    cursor: pointer;
}

div.tall div {
    display: flex;
    /* Alinha o conteúdo ao final da caixa */
    /* Mantido para alinhar o conteúdo, mas com direção de coluna */
    flex-direction: column;
    justify-content: flex-end;
}

.colored-boxes ul {
    list-style-type: disc;
}

.colored-boxes div:hover,
div.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* .colored-boxes .green h2,
.colored-boxes .green p {
    color: var(--secondary);
} */

div.tall {
    min-height: 400px;
}

@media only screen and (max-width: 575.98px) {
    /* Estilos personalizados para smartphones */
    div.colored-boxes {
        display: inline;
    }
}


/* CONTENT */

section.content_page ul {
    list-style: square;
    padding-left: 3rem;
}

section.content_page ul li::marker {
    color: var(--primary);
    font-size: 1.8rem;
}

section.content_page div.container figure img {
    border-bottom: 10px solid var(--primary);
    margin-bottom: 2rem;
}

section.content_page h1 {
    margin-bottom: 1.5rem;
}

section.content_page h2 {
    margin-bottom: 1.2rem;
    color: var(--mediumgrey);
}

div.socialshare span.facebook {
    background-color: #1773ef;
}

div.socialshare span.x {
    background-color: #000;
}

div.socialshare span.pinterest {
    background-color: #b7081b;
}

div.socialshare span.linkedin {
    background-color: #0063c2;
}

div.socialshare span.whatsapp {
    background-color: #0db941;
}


/* SERVICES */

div.services {
    padding: 10px;
}

div.service-icon {
    display: inline-block;
    background-color: var(--secondary);
    margin-right: 15px;
    margin-left: 15px;
    border-radius: 20px;
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60px 60px;
}

.service-icon-governance {
    background-image: url('../../assets/img/icons/talk.svg');
}

.service-icon-finance {
    background-image: url('../../assets/img/icons/finance.svg');
}

.service-icon-planning {
    background-image: url('../../assets/img/icons/task.svg');
}

@media only screen and (max-width: 575.98px) {
    /* Estilos personalizados para smartphones */
    div.services>div {
        margin-top: 2rem;
    }
}


/* ARTICLES */

div.article {
    border: var(--grey) 1px solid;
    border-radius: 30px;
    margin: 20px;
}

div.article img {
    border: var(--grey) 1px solid;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
}

div.article div {
    padding: 30px;
}

div.article .date {
    margin-top: 1rem;
    color: var(--grey);
}


/* VIDEOS */

div.video {
    border: var(--grey) 1px solid;
    border-radius: 30px;
    margin: 20px;
}

div.video img {
    border: var(--grey) 1px solid;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
}

div.video div {
    padding: 30px;
}

div.video .date {
    margin-top: 1rem;
    color: var(--grey);
}

div.video .thumb {
    width: 100%;
    min-height: 256px;
    background-position-x: center;
    background-position-y: center;
    display: grid;
    border-radius: 30px 30px 0 0;
    align-items: center;
    text-align: center;
}

div.video button {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px;
    width: 100px;
    border-radius: 15px;
    font-weight: bolder;
}

div.video button:hover {
    cursor: pointer;
    background-color: var(--tertiary);
}

div.video .thumb {
    width: 100%;
    min-height: 256px;
    background-position-x: center;
    background-position-y: center;
    display: block;
    border-radius: 30px 30px 0 0;
    text-align: center;
    align-content: center;
}

.remodal-overlay,
.remodal-wrapper {
    backface-visibility: hidden;
}

.remodal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup-video__video {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 70vh;
}

.popup-video__video div {
    text-align: end;
}

.popup-video__header {
    display: flex;
    justify-content: flex-end;
}

.remodal-close {
    background-color: var(--primary);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease-in-out;
}

.remodal-close:hover {
    color: var(--lightgrey);
    background-color: var(--darkgrey);
}

.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* FOOTER */

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

footer div.signature img {
    width: auto;
    height: 55px;
}

footer li {
    display: flex;
    align-items: center;
    line-height: 1rem;
    font-size: 0.9rem;
    align-items: start;
}

.footer-icon {
    display: inline-block;
    margin-right: 10px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 25px 25px;
}

div.footer-icons a {
    min-width: 32px;
}

.icon-phone {
    background-image: url('../../assets/img/icons/phone.svg');
}

.icon-mail {
    background-image: url('../../assets/img/icons/mail.svg');
}

.icon-web {
    background-image: url('../../assets/img/icons/globe.svg');
}

.icon-place {
    background-image: url('../../assets/img/icons/place.svg');
}

.atitude_signature {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--mediumgrey);
    padding: 10px;
}

.atitude_signature img {
    height: 50px;
    width: auto;
}


/* FOOTER-FORM */

section.footer-form {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%), url('../../assets/img/room.webp');
    background-position-x: center;
    background-position-y: 20%;
    background-repeat: no-repeat;
    color: var(--white);
}

section.footer-form button {
    background-color: var(--primary);
    color: var(--white);
}


/* Banners */

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary) !important;
}

div.head-banner>div {
    display: flex;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 15px 15px 0 15px;
    width: 100%;
}

div.head-banner-tall>div {
    height: 70vh;
    background-size: auto 100%;
}

div.head-banner-short>div {
    height: 55vh;
    background-size: cover;
}

div.head-banner>div h1 {
    color: var(--white);
    font-size: 3.2rem;
}

div.head-banner>div div:nth-child(1) {
    padding-left: 15%;
    padding-right: 10%;
    z-index: 9;
    align-self: center;
}

div.head-banner>div div>div div {
    width: 50%;
}

@media only screen and (max-width: 575.98px) {
    /* Estilos personalizados para smartphones */
    div.head-banner>div {
        max-height: 300px;
    }
    div.head-banner>div img {
        max-height: 300px;
    }
    div.head-banner>div h1 {
        font-size: 2rem;
        line-height: 2rem;
    }
    div.head-banner>div div:nth-child(1) {
        padding: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991.98px) {
    /* Estilos personalizados para tablets */
    div.head-banner>div div:nth-child(1) {
        padding: 0px 40px;
    }
}


/* BANNER ROOM */

section.head-banner-room {
    background-position-x: center;
    background-position-y: center;
    background-size: auto 125%;
    background-repeat: no-repeat;
    color: var(--white);
    /* height: 70vh; */
    min-height: 347px;
}


/* BANNER TEAM */

section.head-banner-team {
    background-image: linear-gradient(to bottom, rgba(80, 128, 113, .6) 0%, rgba(80, 128, 113, 0.7) 50%, rgba(80, 128, 113, .6) 100%), url('../../assets/img/room.webp');
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    /*  auto 125%; */
    background-repeat: no-repeat;
    color: var(--white);
    /* height: 70vh; */
    min-height: 347px;
}

section.head-banner-team>div h1 {
    color: var(--white);
    font-size: 3.2rem;
}

section.shead-banner-team>div div:nth-child(1) {
    padding-left: 15%;
    padding-right: 10%;
    z-index: 9999;
    align-self: center;
}

section.head-banner-team div div div {
    /* background-color: #0063c2; */
    z-index: 10;
}

@media only screen and (max-width: 575.98px) {
    /* Estilos personalizados para smartphones */
    section.head-banner-team {
        /* height: 62vh; */
    }
    section.head-banner-team>div h1 {
        font-size: 2rem;
        line-height: 2rem;
    }
    section.head-banner-team>div div:nth-child(1) {
        padding: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991.98px) {
    /* Estilos personalizados para tablets */
    section.head-banner-team {
        height: 62vh;
    }
    section.head-banner-team>div div:nth-child(1) {
        padding: 0px 40px;
    }
}


/* FOOTER-BANNER */

section.footer-banner>div {
    display: flex;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%), url('../../assets/img/room.webp');
    background-position-x: center;
    background-position-y: 20%;
    background-size: auto 250%;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 15px 15px 0 15px;
    height: 32vh;
    min-height: 280px;
    width: 100%;
}

section.footer-banner>div h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-top: 0;
}

section.footer-banner>div p {
    font-size: 0.9rem;
}

section.footer-banner>div div:nth-child(1) {
    padding-left: 15%;
    /* padding-right: 10%; */
    z-index: 9999;
    align-self: center;
}

section.footer-banner>div div {
    width: 50%;
}

@media only screen and (max-width: 575.98px) {
    /* Estilos personalizados para smartphones */
    section.footer-banner>div {
        display: block;
        height: auto;
        max-height: fit-content;
    }
    section.footer-banner>div div {
        width: initial;
    }
    section.footer-banner>div img {
        max-height: 200px;
    }
    section.footer-banner>div h1 {
        margin-bottom: 1.2rem;
        font-size: 2rem;
    }
    section.footer-banner>div div:nth-child(1) {
        padding: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991.98px) {
    /* Estilos personalizados para tablets */
    section.footer-banner>div div:nth-child(1) {
        padding: 0;
    }
    section.footer-banner>div div {
        align-self: end;
    }
    section.footer-banner>div img {
        max-height: 200px;
    }
    section.footer-banner>div h1 {
        font-size: 2rem;
    }
    section.footer-banner>div p {
        font-size: 0.9rem;
    }
    section.footer-banner>div {
        height: 26vh;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    section.footer-banner>div {
        height: 36vh;
    }
    section.footer-banner>div h1 {
        font-size: 2rem;
    }
    section.footer-banner>div p {
        font-size: 0.9rem;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1400px) {
    section.footer-banner>div {
        /* height: 42vh; */
    }
    section.footer-banner>div h1 {
        font-size: 2rem;
    }
    section.footer-banner>div p {
        font-size: 0.9rem;
    }
}