.colorGeo {
    color: #BBC200;
}

.colorGeoStronger {
    color: #F6FF00;
}

.colorGeoLighter {
    color: #D0D800;
}

.colorBlue {
    color: #00457C;
}

.colorGray {
    color: #707070;
}

.p-6 {
    padding: 4rem;
}

.p-6-withoutTop {
    padding-bottom: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.p-6-withoutBottom {
    padding-top: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.p-6-left-right {
    padding-left: 4rem;
    padding-right: 4rem;
}

.mobileText {
    font-size: 0.85rem;
}

.backButton {
    padding-top: 50%;
}

.backButton i {
    display: block;
    font-size: 30px;
    opacity: 0.5;
}

.opacity {
    background: transparent linear-gradient(180deg, #000000 0%, #80808000 100%) 0 0 no-repeat padding-box;
}

hr {
    border-top: 2px solid;
    opacity: 1;
}

#infoAbout_mobile {
    position: relative;
}

#infoAbout_mobile .img-fade {
    position: relative;
    max-height: 80vh;
    min-height: 300px;
    height: 100%;
    max-width: 100vw;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    /* Ajuste os valores do polygon para cortar a imagem na diagonal */
}

.img-fade div, .img-fade img {
    position: absolute;
    top: 0;
    width: 100%;
}

.img-fade img {
    min-height: 562px;
}

.img-fade div {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100%;
    min-width: 100%;
}

.descArea, .techArea {
    position: absolute;
    z-index: 1;
    width: 80%;
}

.descArea {
    color: white;
    top: 0;
    left: 0;
}

.techArea {
    color: #707070;
    bottom: 0;
    right: 0;
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 60%;
}

.descArea h2 {
    color: #BBC200;
    display: inline-block;
    width: min-content;
}

.techArea span {
    color: #9C9C9C;
}

.techArea p {
    margin-bottom: 0 !important;
}

.techArea .btns {
    display: flex;
    flex-direction: column;
}

.techArea .btns button {
    align-self: end;
    color: #707070;
}

.techArea .btns button:not(.bt-outline) {
    display: flex;
    align-items: center;
}

.techArea .btns button img {
    margin-left: 5px;
}

.techArea .bt-outline {
    color: black;
    width: 140px;
    border: 1px solid black;
    background: transparent;
    border-radius: 24px;
}

p.regular {
    color: #00457C;
}

#destaques_mobile {
    background-color: #F8F8F8;
}

.swiper-slide--one {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/destaque1_geofisica.webp") no-repeat 50% 100% / cover;
}

.swiper-slide--two {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/destaque2_geofisica.webp") no-repeat 50% 100% / cover;
}

.swiper-slide--three {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/destaque3_geofisica.webp") no-repeat 050% 100% / cover;
}

#destaques_mobile .swiper {
    padding: 0 1.5rem;
}

.carousel-ctrl {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    position: relative;
    width: 100%;
    height: 50px;
}

.carousel-ctrl > .swiper-bt-next, .carousel-ctrl > .swiper-bt-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-ctrl > div > i {
    font-size: 2rem;
    color: #9E9E9E;
}

.carousel-ctrl > .swiper-bt-prev {
    left: 0;
    padding-left: 13vw;
}

.carousel-ctrl > .swiper-bt-next {
    right: 0;
    padding-right: 13vw;
}

.carousel-ctrl > .swiper-pagination {
    bottom: 0 !important;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.2;
    width: auto;
    color: #DADADA;
}

.carousel-ctrl > .swiper-pagination > .swiper-pagination-bullet {
    background: #DADADA;
    opacity: 1;
}

.carousel-ctrl > .swiper-pagination > .swiper-pagination-bullet-active {
    background: #00457C;
}

.carousel-ctrl .swiper-pagination--one {
    width: unset;
}

#activities_mobile {
    position: relative;
}

#activities_mobile hr {
    color: #BBC200;
}

#activities_mobile div {
    width: 65%;
    font-size: 0.8rem;
}

