html {}



p {
    font-family: "Barlow", sans-serif;
}

h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

h2,
h3 {
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
}

.single .post h1 {
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
}

.single #header, .page #header {
    background: #000;
}

#red, .red{
    color: #950000;
}

.red-destaque{
    background: #950000;
    color: #fff;
    padding: 0px 10px;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  

#header {
    margin-bottom: 35px;
    border-right: inset 0.4rem #950000;
    position: absolute;
    width: 100%;
    z-index: 999;
}

#header .logo {
    height: 70px;
    padding: 10px 0;
    /*margin-top: calc(var(--bs-gutter-x)* .5);*/
}

#desktop-menu-hover .logo {
    padding: 0;
}

#header .row {
    display: flex;
    justify-content: space-between;
}

#desktop-menu-hover {
    position: fixed;
    width: 100%;
    background: #292929;
    top: -100%;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
    /* Animação suave para mostrar o menu */
    left: 0;
    display: flex;
    justify-content: space-between;
}

#desktop-menu-hover img {
    max-height: 35px;
    margin: 5px 0;
}

#footer {
    position: absolute;
    bottom: 0;
}

.col-lg-2 {
    background: #ddd;
    height: 100%;
}

div[id] {
    transition: margin-top 0.6s ease;
}

#back-to-top {
    display: none;
    /* Inicialmente escondido */
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 100;
    background-color: #950000;
    color: white;
    border: none;
    padding: 7px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Mostrar o botão quando ele deve estar visível */
#back-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    align-items: center;
}

#back-to-top span {
    font-family: 'Teko';
}

#header .menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
    margin: 0;
    height: 100%;
}


#header .menu li {
    font-weight: 500;
    list-style: none;
    height: 100%;
}

#header .menu li a {
    text-decoration: none;
    color: #dddddd;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 35px;
}

#header .menu li a:hover {
    background: #950000;
    transition: 0.3s ease-in-out;
}

/*menus*/
.hamburger {
    cursor: pointer;
    display: none;
    /* Ocultar por padrão */
    flex-direction: column;
    justify-content: center;
}

.hamburger i {
    color: #fff;
    font-size: 2.5rem;
    margin: 10px 5px 0 0px;
}

.hamburger.active i::before {
    content: '\f00d';
    /* Código Unicode para o ícone de "X" do Font Awesome */
    transition: 0.3s;
}

.desktop-menu {
    display: block;
    height: 100%;
    /* Mostrar menu desktop por padrão */
}

.mobile-menu {
    display: none;
    /* Ocultar menu mobile por padrão */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: flex-end !important;
}

.mobile-menu ul li {
    margin: 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 6px;
    font-size: 1rem;
    background: #000000;
    margin: 0 3px;
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-menu.active {
    display: block;
    /* Mostrar menu mobile quando ativo */
    transition: 0.3s;
}


#loop .col-lg-12 {
    display: flex;
}

.bloco {
    padding: 1px;
    overflow: hidden;
}

.thumb-title {
    display: none;
    position: absolute;
    color: #fff;
    z-index: 1;
    padding: 10px;
    text-align: right;
    border: solid 2px white;
    width: 90%;
    height: 90%;
    pointer-events: none;
}

.thumb-title h3 {
    pointer-events: none;
    font-size: 1.2rem;
    margin: 0;
}

.thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 0.3s;
    transform-style: preserve-3d;

}

.thumbnail:hover img {
    opacity: 0.3;
    transition: 0.3s;
    filter: grayscale(1) contrast(0.5);
}

.thumbnail:hover a {
    background-color: #950000;
}

.thumbnail:hover .thumb-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.post-categories i {
    margin-right: 5px;
    color: #fff;
    /* Personalize a cor conforme desejado */
}

.category-list {
    display: flex;
    list-style: none;
    padding: 0;
    width: 100%;
    justify-content: space-around;
    font-family: teko;
    font-size: 25px;
    margin-top: 80px;
}

