/* THEME */

:root {
    --card-width: 300px;
    --card-height: 250px;
    --bg-color-theme: #018e98;
    --color-theme: #018e98;
}

/* FONTS */
@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Light.ttf") format("truetype");
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Medium.ttf") format("truetype");
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
    font-weight: 800; /* ExtraBold */
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-ExtraLight.ttf") format("truetype");
    font-weight: 200; /* ExtraLight */
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

body,
html {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.text-theme-default {
    font-size: 2.2rem;
    font-weight: 400;
    color: #018e98;
}

.color-theme {
    color: #018e98 !important;
}

.fade-to-black {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0.5))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    font-weight: 200;
    margin-bottom: 3rem;
}

.three-lines {
    position: absolute;
    top: 0;
    left: 0;
}
.three-lines img {
    width: 80%;
}

.btn-theme {
    padding: 0.3rem 2rem;
    transition: all 0.25s;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bg-color-theme);
    --bs-btn-border-color: var(--bg-color-theme);
    border-radius: 0;
}

.btn-theme:hover {
    background-color: #105e64;
    color: #fff;
}

.btn-theme-secondary {
    padding: 0.3rem 2rem;
    transition: all 0.25s;
    --bs-btn-color: #fff;
    --bs-btn-bg: #b9b9b9;
    border-radius: 0;
}

.btn-theme-secondary:hover {
    background-color: #9e9e9e;
    color: #fff;
}

/* HEADER */
.navbar {
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 30px;
}

.navbar-nav .nav-item.logo {
    margin: 0 35px;
    text-align: center;
}

.navbar-nav .nav-item.logo img {
    max-width: 100%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 30 30'%3E%3Cpath stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 7h20M5 15h20M5 23h20'/%3E%3C/svg%3E");
}

.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #12c0cf;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.nav-link:hover::after {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav-link.active::after {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav-item.logo .nav-link::after {
    display: none;
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* HOME */

/* BANNER */

.abouVideo {
    height: 100vh;
}

.video-wrapper {
    margin-top: 10rem;
}

.bannerSection {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background-holder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-background-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    width: 100%;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #292929d6;
    opacity: 0.8;
    z-index: 1;
}

.video-background-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-empresas {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    margin-bottom: 2rem;
    color: #005159;
}

/* NO QUE ACREDITAMOS SECTION */
.aboutSection {
    padding: 60px 0;
}

.logo-about img {
    width: 65%;
}

.banner-text-down {
    margin-top: 45rem;
}

.banner2-text {
    font-weight: 600;
}

.fig-banner {
    z-index: 9;
    position: absolute;
    left: 0;
}

.banner-list {
    list-style: none;
    color: #000;
    font-weight: 600;
    margin-top: 5rem;
}

.banner-list li {
    margin-bottom: 1rem;
}

/* Estilos para a seção highlightCard */
.card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateX(55px);
    -ms-transform: translateX(55px);
    transform: translateX(55px);
}

.card-container .card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    margin-left: -110px;
}

.card-container .card .card-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    border: 0;
    width: var(--card-width);
    height: var(--card-height);
    background-repeat: no-repeat;
}

.card-container .card .card-img img {
    width: var(--card-width);
    height: var(--card-height);
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--card-width);
    height: var(--card-height);
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.card-overlay {
    position: absolute;
    color: #fff;
    height: 100%;
    right: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.card-overlay small {
    display: block;
    font-size: 0.875rem;
}

.card:hover .card-overlay {
    opacity: 1;
    pointer-events: auto;
}

.card-overlay {
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
}

/* PARCEIROS */
.logo-parceiros {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.6rem;
}

.logo-parceiros img {
    width: 80%;
}

footer {
    background-color: #0a052d;
}

.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    width: 30px;
    height: 30px;
    border: 1px SOLID #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.social-icons a:hover {
    background-color: #fff;
    color: #0a052d;
}

.copyright {
    font-size: 0.6rem !important;
}

.chat-ico {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #6aa941;
    color: white;
    padding: 15px;
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}

