* {
    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;
}

/*Classes JS*/

.displayOn {
    display: flex;
}

.displayOff {
    display: none;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Auxiliares*/

.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;
}

.hidden {
    display: none;
}

.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 {
    height: 80vh;
}

#solution .box__overlay {
    background-color: #FF0066;
    border-radius: 80px;
    height: 80%;
    width: 90%;
}

#solution .box__text {
    width: 100%;
    height: 100%;

    background-color: #fff;
    border-radius: 80px 0 0 80px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding-left: 10%;
}

#solution .box__itens {
    width: 100%;

    gap: 1em;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 8%;
    padding-right: 2%;
}

#solution .d-flex {
    align-items: center;
}

#solution .d-flex p {
    margin-left: 20px;
    color: #fff;
    font-weight: bold;
}

/*contadores*/

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

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

#contadores img {
    width: 20%;
}

#contadores .box__content {
    width: 100%;
}

#contadores .box__itens {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;

}

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

#negocios {
    font-weight: bold;

}

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

#faturado {
    font-weight: bold;
}

#faturado::after {
    content: " Milhões";
}

#equipe {
    font-weight: bold;
}

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

/*portifoleio*/

#portifolio {
    overflow: hidden;
}

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

#panty:hover {
    background-image: url(/Assets/image/Cases/Case-Panty-Hover.jpg);
}

#Dra {
    margin-top: -26px;
    width: 100%;
    height: 40vh;
    background-image: url(/Assets/image/Cases/Case-DraThaissa.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s ease-in-out;
}

#Dra:hover {
    background-image: url(/Assets/image/Cases/Case-DraThaissa-Hover.jpg);
}

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

#Ortega:hover {
    background-image: url(/Assets/image/Cases/Case-Marcelo-Hover.jpg);
}

#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: 100%;
}

#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:1024px) {

    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 {
        margin: 0;
    }

    #hero nav {
        display: none;
    }

    #hero .box__text {
        gap: 10px;
    }

    header {
        padding-top: 20px;
    }

    header img {
        width: 70%;
    }

    /*clients*/

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

    /*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 .box__overlay {
        height: 70vh;
    }

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

    #solution .box__text {
        display: none;
    }

    #solution .box__text2 {
        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;
    }

    #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 {
        display: none;
    }

    #portifolio .box__content {
        display: block;
    }

    /*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%;
    }

    /*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:1366px) {
    body {
        overflow-x: hidden;
    }

    #agency {
        height: auto;
    }

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


#boxUm {
    color: blue;
}

#boxDois {
    color: red;
}

#boxTres {
    color: green;
}