@import url(https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

::-webkit-scrollbar {
    width: 14px;
}

.body_index::-webkit-scrollbar-thumb {
    background-color: #1b1c1e3e;
    border-radius: 10px;
    border: 3px solid #f5f9fa;
}

.body_index::-webkit-scrollbar-track {
    background-color: #f5f9fa;
}

.body_portifolio::-webkit-scrollbar-thumb {
    background-color: #1b1c1e3e;
    border-radius: 10px;
    border: 3px solid white;
}

.body_portifolio::-webkit-scrollbar-track {
    background-color: white;
}


::-webkit-scrollbar-thumb:hover {
    background-color: #29907F;
}

::-webkit-scrollbar-thumb:active {
    background-color: #29907F;
}

:root {
    --fonte-titulos: 'Lato', sans-serif;
    --fonte-resto: 'Baloo 2', sans-serif;
    --verde-principal: #29907F;
    --verde-claro: #73C382;
    --roxo: #512572;
    --amarelo: #FFF200;
}

html {
    scroll-behavior: smooth;
}

.no-scroll {
    overflow: hidden;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--fonte-resto);
}


h2 {
    font-family: var(--fonte-titulos);
    font-weight: 900;
}

button {
    padding: 5px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--fonte-resto);
}

/* NAVBAR //////////////////////////////////////////////////////////////////////////////////////////////*/


.nav_links a.ativa {
    color: var(--verde-claro);
    /* cor diferente para o link ativo */
}

/* Estilo apenas para a página .body_index */
.body_index nav {
    background-color: rgba(255, 255, 255, 0.713);
}

/* Estilo para o nav em todas as outras páginas (padrão) */
nav {
    background-color: rgba(255, 255, 255, 1);
    /* Fundo opaco por padrão */
    position: fixed;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.nav_container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    padding: 15px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    max-width: 30px;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(46%) sepia(80%) saturate(344%) hue-rotate(120deg) brightness(87%) contrast(92%);
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav_links a {
    text-decoration: none;
    color: black;
    padding: 0 8px;
    border-radius: 6px;
}

.nav_links a:hover {
    color: white;
    background-color: var(--verde-claro);
}

/*--------------------------------------------------------------------------*/
nav.scrolled-past-600 a.ativa {
    color: var(--amarelo);
    /* cor diferente para o link ativo */
}

nav.scrolled-past-600 {
    background-color: var(--verde-principal);
}

.scrolled-past-600 .nav_links a {
    color: white;
}

.scrolled-past-600 .logo {
    filter: brightness(0) invert(1);
}

.scrolled-past-600 .nav_links a:hover {
    color: black;
    background-color: white;
}

/*-------------------------------------------------------------------------------*/
.scrolled-past-600 .box .btn span {
    background: white;
}

.scrolled-past-600 .nav_links_mobile {
    border: 2px solid var(--verde-principal);
}

.scrolled-past-600 .nav_links_mobile a.ativa {
    color: var(--verde-claro);
    /* cor diferente para o link ativo */
}

.nav_links_mobile {
    border-radius: 6px;
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    flex-direction: column;
    gap: 10px;
    border: 2px solid var(--verde-claro);
    background-color: white;
    padding: 10px 10px;
    min-width: 150px;
}

.nav_links_mobile a.ativa {
    color: var(--verde-claro);
    /* cor diferente para o link ativo */
}

.nav_links_mobile a {
    text-decoration: none;
    color: black;
    padding: 0 8px;
    border-radius: 6px;
}

.nav_links_mobile a:hover {
    color: white;
    background-color: var(--verde-claro);
}


.box {
    width: 60px;
    height: 40px;
    display: none;
    margin-top: -5px;
}

.btn {
    width: 100%;
    cursor: pointer;
    transform: scale(.5);
    transform-origin: center right;
}

.btn span {
    display: block;
    width: 100%;
    border-radius: 5px;
    height: 8px;
    background: var(--verde-claro);
    transition: all .3s;
    position: relative;
}

.box span+span {
    margin-top: 14px;
}

.btn.active span:nth-child(1) {
    animation: ease .7s top forwards;
}

.btn.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}