.chat-ico i {
    font-size: 24px;
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* QUEM SOMOS */
.team {
    background-color: #018e98;
}

.subtitle-card {
    text-align: center;
    padding-left: 6rem;
    opacity: 0.6;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.team .card:hover .subtitle-card {
    opacity: 1;
}

.team-members {
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    color: #fff;
    margin-top: 3rem;
    opacity: 1;
}

.team-member-infos-name {
    font-size: 1.3em;
    font-weight: 600;
    margin-right: 40px;
}

.team-member-infos-position {
    font-size: 1.2em;
    font-weight: normal;
}

.team-member-infos-description {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1em;
    line-height: 1.5;
}

.team-members {
    display: none;
}

.team-members:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 768px) {
    .team-member-infos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .team-member-infos-name {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .team-member-infos-description {
        text-align: justify;
    }
}

/* SECTION SLIDERS */
.section-slider-content {
    min-height: 100vh;
}

.fa-solid.fa-quote-left,
.fa-solid.fa-quote-right {
    font-size: 2rem;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.25rem;
    margin: 1.5rem 0;
}

.testimonial-author {
    text-align: center;
}

.section-content-projects .card-container {
    gap: 0;
}

.section-content-projects .card-container .card {
    margin-left: -125px;
}

.section-content-projects .card-container .card .card-overlay {
    right: 125px;
}

.section-content-projects .card-container .card .card-img {
    width: 500px;
    height: 420px;
}

.section-content-projects .card-container .card .card-img img {
    width: 500px;
    height: 420px;
}

/* Estilos básicos para o wrapper */
.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    cursor: -webkit-grab;
    cursor: grab; /* Cursor de mãozinha para arraste */
}

.slider-track:active {
    cursor: -webkit-grabbing;
    cursor: grabbing; /* Mão fechada ao arrastar */
}

.slider-content {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    user-select: none; /* Evita seleção de texto */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-content img {
    pointer-events: none; /* Desativa arrastar imagem com o mouse */
}

.slider-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

/* Para tornar responsivo */
@media (max-width: 768px) {
    .slider-content p {
        font-size: 1.2rem;
    }
}

/* MODAL GALERY */

.modal-content {
    padding: 1rem;
}

.card-overlay.modal-galery {
    opacity: 1;
}

.card:hover .mask-bog {
    opacity: 1;
}

/* Estilo para a imagem grande */
.large-image img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

/* Slider de Miniaturas */
#thumbnailsWrapper {
    overflow-x: auto;
    white-space: nowrap;
}

.thumbnail-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.thumbnail {
    width: 80px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
    transition: border 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #007bff;
    -webkit-filter: grayscale(75%);
    filter: grayscale(75%);
}

.image-thumbnails img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.close-custom {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M2 2l12 12M2 14L14 2' stroke='%23fff' stroke-width='2'/%3e%3c/svg%3e");
    --bs-btn-close-hover-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M2 2l12 12M2 14L14 2' stroke='%23fff' stroke-width='2'/%3e%3c/svg%3e");
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    background-color: var(--bg-color-theme);
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    opacity: 1;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
}

/* Limite de thumbnails visíveis baseado no tamanho da tela */
@media (min-width: 768px) {
    #thumbnailsWrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .large-image img {
        width: 100%;
    }

    .thumbnail {
        width: 60px;
    }
}

.galleryTitle {
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg-color-theme);
}

/* NOSSA SEDE */
.section-sede {
    background-color: var(--bg-color-theme);
}

