* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "poppins";
    font-size: clamp(20px, 2vw, 24px);
    overflow-x: hidden;
}

h1 {
    font-size: clamp(48px, 3vw, 56px);
}

h2 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
}

/*TESTE*/

/*Classes JS*/

.displayOn {
    display: flex;
}

.displayOff {
    display: none;
}

/* Animações */
.fadeIn {
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Auxiliares*/

.hidden {
    display: none;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    height: 100%;
}

.button {
    padding: 20px;
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    background-color: #FF0066;
    border: none;
    border-radius: 5px;
    animation: pulse 5s infinite;
    animation-iteration-count: 2;
    cursor: pointer;
    box-shadow: 0 0 8px #FF0066;
}

.button:hover {
    background: none;
    border: 1px solid #FF0066;
    padding: 19px;
    transform: scale(1.04);
    transition: 0.5s;
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.c-pink {
    color: #FF0066;
}

.all-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-column {
    display: flex;
    flex-direction: column;
}

.p-tittle {
    color: #FF0066;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 16px);

    border: 2px solid #FF0066;
    padding: 15px;
    border-radius: 5px;
}

.d-flex {
    display: flex;
}

/*hero*/

.test {
    margin-top: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fade-text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fade 9s infinite;
}

.text1 {
    animation-delay: 0s;
}

.text2 {
    animation-delay: 3s;
}

.text3 {
    animation-delay: 6s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#hero {
    background-repeat: no-repeat;
    background-size: contain;
    height: 100vh;
    color: #fff;
}

#hero .container {
    height: 70%;
}

#hero h1 {
    font-weight: 550;
}

#hero .box__text {
    gap: 30px;
}

#hero .test button {
    margin-top: 10%;
}

header {
    display: flex;
    justify-content: space-between;

    padding-top: 40px;
    margin: auto;
    max-width: 80%;
    width: 100%;
}

header nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

header a {
    color: #fff;
    text-decoration: none;
}

header a:hover {
    color: #FF0066;
    transition: 0.2s;
    font-weight: bold;
}


/*client*/

@keyframes brands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#clients {
    margin-top: 5%;
    height: auto;
    overflow: hidden;
}

#clients .container {
    text-align: center;
}

#clients .slider {
    margin: 5% 0 5% 0;
    display: flex;
    gap: 10px;
    animation: brands 100s linear infinite;
}

#clients .card {
    gap: 50px;
    width: max-content;
}

/*agency*/

#agency {
    background-color: #FFF5F9;
    padding-bottom: 5%;
    padding-top: 5%;
}

#agency h2 {
    margin-top: 40px;
}

#agency .box__text {
    gap: 16px;
    padding-right: 50px;

    height: 100%;
}

#agency .box__image {
    height: 100%;
}

#agency p {
    margin-top: 20px;
}

/*slide*/
#metas {
    background-color: #FF0066;
    color: #fff;
    overflow-x: hidden;
    height: 56px;
    font-size: clamp(16px, 2vw, 20px);
    ;
}

@keyframes slider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-20%);
    }
}

#metas .slider {
    display: flex;
    animation: 50s slider infinite linear;
}

#metas p {
    width: max-content;
    margin-left: 30px;
}



/*solution*/

#gestao {
    cursor: pointer;
}

#crm {
    cursor: pointer;
}

#desing {
    cursor: pointer;
}

#planejamento {
    cursor: pointer;
}

#ugc {
    cursor: pointer;
}

.h-underline {
    display: inline-block;
    position: relative;
}

.hover-underline {
    color: #ffffff;
    position: relative;

}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: -10px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
    border-radius: 10px;
    margin-left: 10px;
}

.hover-underline:hover::after {
    transform: scaleX(1);
}

/*solution*/

#solution {
    margin: 40px 0;
}

#solution .box__text {
    width: 70%;
}

#solution .box__text h2 {
    margin-top: 30px;
}

#solution li {
    margin-top: 10px;
    margin-left: 30px;
    font-weight: 300;
    padding-left: 10px;
}

#solution li::marker {
    content: "•";
    
}

.accordions {
    width: 100%;
    margin: 0 auto;
}