.btn.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}

.btn.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}

.btn.active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}

.btn.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }

    50% {
        top: 22px;
        transform: rotate(0);
    }

    100% {
        top: 22px;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 22px;
        transform: rotate(45deg);
    }

    50% {
        top: 22px;
        transform: rotate(0deg);
    }

    100% {
        top: 0;
        transform: rotate(0deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }

    50% {
        bottom: 22px;
        transform: rotate(0);
    }

    100% {
        bottom: 22px;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 22px;
        transform: rotate(135deg);
    }

    50% {
        bottom: 22px;
        transform: rotate(0);
    }

    100% {
        bottom: 0;
        transform: rotate(0);
    }
}

@keyframes scaled {
    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 850px) {
    .nav_links {
        display: none;
    }

    .box {
        display: flex;

    }

    .nav_links_mobile.open {
        display: flex;
    }

    .btn {
        flex-direction: column;

    }
}

/* HEADER //////////////////////////////////////////////////////////////////////////////////////////////*/

.header_index {
    height: 600px;
}

.header_index img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(80%) saturate(344%) hue-rotate(120deg) brightness(87%) contrast(92%);
}

.fundodiferenciado {
    --s: 50px;
    --c: white;
    --_s: calc(2*var(--s)) calc(2*var(--s));
    --_g: 35.36% 35.36% at;
    --_c: #00000000 66%, #f5f9fa 68% 70%, #00000000 72%;
    background:
        radial-gradient(var(--_g) 100% 25%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 100% 25%, var(--_c)) 0 0/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) 0 0/var(--_s),
        repeating-conic-gradient(var(--c) 0 25%, #0000 0 50%) 0 0/var(--_s),
        radial-gradient(var(--_c)) 0 calc(var(--s)/2)/var(--s) var(--s) var(--c);
    background-attachment: fixed;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#typewriter::after {
    content: "|";
    margin-left: 5px;
    animation: blink-caret .5s step-end infinite alternate;
}

@keyframes blink-caret {

    from,
    to {
        color: transparent;
    }

    50% {
        color: black;
    }
}

.escrevendo {
    font-weight: 400;
    font-size: 20px;
    font-family: var(--fonte-resto);
    color: black;
    margin-top: 7px;
}

.nikkoinlogo {
    max-width: 500px;
    padding: 10px 50px;
}

.animacao {
    opacity: 0;
    /* Inicialmente invisível */
    transform: translateY(20px);
    /* Inicialmente deslocada para baixo */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    /* Animação suave */
}

.loaded {
    opacity: 1;
    /* Totalmente visível */
    transform: translateY(0);
    /* Volta à posição original */
}