#activities_mobile div span {
    font-size: 1rem;
    color: #00457C;
}

#activities_mobile img {
    z-index: -1;
    min-width: 40%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

#research_mobile {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/fundo_linhaspesquisa_mobile.webp") no-repeat 0 100% / cover;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

#research_mobile h6 {
    justify-self: center;
    display: grid;
}

#research_mobile h6 hr {
    color: white;
    width: 45%;
    justify-self: center;
}

/* Estilos de animação de slide na div #research_mobile */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.fade-out {
    animation: fadeOut 0.5s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.5s forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s backwards;
}

.slide-out-right {
    animation: slideOutRight 0.5s backwards;
}

/*   FIM CONFIGURAÇÃO ANIMAÇÕES   */

#research_mobile div span:not(.mixed,.light) {
    margin: 0.6rem 0;
}

#research_mobile div {
    display: flex;
    flex-direction: column;
}

#research_mobile div span {
    display: flex;
    flex-direction: row;
}

#research_mobile div span i {
    margin-top: 0.3rem;
}

#research_mobile div.page1_research_lines i, #research_mobile div.page2_research_lines i {
    font-size: 1.3rem;
    margin-right: .5rem;
    color: #F6FF00;
}

#research_mobile .ctrl-div i, #aboutUs_mobile .ctrl-div i {
    text-decoration: none;
    font-size: 2.5rem;
    color: white;
    position: absolute;
    bottom: 0;
}

#research_mobile .ctrl-div i.prev--research, #aboutUs_mobile .ctrl-div i.prev--aboutUs {
    left: 0;
}

#research_mobile .ctrl-div i.next--research, #aboutUs_mobile .ctrl-div i.next--aboutUs {
    right: 0;
}

.education--one {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/fundo_geofisica_formacaoacademica_mobile.webp") no-repeat 50% 50% / cover;
}

.education--two {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/fundo_geofisica_producaocientifica_mobile.webp") no-repeat 50% 50% / cover;
}

#education_mobile .swiper {
    overflow: hidden;
    padding: 0 2.5rem;
}

#education_mobile .swiper-slide .info_grad {
    width: 100%;
    border: 0;
    position: absolute;
    color: white;
    left: 50%;
    transform: translateX(-50%);
}

#education_mobile .swiper-slide .info_grad aside {
    font-size: 1.5rem;
}

#education_mobile .swiper-slide button > a, #educationContent button a {
    text-decoration: none;
    color: white;
    margin: 2px;
    padding: 2px;
}

#education_mobile .swiper-slide .btn-areas, #educationContent .btn-areas {
    border: 0;
    display: inline;
    padding: 2px 8px 2px 8px;
    color: white;
    border-radius: 25px;
    font-size: 13px;
    background-color: #BBC200;
}

#education_mobile .info_grad h5 {
    margin-bottom: 0;
}

@media (max-width: 440px) {
    #aboutUs_mobile {
        min-height: 100vh;
    }
}

@media (min-width: 441px) {
    #aboutUs_mobile {
        min-height: 80vh;
    }
}

#aboutUs_mobile {
    background-color: #F2F2F2;
    overflow: hidden;
    position: relative;
}

#aboutUs_mobile .ctrl-div i {
    color: #707070;
}

#aboutUs_mobile .page2_aboutUs_mobile div {
    display: flex;
    flex-direction: column;
}

#aboutUs_mobile span {
    display: flex;
}

#aboutUs_mobile i {
    font-size: 1.3rem;
    margin-top: .1rem;
    margin-right: .5rem;
    color: #8C9100;
}

#partners_mobile .container .col-sm-12 {
    margin: 1.5rem 0;
}

@media (min-width: 1025px) {
    body {
        color: #fff;
    }
}

#imgContent {
    position: relative;
    /* The image used */
    background-image: url('../images/pagina_especializacoes_modelagemGeofisica/bginicio_geofisica.webp');

    /* Full height */
    height: 100vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    transition: opacity 0.3s ease;
}