.category-list li {
    padding: 5px 0;
    color: #fff;
    transition: 0.3s;
}

.btn-contato {
    display: none;
}

.category-list li:hover, .category-list li:focus {
    color: #950000;
    cursor: pointer;
    transition: 0.3s;
}

.category-list li a:hover {}

.category-list li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
}

#loop {
    display: flex;
    padding-bottom: 40px;
}

.thumb-hover {
    width: 100%;
    height: 200%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 50%);
    position: absolute;
    transition: 0.3s;
}

.thumb-hover:hover {
    transform: translateY(-50%);
    transition: 0.3s;
}

.thumb-hover .section {
    height: 50%;

}

.thumb-hover .section h2 {
    color: white;
    padding-top: calc(50% - 0.5rem);
    padding-left: 15px;
}

.thumb-hover .section-1,
.thumb-hover .section-1 {}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#banner {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #292929;
    z-index: 1;
}

#banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(19, 19, 19);
    background: linear-gradient(-5deg, rgb(0 0 0) 0%, rgb(131 131 131) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out, opacity 0.8s ease-in-out;
    opacity: 0.7;
    z-index: -1;
    /* Certifique-se de que o fundo fique atrás do conteúdo */
}

.banner-page{
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(-5deg, rgb(0 0 0) 0%, rgb(50 50 50) 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-height: 650px;
    overflow: hidden;
    color:#858585;
}

.imagem-marketing img{
    margin-left: -5rem;
height: 100%;
position: absolute;
}

.banner-page .cta {
    align-items: flex-start;
}

.banner-page .esq{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem;
}

.banner-page .dir{
    display:flex;
    justify-content: flex-start;
}

.frase-page h2{
    font-size: 2.5rem;
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    text-align: left;

}

.frase-page p{
    font-size: 1.2rem;
    text-align: left;
}

.marketing-services{
    color: #262626;
    background: #efefef;
}

.marketing-services .esq{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.marketing-services .dir {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-services img{
    max-height: 500px;
    margin: 35px 0;
}

.lista li::marker {
    content: "+";
    color: #950000;
    font-weight: 800;
}

.carrossel-posts{
    background: #000;
    overflow: hidden;
}

.carrossel-posts h2{
    color: #fff;
    margin: 64px 0;
}

.carrossel-container {
    width: 11224px;
    animation: scroll-right 150s linear infinite;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.ngg-gallery-thumbnail a{
    margin: 0;
}

.ngg-galleryoverview.default-view .ngg-gallery-thumbnail a {
    pointer-events: none;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.lista{
    display: flex;
    flex-direction: column;
}

.lista h3{
    margin-left: -1rem;
    color: #950000;
}

.lista li {
    padding: 10px 15px 10px 15px;
    font-weight: 400;
    font-size: 2rem;
}

.dust {
    display: none;
    background-image: url(/wp-content/themes/naki/img/splashing-color-powder.png);
    width: 100%;
    height: 100%;
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    flex-direction: column;

}

.centro {
    height: 55vh;
    width: 60vw;
    z-index: 1;

}

@media (max-width: 1920px) {
    .centro {
        height: 55vh;
    }
}

/* Para telas maiores que 1920 pixels */
@media (min-width: 1921px) {
    .centro {
        height: 70vh;
    }
}

.postagem {
    height: 45vh;
    position: absolute;
    transition: transform 0.3s, z-index 0.3s;
    opacity: 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2 / 3 !important;
    top: calc(50vh - 22vh);
    left: calc(50vw - 10vw);
}

.postagem a {
    width: 100%;
    height: 100%;
    display: block;
}

.postagens-container {
    display: flex;

}

.postagem:hover {
    filter: blur(0px) !important;
    transition: 0.3s;
    opacity: 0.8 !important;
}

.postagem img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.postagem-1 {
    scale: 1;
    margin: -5vh 0 0 -30vw;

}

.postagem-2 {
    margin: -16vh 0 0 37vw;

    scale: 0.9;
}

.postagem-3 {
    margin: 25vh 0 0 -15vw;

    scale: 0.8;
}

.postagem-4 {
    margin: 25vh 0 0 32vw;

    scale: 0.7;
}

.postagem-5 {
    margin: -25vh 0 0 22vw;
    scale: 0.6;
}

.postagem-6 {
    margin: -32vh 0 0 10vw;
    scale: 0.5;
}

.postagem-7 {
    margin: 29vh 0 0 -26vw;
    scale: 0.4;
}

.fade-in {
    animation: fadeInTranslate 1s forwards;

}

@keyframes fadeInTranslate {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInTranslate 0.7s forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.9s;
}

.fade-in:nth-child(5) {
    animation-delay: 1.2s;
}

.fade-in:nth-child(6) {
    animation-delay: 1.5s;
}



.frase {
    background: url(/wp-content/themes/naki/img/comunicacao-com-excelencia.webp) center center no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
    opacity: 0.8;
}

#portfolio {
    background: #292929;
    width: 100%;
    z-index: 2;
    min-height: 100vh;
}

#portfolio h2 {
    color: #fff;
    margin: 44px 0 0 0;
    text-align: center;
}

#sobre h2 {
    color: #666;
    text-align: center;
    margin: 0 0 10px 0;
}

#sobre {
    background: #fff;
    width: 100%;
    color: #858585;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.sobre-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
}

#sobre .service-list {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Teko';
}