.contatos {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contatos i {
    font-size: 20px;
    background-color: transparent;
    color: black;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all .2s ease-in-out;
    border: 2px solid var(--verde-claro);
}

.contatos i:hover {
    color: white;
    background-color: var(--verde-principal);
    border-radius: 0 6px 0 6px;
    border: 2px solid var(--verde-principal);
}



/* MAIN ///////////////////////////////////////////////////////////////////////////////////////////////////////*/
.body_index {
    background-color: #f5f9fa;
}

.main_index {
    border-top: 2px solid var(--verde-claro);
    max-width: 1000px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    background-color: white;
    margin-top: -20px;
    padding: 20px 40px;
}

.main_index p {
    text-align: justify;
    line-height: 1.5;
    text-indent: 10px;
    margin-top: 0;
}

.frase {
    font-size: 30px;
    font-family: var(--fonte-titulos);
    background: linear-gradient(90deg, var(--roxo), var(--verde-principal), var(--verde-claro));
    -webkit-background-clip: text;
    color: transparent;
    /* Faz o gradiente aparecer no texto */
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 30px 0;
    padding: 0 30px;
    margin-top: 40px;
}



.frase i {
    color: #c2d7dd;
    font-size: 20px;
    padding: 5px;
}

.frase i:first-of-type {
    vertical-align: super;
}

.frase i:nth-of-type(2) {
    vertical-align: baseline;
}


.citacao {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
}

.imagem-texto-sobre {
    margin-bottom: 40px;
}

.imagem-texto-sobre img {
    border-radius: 0 6px 0 6px;
    width: 280px;
    height: 100%;
    object-fit: cover;

}

.imagem-container {
    position: relative;
    width: 280px;
    height: 280px;
    float: right;
    margin-left: 20px;
}

.legenda {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    background-color: white;
    color: black;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    border-radius: 0 6px 0 6px;
}

.section_interesses h2 {
    text-align: center;
    margin-top: 0;
}

.section_interesses {
    margin-bottom: 50px;
}

.interesses {
    display: flex;
    gap: 20px;
    justify-content: center;
}



.interesses .img_container {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 15px;
    border-radius: 100%;
    background-color: #f5f9fa;
    box-sizing: border-box;
}

.interesses div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interesses img {
    width: 100px;
    height: 70px;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(46%) sepia(80%) saturate(344%) hue-rotate(120deg) brightness(87%) contrast(92%);
}

.interesses span {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}


/*confira meus trabalhos ---------------------------------------------------*/

.depoisdo_main {
    text-align: center;
    padding: 30px;
}

.depoisdo_main p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.work-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.work-item {
    padding: 10px;
    width: 290px;
    text-align: center;
    border: 2px solid white;
    border-radius: 6px;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease;
}

.work-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    /* Para garantir que o link envolva toda a div */
}

.work-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Define a proporção da imagem */
    object-fit: cover;
    border-radius: 0 6px 0 6px;

    /* Defina uma altura fixa para a imagem */
}

.work-item h3 {
    padding: 5px 0;
    font-size: 1.2rem;

    margin: 0;
}

.work-item:hover {
    transform: scale(1.05);
    border: 2px solid var(--verde-claro);
}


/* graficos ---------------------------------------------------------------------------------------------*/
.clearfix,
.clearfix:before,
.clearfix:after {
    display: block;
    content: " ";
    clear: both;
    zoom: 1;
}

.wrap {
    width: 100%;
    box-sizing: border-box;
}