#imgContent .title {
    font-size: 4em;
    margin: 0;
}

#imgContent .subtitle {
    font-size: 1.5em;
    margin: 0;
    color: white;
}

#imgContent .divider {
    width: 100%;
    max-width: 42.5em;
    border: 1px solid #BBC200;
    margin: 5px 0;
    opacity: 1;
}

.scroll-button {
    position: absolute;
    bottom: 20px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-button:hover {
    opacity: 0.7;
}

#infoContent {
    font-size: 1.25em;
}

#infoContent .text-coordinator {
    display: inline-block;
    font-size: 1em;
}

#infoContent .custom-hr-coordinator {
    width: 100%;
    margin: 0.5em 0;
    border: 0;
    border-top: 2px solid #BBC200;
}

#content-below-hr {
    font-size: 0.75em;
}

.buttonTeam {
    padding: 2px 8px 2px 8px;
    background-color: transparent;
    border: solid 1px rgba(43, 43, 43, 0.56);
    border-radius: 25px;
}

.buttonTeam a {
    text-decoration: none;
    color: #707070;
}

#highlightsContent, #educationContent {
    background-color: #EEEEEE;
}

.titleContent {
    display: inline-block;
    font-size: 1.6rem;
}

.custom-hr-titleSection {
    width: 100%;
    margin: 0.2em 0;
    border: 0;
    border-top: 2px solid;
}

.imgHighlights, .imgEducation {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animatable-card:hover .imgHighlights, .animatable-card:hover .imgEducation {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.animatable-card:hover .btn-overlay {
    background-color: #9F874E;
    color: white;
}

.imgHighlights, .imgEducation {
    width: 90%;
    border-radius: 25px;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #BBC200;
    border-color: #BBC200;
}

.btn-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(187 194 0 / 50%);
    color: white;
    border: 25px;
    cursor: pointer;
    font-size: 0.75vw;
    transition: background-color 0.3s, transform 0.3s;
    padding: 10px 20px;
}

.btn-overlay:hover {
    background-color: rgba(187, 194, 0, 0.8);
    transform: translateX(-50%) scale(1.05);
}

.contentCards {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1em;
    width: calc(100% - 90px);
}

.contentCards .title {
    font-size: 1.25em;
}

.contentCards .title-micro {
    font-size: 0.9em;
}

.custom-hr-contentCards {
    width: 50%;
    margin: 10px auto;
    border-top: 2px solid #BBC200;
    opacity: 1;
}

.custom-hr-micro-contentCards {
    width: 25%;
    margin: 10px auto;
    border-top: 2px solid #BBC200;
    opacity: 1;
}

#globeTextContent {
    margin-top: -60px;
    font-size: 1.5em;
}

#globeTextContent div, #globeTextContent {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#globeTextContent .title {
    font-size: 1.25em;
}

.modelingContent {
    display: inline-block;
    font-size: 1em;
}

.custom-hr-modelingContent {
    width: 100%;
    margin: 0.2em 0;
    border: 0;
    border-top: 1px solid #BBC200;
}

#research_desktop {
    background: url("../images/pagina_especializacoes_modelagemGeofisica/fundo_linhaspesquisa.webp") no-repeat 50% 100% / cover;
    padding-bottom: 5rem;
}

#research_desktop .col-6 {
    display: flex;
    flex-direction: column;
}

#research_desktop .col-6 span:not(.mixed, .light) {
    display: flex;
    flex-direction: row;
    font-size: 1.3rem;
    margin: 0.3rem 0;
}

#research_desktop .col-6 span i {
    color: #F6FF00;
    margin-right: .5rem;
    margin-top: .5rem;
}

#educationContent p.light {
    line-height: 1.1;
}

#aboutUsContent {
    background-color: #F2F2F2;
}

#aboutUsContent span i {
    color: #BBC200;
    margin-right: .5rem;
    font-size: 1.3rem;
}

#aboutUsContent .all-spans hr {
    border-top: 1px solid;
    color: #BBC200;
}