#sobre .service {
    padding: 24px;
    margin: 5px;
    border-radius: 50px;
    border: solid 1px #ddd;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}

.service i {
    font-size: 1.2rem;
    margin-right: 15px;
}

#sobre .service .col-auto {
    font-weight: 600;
    display: flex;
    align-items: center;
}

#sobre .service:nth-child(2n+1) {
    margin-left: -5px;
}

#sobre .service:nth-child(2n) {
    margin-right: -5px;
}

.service-design {}

.service-design .col-auto {
    color: #545454
}

.service-site {}

.service-site .col-auto {
    color: #545454;
}

.service-midias {}

.service-midias .col-auto {
    color: #545454;
}

.service-social {}

.service-social .col-auto {
    color: #545454;
}


#contato {
    width: 100%;
    background: #000000;
    color: #858585;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

#contato .formulario {
    margin: 0 !important;
}

#contato .formulario input,
#contato .formulario textarea {
    background-color: transparent !important;
    border-bottom: inset 1px #fff !important;
    color: #fff !important;
}

#contato .formulario input::placeholder,
#contato .formulario textarea::placeholder {
    color: #ffff;
}

button#wpforms-submit-121 {
    background: #950000;
}

button#wpforms-submit-121:active,
button#wpforms-submit-121:hover {
    background: #5b0000 !important;
}

#contato .coluna-esq {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contato .custom-logo-link img {
    max-height: 60px;
}

#contato .site-info-icons{
    justify-content: flex-start;
}

#contato .social-circle{
    margin: 15px 15px 15px 0;
}

.formulario .wpforms-field-textarea .wpforms-field-large {
    height: 85px !important;
}

footer {
    background: #000;
    color: #fff;
    padding: 15px;
    text-align: center;
}

#post {
    padding: 70px 0;
}

.post {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.post.hidden {
    opacity: 0;
}

figure.wp-block-gallery.has-nested-images{
    gap: 0.1rem;
}

figure.wp-block-image.size-full {
    margin: 0;
}


.entry-header {
}

.single .post {
    padding: 150px 0;
}

.cta {
    /*position: absolute;
    top: calc(50vh + 30vh);*/
    display: flex;
    color: #fff;
    font-size: 1.7rem;
    font-family: 'Teko';
    font-stretch: extra-expanded;
    flex-direction: column;
    align-items: center;
    letter-spacing: 1px;
    text-align: center;
}

#contato .container .row .col {
    flex-direction: column;
    display: flex;
}