/* Bar Graph Class */
.barGraph {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.graph {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 0;
}

.graph-barBack {
    border-radius: 6px;
    background: #f5f9fa;
    margin-bottom: 10px;
    display: block;
}

.graph-bar {
    background: linear-gradient(90deg, var(--roxo), var(--verde-principal), var(--verde-claro));

    border-radius: 6px;
    /* cursor: pointer;*/
    margin-bottom: 10px;
    position: relative;
    z-index: 9999;
    display: flex;
    width: 0%;

}


.graph-bar:last-child {
    margin-bottom: 0;
}

/*

.graph-bar:hover {
    background: var(--roxo);
}

.graph-bar:after {
    position: absolute;
    content: attr(data-value);
    display: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    color: black;
    height: 25px;
    padding: 0 10px;
    left: 100%;
    top: 0;
    align-content: center;
}*/

.graph-bar:hover:after {
    display: block;
}

.graph-legend {
    margin-left: 10px;
    color: white;
    white-space: nowrap;
}

.graph-legend i {
    font-size: 12px;
    margin-right: 3px;
}

.graficos {
    display: flex;
    gap: 10px;
    width: 100%;
}

.graficos div {
    width: 100%;
}

.graficos h2 i {
    font-size: 20px;
    color: var(--roxo);
}

/* FOOTER ///////////////////////////////////////////////////////////////////////////////////////////////////////*/

footer {
    margin: 80px 20px 0 20px;
    color: #8ea3a8;
    text-align: center;
}

.footer_container {
    border-top: 2px solid #c2d7dd;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;

}

footer p {
    margin: 0;
    margin-bottom: 30px;
    line-height: 1.3;

}

.loguinho {
    width: 11px;
    height: 11px;
    filter: invert(72%) sepia(16%) saturate(284%) hue-rotate(144deg) brightness(86%) contrast(88%);
}

/* 404 ERROR ///////////////////////////////////////////////////////////////////////////////////////////////////////*/


.fundodiferenciado_quatrozeroquatro {
    --s: 50px;
    --c: white;
    --_s: calc(2*var(--s)) calc(2*var(--s));
    --_g: 35.36% 35.36% at;
    --_c: #00000000 66%, #f5f9fa 68% 70%, #00000000 72%;
    background:
        radial-gradient(var(--_g) 100% 25%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 100% 25%, var(--_c)) 0 0/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) 0 0/var(--_s),
        repeating-conic-gradient(var(--c) 0 25%, #0000 0 50%) 0 0/var(--_s),
        radial-gradient(var(--_c)) 0 calc(var(--s)/2)/var(--s) var(--s) var(--c);
    background-attachment: fixed;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(80vh + 50px);
}

.fundodiferenciado_quatrozeroquatro h2 {
    margin-top: -50px;
    color: var(--verde-claro);
    background-color: white;
    padding: 5px 15px;
    border-radius: 6px;
}

.fundodiferenciado_quatrozeroquatro p {
    margin-top: 20px;

    color: black;
}

.quatrozeroquatro_er {
    font-family: var(--fonte-titulos);
    font-size: 50px;
    font-weight: 800;
    color: var(--roxo);
}

#countdown {
    font-weight: 800;
    color: #29907F;
}

/* INDEX MEDIA //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


@media (max-width: 850px) {
    .frase {
        padding: 0;
    }

    .work-grid {
        flex-direction: column;
        align-items: center;
    }

    .work-item {
        width: 100%;
    }

    .work-item img {
        aspect-ratio: 3 / 2;
        /* Define a proporção da imagem */

    }
}

@media (max-width: 700px) {

    .main_index {

        padding: 20px;
    }

    .imagem-texto-sobre {
        display: flex;
        flex-direction: column-reverse;
    }

    .imagem-container {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
        height: 350px;
    }

    .imagem-texto-sobre img {
        width: 100%;
        height: 100%;
    }

    .graficos {
        flex-direction: column;
    }

    .interesses {
        flex-wrap: wrap;
    }



}

@media (max-width: 620px) {


    .body_portifolio .button-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        flex-direction: column;
    }

}

/* PORTIFOLIO //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.body_portifolio {
    background-color: #f5f9fa;
}

.body_portifolio .header_portifolio {
    height: 300px;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f5f9fa;
    color: black;
    text-align: center;
    margin: 0 auto;
    border-radius: 0 0 6px 6px;
}

.body_portifolio .header_portifolio h1,
.header_portifolio p {
    z-index: 1;
    /* Garante que o texto fique acima da imagem */
}


.body_portifolio h1 {
    font-family: var(--fonte-titulos);
    font-weight: 800;
}

.body_portifolio .header_portifolio p {
    margin-top: -20px;
}

.body_portifolio .main_portifolio {
    z-index: 100;
    max-width: 1000px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    background-color: white;
}


.body_portifolio .button-container {
    display: flex;
    justify-content: center;
    z-index: 1;
    gap: 10px;
}

.body_portifolio .button:nth-child(2) {
    background-color: var(--verde-principal);
    border: 2px solid var(--verde-principal);

}

.body_portifolio .button {
    background-color: var(--verde-claro);
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid var(--verde-claro);
}

.body_portifolio .button:hover {
    color: black;
    border: 2px solid var(--verde-principal);
    background-color: transparent;
}

.body_portifolio .section {
    padding-top: 60px;
    /* Espaçamento para o conteúdo não ficar atrás do navbar */
}