.accordion-item input {
    display: none;
}

.accordion-item label {
    display: flex;
    cursor: pointer;
    padding: 5px 3px;
}

.accordion-item label:hover {
    color: #FF0066;
    transition: .2s;
}

.accordion-content {
    height: 0px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

[id^=accordion]:checked~.accordion-content {
    height: 300px;
}

.caixa {
    display: inline-block;
    border-bottom: 1px solid #999;
    position: relative;
    transition: border-color 0.3s ease;
    width: 100%;
    padding: 20px;
    font-weight: 500;
}


.caixa::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #FF0066;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}


.caixa:hover {
    border-bottom-color: transparent;
}

.caixa:hover::after {
    transform: scaleX(1);
}



/*contadores*/

#contadores {
    margin-bottom: 10%;
    margin-top: 5%;
}

#contadores .card {
    font-size: clamp(30px, 3vw, 42px);
}

#contadores img {
    width: 20%;
}



#contadores .box__itens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

#contadores .box__text {
    text-align: center;
    margin-bottom: 5%;
}

#negocios {
    font-weight: bold;
    font-size: 80px;

}

#negocios::after {
    content: "+";
}

#faturado {
    font-weight: bold;
    font-size: 80px;
}

#faturado::after {
    content: "+";
}

#equipe {
    font-weight: bold;
    font-size: 80px;
}

#equipe::after {
    content: "+";
}

/*portifoleio*/

#portifolio {
    overflow: hidden;
}

#portifolio .box__overlay {
    margin-top: 20px;
    height: 70vh;
}

#panty {
    height: 100%;
    width: 100%;
    background-image: url(/Assets/image/Cases/PANTY.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s ease-in-out;
}

#panty .box {
    opacity: 0;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hwb(287 18% 46% / 0.877);
    height: 100%;
}

#panty:hover .box {
    opacity: 1;
    transition: 0.3s ease;
}

#Dra {
    height: 100%;
    width: 100%;
    background-image: url(/Assets/image/Cases/DRA.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s ease-in-out;
}

#Dra .box {
    opacity: 0;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.74);
    height: 100%;
}

#Dra:hover .box {
    opacity: 1;
    transition: 0.3s ease;
}

#Ortega {
    height: 100%;
    width: 100%;
    background-image: url(/Assets/image/Cases/JAMUTE.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s ease-in-out;
}

#Ortega .box {
    opacity: 0;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(184, 69%, 14%, 0.87);
    height: 100%;
}

#Ortega:hover .box {
    opacity: 1;
    transition: 0.3s ease;
}

#portifolio .box__content {
    display: none;
}

#portifolio .box__image img {
    width: 100%;
}

#portifolio .slider {
    display: flex;
    animation: 15s slider infinite linear;
}

#portifolio .box {
    gap: 56px;
}

#portifolio .card p {
    font-size: clamp(32px, 3vw, 40px);
    width: max-content;
    font-weight: 600;
}

/*where*/

#where {
    padding-bottom: 5%;
    padding-top: 5%;
}



#where h2 {
    margin-top: 40px;
}

#where .box__text {
    gap: 16px;
    padding-right: 50px;

    height: 100%;
}

#where .box__image {
    height: 100%;
}

#where p {
    margin-top: 20px;
}

/*coments*/

#coments {
    height: auto;
    background-color: #FFF5F9;
}

#coments .box__content {
    display: none;
}

#coments .box {
    margin-left: 10%;
    margin-right: 10%;
    padding-bottom: 5%;
}

#coments .box p {
    margin: 5% 0 5% 0;
}

#coments .container {
    padding: 5% 0 5% 0;
}

#coments .box__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    margin-left: 5%;

    gap: 20px;
}

.swiper {
    width: 50%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: clamp(16px, 2vw, 24px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next::after {
    display: none;
}

.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet-active {
    background: #FF0066 !important;
}

/*contact*/

#contact {
    margin-top: 5%;
    margin-bottom: 5%;
}

#contact .box__content {
    width: 50%;
}

#contact .box__content button {
    margin-top: 5%;
}

#contact .box__text {
    width: 50%;
}