#contato .container .row .col a {
    text-decoration: none;
    color: #858585;
    transition: 0.3s;
}

#contato .container .row .col a:hover {
    color: #fff;
    transition: 0.3s;
}

.cta a {
    padding: 5px 20px;
    font-size: 1.7rem;
    line-height: normal;
    border: solid 2px #950000;
}

.cta a:hover {
    background: #950000;
    border: solid 2px #950000;
    color: white;
}

.side-info {
    display: none;
}

.services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 150px 0;
}

.services-list img {
    height: 96px;
}

.services-list .col-auto {
    margin: 0 25px;
    display: flex;
    align-items: center;
}

.services-list h4,
.services-list ul {
    margin: 0;
    padding: 0;
    font-family: 'Teko';
}

.services-list ul li {
    list-style: none;
    font-family: 'Barlow';
}

.services-list i {
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    border-radius: 15px;
}

.services-list .right .list ul {
    border-left: inset 2px red;
    padding-left: 10px;
}

.services-list .left .list ul {
    border-right: inset 2px red;
    padding-right: 10px;
}

.services-list .title {
    height: 116px;
    display: flex;
    align-items: center;
    color: #950000;
}

.services-list .list {
    margin-bottom: -150px;
    margin-top: -40px;
}

.services-list .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    width: 250px;
}

.services-list .left {
    align-items: flex-end;
    text-align: right;

}

.services-list .right {
    align-items: flex-start;
    text-align: left;
}

.session {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.divisoria {
    background: #292929;
    width: 5px;
    min-height: 200px;
    padding: 0;
    border-radius: 15px;
}

.site-footer{
    display:flex;
    flex-direction: column;
}

.site-info-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.site-info-icons a {
    color: #fff;
}

.social-circle {
    margin: 15px;
    padding: 5px 10px;
    border: solid 2px #950000;
    border-radius: 30px;
    transition: 0.4s;
    cursor: pointer;
}

.social-circle i {
    font-size: 18px;
}

.social-circle:hover{
    background: #950000;
    transition: 0.4s;
}

#contato .indicates-required {
    display: none;
}

#contato label {
    display: none;
}

#contato .helper_text {
    display: none;
}

#contato input, #contato textarea {
    background-color: transparent !important;
    border-bottom: inset 1px #fff !important;
    color: #fff !important;
    width: 100%;
    border:none;
}

#contato .mc-field-group {
    border: none;
    padding: 15px 0;
    position: relative;
}

.content__gdpr {
    display: flex;
    flex-direction: column;
}

#contato .content__gdpr p {
    font-size: small;
}

#contato .content__gdprLegal {
    font-size: x-small;
}

label.checkbox.subfield {
    display: block !important;
    width: auto;
}

input#gdpr_4602 {
    border: solid 2px #fff;
    width: auto;
    margin-right: 5px;
}

input#mc-embedded-subscribe {
    border: none !important;
    background: #950000 !important;
    float: left;
    width: auto;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    content: "Enviar" !important;
}

@media (max-width: 768px) {

    html,
    body {}

    #page {
        display: flex;
        flex-direction: column;
    }

    #back-to-top {
        right: calc(100% - 112px) !important;
    }

    #back-to-top.show {
        display: none;
    }

    div#ht-ctc-chat {
        left: calc(100% - 74px) !important;
    }

    #primary {
        flex: 1;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
    }

    #contato .col-auto {
        padding: 25px 0;
    }

    #banner,
    #sobre,
    #portfolio,
    #contato {
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #contato {
        position: fixed;
        left: -100vw;
        top: 0;
        width: 100vw;
        /* Largura desejada do contato */
        min-height: 100vh;
        transition: left 0.5s ease;
        /* Transição suave */
        z-index: 1000;
        /* Certifique-se de que esteja acima de outros conteúdos */
        padding: 15px;
        scroll-snap-align: end;
    }

    button#wpforms-submit-121 {
        margin-bottom: 60px;
    }

    .banner-page{
        max-height: none;
    }

    .banner-page .dir{
        justify-content: center;
    }

    .banner-page .row{
        flex-direction: column-reverse;
    }

    .imagem-marketing img {
        margin-left: 0;
        height: auto;
        width: 250%;
        position: relative;
    }

    .banner-page .esq{
        padding: 2rem;
    }

    .banner-page .cta{
        align-items: center;
    }