.body_portifolio .section h2 {
    text-align: center;
    font-family: var(--fonte-titulos);
    cursor: pointer;
    position: relative;
}

/* Esconder os ícones inicialmente */
.body_portifolio h2 i {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--verde-claro);
    font-size: medium;
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -28px;
    margin-top: 8px;
}

/* Mostrar o ícone quando o h2 for hoverado */
.body_portifolio h2:hover i {
    opacity: 1;
}

/* Container de portfólio */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas de igual tamanho */
    gap: 10px;
    padding: 20px;

}

/* Estilo dos itens do portfólio */
.portfolio-item {
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}

/* Estilo das imagens */
.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 6px 0 6px;
    transition: transform 0.3s ease;
    transition: filter 0.3s ease;
    aspect-ratio: 4 / 3;
    /* Define a proporção da imagem */
}

.portfolio-image img {
    aspect-ratio: 4 / 3;
    /* Define a proporção da imagem */
}

.portfolio-item:hover .portfolio-image {
    filter: brightness(60%);
    transition: filter 0.3s ease;
}

/* Overlay estilos */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: none;
    justify-content: center;
    align-items: flex-start;
    color: black;
    z-index: 1000;
    overflow-y: auto;
}

.overlay-content {
    padding-top: 70px;
    padding-bottom: 50px;
    justify-content: baseline;
    max-width: 1000px;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.overlay-content p {
    text-align: justify;
}

.overlay-content img {
    border-radius: 6px;
}

.close-overlay {
    background-color: var(--verde-principal);
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    position: fixed;
    right: 20px;
    top: 20px;
    font-size: large;
}

/* Exibir overlay ao clicar */
.overlay.show {
    display: flex;
}

/* Responsividade para telas menores */
@media (max-width: 880px) {
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em telas médias */
    }
}

@media (max-width: 600px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        /* 1 coluna em telas pequenas */
    }

    html {
        -webkit-tap-highlight-color: transparent;
    }
}



/* coworking ----------------------------------------------------------------------------------------------------------------------*/

.coworking {
    padding-bottom: 70px;
}

.coworking a {
    color: #45B7E5;
    font-weight: 500;
}

.coworking h1 {

    text-align: center;
}

.coworking .img-principal {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coworking .img-principal img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.coworkingstyle {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 10px;
}

.coworkingstyle .div1 {
    grid-area: 1 / 1 / 3 / 2;
}

.coworkingstyle .div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.coworkingstyle .div3 {
    grid-area: 2 / 2 / 3 / 3;
}


.coworking p {
    margin-top: 6px;
    line-height: 1.3;
    font-size: large;
    text-indent: 20px;
}

/* Adicionando a propriedade background-size: cover às imagens */
.coworkingstyle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 600px) {
    .coworkingstyle {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Adicionando a propriedade background-size: cover às imagens */
    .coworkingstyle img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .coworkingstyle .div1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .coworkingstyle .div2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .coworkingstyle .div3 {
        grid-area: 3 / 1 / 4 / 2;
    }
}


/* super trunfo 2022 ----------------------------------------------------------------------------------------------------------------------*/

.trunfo {
    padding-bottom: 50px;
}

.trunfo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.trunfomeme {
    padding-bottom: 20px;
}

.trunfomeme h1 {

    background: #FFF5E1;
    border-radius: 6px;
    padding: 8px 10px;
    text-align: center;
}

.trunfomeme a {
    color: #C82D36;
    font-weight: 500;
}

/*calendario ---------------------------------------------------------------------------------------------------------------*/

.calendario img {
    height: auto;
    width: 100%;
    max-width: 960px;
    padding-bottom: 50px;
}

/*mapa ---------------------------------------------------------------------------------------------------------------*/

.mapa {
    padding-bottom: 50px;
}

.mapa img {
    height: auto;
    width: 100%;
    max-width: 960px;
}

.mapa .aics-wrapper {
    margin-top: 30px;
    max-width: 1000px;
    height: 100%;
}

/*eu ---------------------------------------------------------------------------------------------------------------*/

.eu img {
    height: auto;
    width: 100%;
    max-width: 960px;
    padding-bottom: 50px;
}

/*front end ----------------------------------------------------------------------------------------------------*/

.overlay-content iframe {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 400px;
    margin: auto;
}


/* ilusgração --------------------------------------------------------------------------------------------------------*/

.imgs-design img {
    height: auto;
    width: 100%;
    max-width: 960px;
}

.imgs-design img {
    margin-bottom: 50px;
}

/* SERVIÇOSS //////////////////////////////////////////////////////////////////////////////////////////*/

.pricing__table {
    display: flex;
    margin: 30px 30px 90px 30px;
}


@media (max-width: 640px) {
    .pricing__table {
        margin: 60px 15px;
    }
}

.pricing__table .pt__title {
    max-width: 25%;
    flex: 1;
}

@media (max-width: 991px) {
    .pricing__table .pt__title {
        max-width: 50%;
    }
}

.pricing__table .pt__title .pt__title__wrap {
    position: relative;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 0;
    font-size: 1.375rem;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 991px) {
    .pricing__table .pt__title .pt__title__wrap {
        font-size: 1.3rem;
    }
}

.pricing__table .pt__title .pt__title__wrap .pt__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    min-height: 70px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid rgba(73, 72, 74, 0.1);
    text-align: left;
    align-items: flex-start;
}

