body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

header {
    padding: 30px 0px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    transition: 0.6s;
    z-index: 10;
}

header.fixed {
    position: fixed;
    background-color: #fff;
    -webkit-box-shadow: 4px 6px 16px -6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 4px 6px 16px -6px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 6px 16px -6px rgba(0, 0, 0, 0.4);
    transform: translateY(-100%);
    padding: 20px 0px 0px;
    animation: header linear 300ms forwards;
    z-index: 99;
}

header.fixed .row {
    padding-bottom: 20px;
    border-bottom: 0px;
}

header .row {
    border-bottom: 1px solid #ffffff5b;
    padding-bottom: 30px;
}

header .logo a {
    background-image: url('../img/logo_light_ag7_media.png');
    width: 147px;
    height: 68px;
    text-indent: -9999px;
    display: block;
}

header.fixed .row .logo a {
    background-image: url('../img/logo_black_ag7_media.png');
}

header .row nav {}

header .row nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0px;
}

header .row nav ul li {
    list-style-type: none;
    margin-right: 35px;
}

header .row nav ul li a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 15px;
}

header .row nav ul li a.active::before {
    width: 100%;
}

header.fixed .row nav ul li a {
    color: #1a1a1a;
}

header .row nav ul li a::before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0px;
    transition: cubic-bezier(.29, .91, .72, 1) .5s;
}

header.fixed nav ul li a::before {
    background-color: #1a1a1a;
}

header .row nav ul li:hover a::before {
    width: 100%;
}

main.home{
    position: relative;
}

.main-banner {
    background-size: cover;
    background-repeat: no-repeat;
}

.main-banner .row {
    min-height: 100vh;
}

.main-banner .row .main-banner-wrapper h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-banner .row .main-banner-wrapper h2 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.main-banner .row .main-banner-wrapper .btn-leia a {
    background-color: #ff8417;
    padding: 12px 30px;
    color: #ffffff;
    display: inline-block;
    border-radius: 15px;
    margin-top: 20px;
    text-decoration: none;
    font-size: 20px;
}

.sobre {
    padding: 80px 0px;
}

.sobre .content-wrapper h2 {
    font-size: 40px;
    color: #ff8417;
}

.sobre .content-wrapper p {}

.servicos {
    padding: 80px 0px;
    background-color: #f4f4f4;
}

.flip-box {
    width: 416px;
    height: 304px;
    perspective: 1000px;
    /* Define a perspectiva para a animação 3D */
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
    /* Gire a caixa quando hover */
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Oculta a parte traseira durante a rotação */
}

.flip-box-front {
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 15px;
    padding: 40px 20px;
    -webkit-box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
}

.flip-box-back {
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 15px;
    padding: 40px 20px;
    -webkit-box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 16px -8px rgba(0, 0, 0, 0.75);
    transform: rotateY(180deg);
}

.flip-box-back.content ul{
    padding-left: 0px;
    list-style: none;
}

.flip-box-back.content ul li{
    font-size: 18px;
    margin-bottom: 2px;
}

.flip-box-back.content ul li span{
    position: relative;
}

.flip-box-back.content ul li span::before{
    content: '';
    width: 6px;
    height: 6px;
    background-color: #1a1a1a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
}

.servicos .servicos-wrapper .item .icon {
    text-align: center;
    margin-bottom: 20px;
}

.servicos .servicos-wrapper .item .content h3 {
    color: #ff8417;
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}

.cases {
    padding: 80px 0px;
    background-color: #000;
}

.cases .slider-videos .slick-slide {
    margin: 10px;
}

.cases .slider-videos .slick-dots li button::before{
    color: #ffffff;
}

.clientes {
    padding: 80px 0px;
}

.clientes .logo-slider .item {
    min-height: 126px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.clientes .logo-slider .item img{
    max-width: 50%;
    filter: grayscale(1);
    transition: 0.3s ease-in;
}

.clientes .logo-slider .item img:hover{
    filter: none;
}

.clientes .slick-prev:before,
.clientes .slick-next:before {
    color: #1a1a1a;
}

.whatsapp{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 20;
}

.whatsapp img{
    max-width: 100%;
    animation: motionZap cubic-bezier(.18,.93,.9,.89) .5s infinite;
}

.hidden-box{
    position: fixed;
    bottom: 90px;
    right: 40px;
    background-color: #f9f1df;
    border-radius: 10px;
    height: 0px;
    opacity: 0;
    z-index: 10;
}

.hidden-box.in{
    animation: zapIn 0.5s linear forwards;
}

.hidden-box.out{
    animation: zapOut 0.5s linear forwards;
}

.hidden-box .title{
    background-color: #075E54;
    padding: 20px 10px;
    border-radius: 10px 10px 0px 0px;
}

.hidden-box .title h3{
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
    text-align: center;
}

.hidden-box .content-wrapper{
    padding: 20px;
}

.hidden-box .content-wrapper input{
    border: 1px solid transparent;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    padding-left: 10px;
    color: #1a1a1a;
}

.hidden-box .content-wrapper textarea{
    border: 1px solid transparent;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    padding-left: 10px;
}

.hidden-box .content-wrapper button{
    padding: 8px 40px;
    background-color: #25D366;
    border: 1px solid #25D366;
    border-radius: 4px;
    color: #ffffff;
    display: block;
    width: 100%;
    font-weight: 700;
}

.hidden-box .content-wrapper input:focus-visible{
    outline: none;
}

button.slick-next,button.slick-prev,.slick-dots button{
    background-color: transparent !important;
}

.menu-toggle-mobile{
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    display: none;
}

.menu-toggle-mobile ul{
    list-style: none;
    padding-left: 0px;
    width: 34px;
    height: 34px;
    margin-bottom: 0px;
    background-color: #ff8417;
    border: 1px solid #ff8417;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menu-toggle-mobile ul li{
    background-color: #ffffff;
    width: 20px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: 0.2s linear;
}

.menu-toggle-mobile ul li:last-child{
    margin-top: 5px;
}

.menu-toggle-mobile ul.active li{
    transform: rotate(45deg);
}

.menu-toggle-mobile ul.active li:last-child{
    margin-top: -3px;
    transform: rotate(-45deg);
}

footer {
    padding: 80px 0px;
}

footer .title h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 30px;
}