.marketing-services .lista{
    padding: 40px;
}

.marketing-services img{
    width: 100%;
}

    #toggle-contato {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        /* Certifique-se de que o botão esteja acima do #contato */
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        border: none;
        cursor: pointer;
    }

    #header {
        padding: 0;
        background: #000;
        position: fixed;
    }

    #header .logo {
        margin: 10px;
        width: 40px;
        height: auto;
    }

    #header .menu {
        flex-direction: row;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-end;
        height: 100%;
    }

    #header .menu li a{
        padding: 0 9px;
        margin: 0;
    }

    #header .menu li a:hover {
        border-bottom: none;
    }

    #header .menu li a:active {
        background: #950000;
    }

    #header .menu li a:focus {
        background: #950000;
    }



    #header .col-auto {
        padding: 0;
    }

    #header .menu-container {
        display: flex;
        flex-direction: row-reverse;
        padding: 0;
    }

    #header .menu li {
        padding: 0;
        height: 100%;
    }

    footer {
        background: #000;
        color: #fff;
        padding: 15px;
        text-align: center;
        font-size: 0.8rem;
        width: 100%;
    }

    #portfolio h2 {}

    figure.wp-block-gallery.has-nested-images {
        
    }

    .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){
        width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px) / 2);
    }


    #header .menu li {}

    .desktop-menu {
        display: none;
        /* Ocultar menu desktop em dispositivos móveis */
    }

    .mobile-menu {
        display: flex;
        align-items: center;
    }

    .mobile-menu.active {
        display: block;
        /* Mostrar menu mobile quando ativo */
        transition: 0.3s;
    }

    .cta {
        top: 0;
        margin-left: 0;
        margin: 0 15px;
        display: flex;
        align-items: stretch;
        text-align: center;
    }

    .postagem {
        top: 0;
        left: 0;
        scale: unset;
        height: 50vh;
        width: 33vw;
        position: relative;
        opacity: 0.04 !important;
    }

    .postagem-1,
    .postagem-2,
    .postagem-3,
    .postagem-4,
    .postagem-5,
    .postagem-6 {
        scale: unset;
        margin: 0;
        pointer-events: none;
    }

    .postagem-7 {
        display: none;
    }

    .postagens-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: absolute;
        z-index: -999;
    }

    .centro {
        width: 100%;
    }

    .cta {
        position: relative;
        margin: 0 45px;
    }

    .category-list {
        flex-direction: row;
        padding: 1rem;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .sobre-container {
        padding: 15px;
    }

    #sobre .service {
        width: 100%;
    }

    .w-50 {
        width: 100% !important;
    }

    .sobre-container .container .row {
        flex-direction: column-reverse;
    }

    #sobre .service:nth-child(2n+1),
    #sobre .service:nth-child(2n) {
        margin-left: 0px;
        margin-right: 0px;
    }


    #portfolio {
        overflow-x: hidden;
        /* Evita rolagem horizontal */
        flex-direction: column;
    }



    /*#portfolio .row {
        display: flex;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        height: 100vh;
      }
      
      #portfolio .col-lg-3, #portfolio .col-md-4, #portfolio .col-sm-12 {
        height: 100vh;
        overflow-x: hidden;
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
      }*/

    #portfolio .thumbnail {
        width: 100%;
        /* Ocupa a largura total do contêiner */
        height: auto;
        /* Ajusta a altura conforme a largura */
    }

    #portfolio .col-lg-3 img,
    #portfolio .col-md-4 img,
    #portfolio .col-sm-12 img {
        max-width: 100%;
    }

    .thumbnail img {
        object-fit: cover;
    }


    .btn-contato {
        position: absolute;
        left: 100vw;
        top: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Teko';
        font-size: 1.8rem;
        border: none;
        background: #950000;
        color: white;
        padding: 10px 0;
        line-height: initial;
        z-index: 99;
    }

    .btn-contato i {
        padding: 10px 0 0 0;
    }

    .btn-contato i::before {}

    .btn-contato span {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
    }

    .single .post p {
        padding: 0px 20px 40px 20px;
    }

    .services-list {
        padding: 0;
        flex-direction: column !important;
    }

    .services-list h4 {
        font-size: 2.5rem;
    }

    .services-list .col {
        width: auto;
        flex-direction: column !important;
    }

    .services-list .col-auto {
        margin: 0;
    }

    .services-list .list {
        margin-bottom: 0px;
        margin-top: 0px;
        width: 100%;
    }

    .services-list .left .list ul,
    .services-list .right .list ul {
        border-left: none;
        border-right: none;
        padding: 0;
    }

    .services-list ul li {
        padding: 0;
    }



    .services-list .title {
        height: auto;
        margin: 10px 0 0 0;
        width: 100%;
        justify-content: center;
    }

    .none {
        display: none !important;
    }

    .session {
        padding: 0;
        flex-direction: column;
        align-items: center;

    }

    .services-list .left,
    .services-list .right {
        text-align: center;
        width: 100%;
    }

    .session:nth-child(3),
    .session:nth-child(7) {
        flex-direction: column-reverse;
        display: flex
    }

    .divisoria {
        min-height: 50px;
        background: white;
    }

    .social-circle{
        padding: 14px 16px;
    }