#contact input {
    padding: 5%;
    border: none;
    border-bottom: 1px solid #BCBCBC;
    font-size: clamp(20px, 2vw, 24px);
}

#contact input::placeholder {
    font-size: clamp(16px, 2vw, 20px);
}

#contact h1 {
    font-weight: 400;
}

#contact .button:hover {
    color: #FF0066;
    padding: 19px;
}

/*footer*/

footer {
    border-top: 2px solid #BCBCBC;
    font-size: clamp(12px, 2vw, 16px);

}

footer .container {
    display: flex;
    justify-content: space-around;

    margin-top: 5%;
    margin-bottom: 5%;
}

footer .box__text p {
    margin-top: 16px;
}

footer .box__itens .item {
    gap: 16px;
    margin-top: 25px;
    align-items: center;
}

@media (max-width:1240px) {

    body {
        overflow-x: hidden;
    }

    .test {
        margin-top: 100%;
    }

    .container {
        display: block;
        max-width: 90%;
    }

    /*hero*/

    #hero {
        height: 100vh;
        background-size: cover;
        text-align: center;
    }

    #hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero nav {
        display: none;
    }

    #hero .box__text {
        gap: 10px;
    }

    header {
        padding-top: 20px;
    }

    header img {
        width: 70%;
    }

    #hero .test {
        margin-top: 200%;
    }

    /*clients*/

    #clients .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #clients .slider {
        animation: brands 15s linear infinite;
    }

    /*agency*/

    #agency {
        padding-top: 5%;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #agency img {
        width: 100%;
    }

    #agency .box__text {
        padding: 0;
        margin-bottom: 20px;
    }

    /*solution*/

    #solution {
        margin-top: 5%;
        height: auto;
    }

    #solution .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #solution li p {
        font-size: 16px;
    }


    #solution .hidden {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-bottom: 5%;
    }


    #solution .box__text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #solution .box__itens {
        gap: 20px;

        padding-left: 5%;
        padding-right: 5%;
    }

    #solution .box__overlay {
        width: 100%;
    }

    /*contadores*/

    #contadores .box__itens {
        display: block;
        text-align: center;
    }

    #where img {
        width: 100%;
    }

    #where .box__text {
        padding: 0;
        padding-bottom: 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /*contact*/

    #contact .box__text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /*portifolio*/

    @keyframes r-slider {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    #portifolio {
        height: auto;
    }

    #portifolio .slider {
        animation: 20s r-slider infinite linear;
    }

    #portifolio .box__overlay {
        flex-direction: column;
        background-size: cover;
        height: auto;
    }

    #portifolio .box__content {
        display: none;
    }

    #Dra {
        background-image: url(/Assets/image/Cases/dra-mobile.png);
        background-size: cover;
        height: 25vh;
    }

    #Dra img {
        width: 40%;
    }

    #Ortega {
        background-image: url(/Assets/image/Cases/jamute-mobile.png);
        background-size: cover;
        height: 25vh;
    }

    #Ortega img {
        width: 40%;
    }

    #panty {
        background-image: url(/Assets/image/Cases/panty-mobile.png);
        background-size: cover;
        height: 25vh;
    }

    #panty img {
        width: 40%;
    }

    /*coments*/

    .swiper {
        width: 100% !important;
        margin-top: 20px;
    }

    #coments .box__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #coments .box__text {
        display: none;
    }

    #coments .box {
        margin-bottom: 20px;
    }

    .swiper-pagination {
        bottom: 50px;
    }

    .swiper-button-next img,
    .swiper-button-prev img {
        display: none;
    }

    /**/

    #contact .box__content {
        width: 100%;
    }

    #contact .box__text {
        width: 100%;
    }

    /*footer*/

    footer {
        font-size: clamp(12px, 2vw, 16px);
    }

    footer .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .box__itens {
        width: 100%;
    }

    footer .box__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .item {
        width: 100%;

        align-items: center;
    }
}

@media (max-width:1400px) {
    body {
        overflow-x: hidden;
    }

    #agency {
        height: auto;
    }

    #coments .swiper {
        width: 80%;
    }
}