.sede-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.sede-gallery img {
    flex: 0 0 calc(50% - 10px);
    width: 50%;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .sede-destaque img {
        height: 504px;
        width: 100%;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .sede-gallery img {
        flex: 0 0 calc(20% - 10px); /* 5 imagens por linha no mobile */
        margin-bottom: 10px;
    }
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* PORTFÓLIO */

.buttons-filter .btn {
    padding: 0.3rem 2rem;
    transition: all 0.25s;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bg-color-theme);
    --bs-btn-border-color: var(--bg-color-theme);
    border-radius: 0;
}

.buttons-filter .btn:hover {
    background-color: #105e64;
    color: #fff;
}

.destaques-segmentos {
    margin-top: 2rem;
}

.thumbs-segmentos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.slider-container-segmentos {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.slider-track-segmentos {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.thumbs-segmentos {
    display: flex;
}

.thumbs-segmentos a {
    flex: 0 0 calc(100% / 5);
    margin-right: 10px;
}

.slider-container-segmentos .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s;
}

.slider-container-segmentos .arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-container-segmentos .prev {
    left: 0;
}

.slider-container-segmentos .next {
    right: 0;
}

@media (max-width: 1024px) {
    .thumbs-segmentos a {
        flex: 0 0 calc(100% / 4);
    }
}

@media (max-width: 768px) {
    .thumbs-segmentos a {
        flex: 0 0 calc(100% / 3);
    }
}

.foto-destaque {
    position: relative;
    display: block;
}

.mask-overlay-destaque {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000063;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.informacoes-segmento {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.foto-destaque:hover .mask-overlay-destaque {
    opacity: 1;
}

.foto-destaque:hover .informacoes-segmento {
    opacity: 1;
}

.slider-theme-primary {
    margin-top: 1rem;
}

.projects-itens {
    position: relative;
}

.project-itens-infos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.projects-itens:hover .project-itens-infos {
    opacity: 1;
}

.projects-itens::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000063;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.projects-itens:hover::after {
    opacity: 1;
}

.sectionDetalheObra {
    background-color: #f7f7f7;
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* PORTFÓLIO DETALHE */

.sectionDetalheObra {
    margin-top: 3rem;
}

.list-details-project {
    margin-top: 1rem;
}

.list-details-project .list-group-item {
    border: 0;
    padding: 0.5rem 0;
    background-color: transparent;
}

.name-porject {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-theme);
    line-height: 1.85rem;
}

.status-project {
    font-size: 1.85rem;
    color: var(--color-theme);
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* GRUPO ALLGAYER */

.outrosServicos .section-title {
    color: var(--color-theme);
}

.content-logos {
    margin-bottom: 2rem;
}

.content-logos p {
    font-size: 1.25rem;
    margin: 2rem 0;
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* CONTATO */

.content-contact {
    margin: 2rem;
}

.content-contact a {
    font-weight: 600;
    font-size: 1.25rem;
}

.content-contact .social-icons a {
    color: #000;
    border: 1px SOLID #000;
}

.content-contact .social-icons a:hover {
    color: #fff;
    background-color: #000;
}

.copy-contact {
    font-size: 0.75rem !important;
}

.form-check-label {
    font-size: 0.7rem;
    color: #a4a4a4;
}

.btn-change-form {
    margin-bottom: 2rem;
}

/* //////////////////////////// */
/* //////////////////////////// */
/* //////////////////////////// */
/* RESPONSIVE */

@media (min-width: 992px) and (max-width: 1700px) {
    .section-content-projects .container {
        position: relative;
        background-color: #fff;
    }
}

.card-container-banner {
    transform: translateX(140px);
    margin-top: 3rem;
}

.card-container-banner .card {
    margin-left: -285px;
}

.card-container-banner .card .card-img {
    width: 600px;
    height: 600px;
}

.card-container-banner .card .card-img img {
    width: 600px;
    height: 600px;
}

.logo-card {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 200px;
}

.card-overlay h5 {
    font-size: 0.9rem;
}

.card-container-inc {
    transform: translateX(100px);
    margin-top: 3rem;
}

.card-container-inc .card {
    margin-left: -160px;
}

.card-container-inc .card .card-img {
    width: 540px;
    height: 400px;
}

.card-container-inc .card .card-img img {
    width: 540px;
    height: 400px;
}

.detail-section {
    margin-top: 4rem;
    transition: opacity 0.3s ease-in-out;
    min-height: 120vh;
}

.content-detail-inc {
    padding-top: 5rem;
}

.out-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    width: 15%;
    padding-left: 2rem;
}

.exit-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
}

.exit-detail a {
    text-decoration: none;
    color: #000;
}