/*device mockup*/

:root{
    --stroke-iphone-weight: 10px;
}


.iphone-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.iphone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0px 3px 35px rgba(0, 0, 0, 0.6);
    border-radius: 55px;
    width: 94%;
    height: 94%;
}

    .topo-iphone{

        height: 100px;
        border-radius: 55px 55px 0 0 ;
        border-top: solid var(--stroke-iphone-weight) black;
        border-left: solid var(--stroke-iphone-weight) black;
        border-right: solid var(--stroke-iphone-weight) black;
        border-bottom: none;
        display: flex;
        align-items: center;
    justify-content: center;
    }

    .base-iphone{
        height: 95px;
        border-radius: 0 0 55px 55px;
        border-top: none;
        border-left: solid var(--stroke-iphone-weight) black;
        border-right: solid var(--stroke-iphone-weight) black;
        border-bottom: solid var(--stroke-iphone-weight) black;
        display: flex;
        align-items: center;
    justify-content: center;
    }

    .meio{
        height: 100%;
        border-left:solid var(--stroke-iphone-weight) black;
        border-right: solid var(--stroke-iphone-weight) black;
        overflow: scroll;
    }

    .cam{
        width: 25%;
        height: 20px;
        background: #000;
        border-radius: 45px;
        margin: 30px 0 15px 0;
    }

}
					.site-title,
			.site-description {
				position: absolute;
				clip: rect(1px, 1px, 1px, 1px);
				}
					.ht_ctc_animation{animation-duration:1s;animation-fill-mode:both;animation-delay:0s;animation-iteration-count:1;}
                @keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.ht_ctc_an_heartBeat{animation-name:heartBeat;animation-duration:calc(1s * 1.3);animation-duration:calc(var(1) * 1.3);animation-timing-function:ease-in-out}
                
.ht-ctc .ctc_s_7_1:hover .ctc_s_7_icon_padding, .ht-ctc .ctc_s_7_1:hover{background-color:#00d34d !important;border-radius: 25px;}.ht-ctc .ctc_s_7_1:hover .ctc_s_7_1_cta{color:#f4f4f4 !important;}.ht-ctc .ctc_s_7_1:hover svg g path{fill:#f4f4f4 !important;}