.pricing__table .pt__title .pt__title__wrap .pt__row:first-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .pricing__table .pt__title .pt__title__wrap .pt__row {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 640px) {
    .pricing__table .pt__title .pt__title__wrap .pt__row {
        padding-left: 0;
        padding-right: 15px;
        font-size: 14px;
    }
}

.pricing__table .pt__option {
    position: relative;
    flex: 1;
}

@media (max-width: 991px) {
    .pricing__table .pt__option {
        max-width: 50%;
    }
}

.pricing__table .pt__option .pt__option__mobile__nav {
    position: absolute;
    z-index: 1;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    display: none;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__mobile__nav {
        z-index: 2;
        top: 40px;
        display: flex;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        justify-content: space-between;
        width: 110%;
        margin-left: -5%;
    }
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--verde-principal);
    transition: 0.25s;
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn:hover {
    background-color: var(--verde-principal);
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn.swiper-button-disabled {
    background-color: #c0beb6;
    pointer-events: none;
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn svg {
    width: 16px;
    color: #faf7f2;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__slider {
        overflow: hidden;
    }
}

.pricing__table .pt__option .pt__option__item {
    flex: 1;
    width: auto;
    max-width: 33.3333%;
    margin-right: 0;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item {
        width: 100%;
        max-width: none;
        flex: none;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1em;
    overflow: hidden;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item {
        border: 2px solid #ddd;
        background-color: #fafafa;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item.recommend {
    background-color: #73c3823e;
    border: 2px solid var(--verde-claro);
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    padding: 24px 0 0 0;
    font-size: 1.375rem;
    line-height: 1.4;
    position: relative;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap {
        font-size: 1.3rem;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 1px solid rgba(73, 72, 74, 0.1);
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:first-child {
    border-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child {
    display: inline-flex;
    padding: 20px 15px;
    align-items: center;
    border-bottom: 0;
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child a {
    padding: 15px 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    background-color: var(--verde-principal);
    transition: 0.25s;
    width: calc(100% - 40px);
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child a:hover {
    background-color: #0057E6;
}

@media (max-width: 576px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row:last-child a {
        padding: 12px 20px;
    }
}

@media (max-width: 640px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row {
        font-size: 14px;
        font-weight: 400;
    }
}

.container_compra {
    margin-bottom: 20px;
}

.valor {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--fonte-titulos);
}