footer .item {
    position: relative;
}

footer .item:nth-child(3),
footer .item:nth-child(4) {
    padding-left: 40px;
}

footer .item:nth-child(4)::before {
    content: unset;
}

footer .item::before {
    content: '';
    width: 2px;
    height: 230px;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    right: 0px;
}

footer .excerpt h4 {
    color: #ffffff;
    font-size: 22px;
}

footer .excerpt p {
    color: #ffffff;
}

footer .sitemap ul {
    padding-left: 20px;
    margin: 0px;
}

footer .sitemap ul li {
    margin-bottom: 5px;
}

footer .sitemap ul li::marker {
    color: #fff;
}

footer .sitemap ul li:last-child {
    margin: 0px;
}

footer .sitemap ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

footer .sitemap ul li a::before {
    content: '';
    width: 0px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: cubic-bezier(.29, .91, .72, 1) .5s;
}

footer .sitemap ul li a:hover::before {
    width: 100%;
}

footer .midias ul.items {
    display: flex;
    list-style: none;
    padding-left: 0px;
}

footer .midias ul.items li {
    margin-right: 20px;
}

footer .midias ul.items li i {
    color: #ffffff;
    font-size: 32px;
}

footer .contatos p {
    margin-bottom: 2px;
}

footer .contatos p a {
    color: #ffffff;
}

.menu-mobile{
    display: none;
}

@keyframes header {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes zapIn{
    0%{
        height: 0px;
        opacity: 0;
    }
    50%{
        height: auto;
        opacity: 0;
    }
    100%{
        height: auto;
        opacity: 1;
    }
}

@keyframes zapOut{
    0%{
        height: auto;
        opacity: 1;
    }
    50%{
        height: auto;
        opacity: 0;
    }
    100%{
        height: 0px;
        opacity: 0;
    }
}

@keyframes motionZap {
    0%{
        transform: skewY(0deg);
    }
    25%{
        transform: skewY(3deg);
    }
    50%{
        transform: skewY(4deg);
    }
    75%{
        transform: skewY(3deg);
    }
    100%{
        transform: skewY(0deg);
    }
}

@media(max-width: 768px){

    .desktop{
        display: none;
    }

    .menu-toggle-mobile{
        display: block;
    }

    header .menu-mobile{
        display: block;
        padding: 30px 20px 0px;
        background-color: #ff8417;
        width: 70%;
        height: 330px;
        position: fixed;
        top: 0px;
        left: -100%;
        border-radius: 0px 10px 10px 0px;
        transition: 0.5s cubic-bezier(.82,.5,.46,.99);
    }

    header .menu-mobile.active{
        left: 0px;
    }

    header .row nav ul{
        display: block;
        padding-left: 0px;
        margin-top: 30px;
    }

    header .row nav ul li{
        margin-right: 0;
        margin-bottom: 15px;
        list-style-type: none;
    }

    header .row nav ul li:last-child{
        margin-bottom: 0px;
    }

    header .row nav ul li a{
        font-size: 22px;
        color: #ffffff;
    }

    .main-banner .row .main-banner-wrapper h1{
        font-size: 40px;
    }

    .sobre .content-wrapper{
        margin-top: 20px;
    }

    .flip-box{
        width: 385px;
        margin-bottom: 20px;
    }

    footer{
        text-align: center;
    }

    footer .title h3{
        margin-top: 40px;
    }

    footer .excerpt img{
        display: inline-block;
        margin-bottom: 10px;
    }

    footer .item:nth-child(3), footer .item:nth-child(4){
        padding: 0px;
    }

    footer .sitemap ul{
        padding: 0px;
        list-style: none;
    }

    footer .midias ul.items{
        align-items: center;
        justify-content: center;
    }
}