@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    letter-spacing: 1px;
    font-family: "urbanist", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

body {
    background-color: #11071A;
    /* overflow-x: hidden; */
}

section {
    width: 100%;
}

/* Hero section styles */


.ugc-logo{
    display: none !important;
}
.hero-section {
    margin-top: 40px;
    width: 100%;
}

h1 {
    margin: 40px 0 20px 0;
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-section p {
    color: #fff;
    font-size: 22px;
    order: 1;
}

.hero-image img {
    margin: auto;
    width: 100%;
    height: 100%;

}

/* Primary outline button */
.btn-primary-outline {
    font-size: 20px;
    color: #E40046;
    padding: 15px 25px;
    max-width: 350px;
    background-color: #ffffff00;
    border: 2px solid #E40046;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-outline:hover {
    background-color: #E40046;
    color: #fff;
}

.services-section {
    padding: 150px 0;
    text-align: center;
}

.services-section h3 {
    font-size: 22px;
    color: #FFFFFF;
}

.services-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.services-carousel {
    perspective: 1200px;
}

.services-carousel .slick-list {
    overflow: visible;
}

.services-carousel .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.services-carousel .cover {
    width: 100%;
    height: 240px;
    background-size: cover;
    border-radius: 20px 20px 0 0;
}

.slick-slider {
    overflow: hidden;
}

.services-carousel .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.services-slide {
    padding: 0 40px;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    text-align: left;
    color: #000;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-card .content {
    padding: 34px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-card .card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

.services-card .card-title img {
    height: 64px;
}

/* 
.services-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
} */

.services-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-card p {
    font-size: 16px;
    font-weight: 200;
    margin: 0;
}

/* .services-carousel .slick-slide {
    opacity: 0.55;
    transform: scale(0.86);
    transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
} */

/* .services-carousel .slick-slide.is-left {
    transform: scale(0.86) rotateY(14deg);
} */

/* .services-carousel .slick-slide.is-right {
    transform: scale(0.86) rotateY(-14deg);
} */

.services-carousel .slick-slide {
    opacity: 1;
}

.big-numbers-section {
    padding: 150px 0 0 0;
    text-align: center;
}

.big-numbers-section h3 {
    font-size: 22px;
    color: #E40046;
}

.big-numbers-section h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 700;
}

.big-number-col {
    position: relative;
}

.big-number-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 0;
    border-right: 2px dashed #fff;
    opacity: 0.9;
}

.big-number-item {
    padding: 10px 30px;
}

.big-number-value {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.big-number-prefix {
    color: #E40046;
}

.big-number-label {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
}

.big-number-label strong {
    font-weight: 700;
}

@media (max-width: 640px) {
    .services-slide {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .big-number-col:not(:last-child)::after {
        display: none;
    }

    .big-number-item {
        padding: 26px 12px;
        border-bottom: 2px dashed #fff;
    }

    .big-number-col:last-child .big-number-item {
        border-bottom: none;
    }
}


/* Clients section */

.clients-section {
    width: 100%;
    border: solid 1px #616161;
    border-left: none;
    border-right: none;
}


.clients-slider {
    margin: 20px 0;
    max-width: 100%;

}

.clients-slider img {
    max-width: 100px;
    height: auto;
}


/* seção com formulario */


.formulario {
    background-image: url('/assets/images/fundo-vertor.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: cover;
    height: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 80px 0;
    text-align: center;
}



.secao-beneficios h2 {
    font-size: 40px;
    color: #E40046;
    font-weight: 700;
}


.secao-beneficios p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}


.formulario .form {
    background-color: #11071ab4;
    height: 550px;
    border: solid 1px #E40046;
    width: 80%;
    margin: auto;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}


/* Benefits section */


.benefits-section {
    text-align: center;
    margin-bottom: 170px;
    margin-top: 170px;


}


/* .beneficios .col-lg-12 {
    margin-bottom: 60px;

} */


.benefits-section h3 {
    font-size: 22px;
    color: #E40046;
}


.benefits-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}


.benefits-section h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-top: 18px;
}

.benefits-section p {
    font-size: 15px;
    color: #fff;
    margin-top: 18px;
    font-weight: 100;
    margin: 0 4px;
}

.benefit-card {
        height: 330px;
    border: solid 1px #E40046;
    border-radius: 20px;
    box-shadow: 0px 0px 7px 8px rgb(228 0 70 / 14%);
    margin: 0 10px;
}

/* 

@media (max-width: 768px) {
    .benefits-section .slider-content {
        width: 500vw;
        flex-wrap: wrap;
        gap: 20px;
    }

    .benefit-card {
        width: 100%;
        padding: 50px 30px;
        height: auto;
    }
} */


.btn-primary {
    background: #E40046;
    font-size: 22px;
    color: #fff;
    border-color: #0d6efd00;
    padding: 18px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    max-width: 100%;
    text-align: center;
    width: 365px;
    background: linear-gradient(90deg, #E40046 -19.94%, #D31D74 100%);
}

.btn-primary:hover {
    background: #FFFFFF;
    color: #E40046;
}

.move-down {
    margin-top: 80px !important;
}

.slider.benefits {
    overflow-x: auto;
    display: flex;
    width: 500vw;
    scroll-snap-type: x mandatory;
}

.slider-content {
    display: flex;
    margin: 50px 0;
}

/* Platform Section */
.platform-section {
    background: url('/assets/images/platform/bg.jpg');
    height: auto;
    position: relative;
    background-size: cover;
}

.platform-section::before {
    border: solid 30px #D31D74;
    border-radius: 500px;
    width: 168px;
    height: 168px;
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: -84px;
    z-index: 2;
}

.platform-card {
    position: absolute;
    max-width: 100%;
    margin-top: -20px;
    margin-left: -20px;
}

.platform-content {
    padding: 70px 60px;
}

.platform-section h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.platform-section h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.platform-section p {
    color: #fff;
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.5;
}

button.btn-primary {
    background: #E40046;
    font-size: 22px;
    color: #fff;
    border-color: #0d6efd00;
    padding: 15px 0;
    border-radius: 10px;
    font-weight: 600;

}

button.btn-primary:hover {
    background: #ffff;
    color: #E40046;
    border-color: #0d6efd00;
}


button.btn-secondary {
    background-color: #2a1b3900;
    font-size: 18px;
    color: #fff;
    border: solid 1px #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

button.btn-secondary:hover {
    background-color: #ffff;
    color: #E40046;
    border-color: #0d6efd00;
}

button.btn-secondary:hover svg path {
    fill: #E40046;

}

/* Steps section */
.steps-section {
    background: url('/assets/images/passoapasso-bg.png');
    background-size: 100% auto;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
    padding: 150px 0;
}

@media (max-width: 768px) {
    .steps-section {
        background: none;
    }
}


.steps-section h3 {
    font-size: 22PX;
    color: #E40046;

}

.steps-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;

}


.influencers-image {
    margin: 60px;
    max-width: 100%;
}
@media (max-width: 768px) {
    .influencers-image {
        margin: 0;
    }
    
}


.step-card {
    border: solid 1px #E40046;
    margin: 0 0 20px 0;
    width: 460px;
    max-width: 100%;
    padding: 20px 25px;
    border-radius: 17px;
    background-color: #11071a3a;
    backdrop-filter: blur(6px);
}

.step-card p {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
    margin-top: 15px;

}


.step-number {
    display: flex;
    justify-content: start;
    align-items: center;
    align-content: center;
}

.step-number img {
    margin-right: 20px;
}

.step-number h4 {
    color: #fff;
    font-size: 25px;
    font: 700;
}

.steps-column {
    margin-top: 60px;
}



.case-studies {
    text-align: center;
}


.case-studies h3 {
    font-size: 22px;
    color: #E40046;

}

.case-studies h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
}

.case-background {
    background-image: url('/assets/images/fundo-case.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 30px;
    height: 450px;
    width: 900px;
    margin: auto;
    border-radius: 25px;
    border: solid 1px #E40046;
    /* box-shadow: 0px 0px 7px 8px rgb(228 0 70 / 14%); */
}




.case-content {
    background-color: #0000002a;
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(6px);
}


.case-content h4 {
    color: #fff;
    font-weight: 700;
    font-size: 35px;

}

.case-content p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;

}

.slick-dots li button:before {
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px !important; 
    height: 10px !important;
    content: '' !important;
    text-align: center;
    opacity: .25;
    border-radius: 50px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: ease-in-out all 300ms;
    margin-top: 10px;
}

.slick-dots li{
    transition: ease-in-out all 300ms;
}

.slick-dots li.slick-active{
    width: 40px !important;
}

.slick-dots li.slick-active button:before {
    width: 30px !important; 
    opacity: .25;
}

.case-video {
    width: 240px;
    height: 300PX;
    border-radius: 20px;
    border: solid 1px #ff008035;
}





.bold-cor-texto {
color:#E40046; 
font-weight: 700;

}


/* Testimonials Section */
.testimonials-section {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.testimonials-section::before {
    border: solid 30px #E40046;
    border-radius: 500px;
    width: 168px;
    height: 168px;
    content: "";
    display: block;
    position: absolute;
    top: -85px;
    left: -84px;
}

.circle-right {
    overflow: hidden;
    bottom: -78px;
    right: 0;
    width: 168px;
    height: 168px;
    position: absolute;
}

.circle-right::after {
    border: solid 30px #E40046;
    border-radius: 500px;
    width: 168px;
    height: 168px;
    content: "";
    position: absolute;
}




.testimonials-section h3 {
    font-size: 22px;
    color: #E40046;
}


.testimonials-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
}


.slider-content-testimonials {
    display: flex;
    gap: 65px;
}


.card-section {
    margin-top: 70px;

}


.testimonial-card {
    background-color: #fff;
    width: 30%;
    padding: 60px 40px 15px 40px;
    border-radius: 20px;
    position: relative
}

.testimonial-card img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card p {
    color: #868686;
}



.testimonial-card::before {
    background-image: url('/assets/images/aspas-1.png');
    background-repeat: no-repeat;
    width: 31px;
    height: 25px;
    content: "";
    display: block;
    position: absolute;
    top: -15px;
}


.testimonial-card::after {
    background-image: url('/assets/images/aspas-2.png');
    background-repeat: no-repeat;
    width: 31px;
    height: 25px;
    content: "";
    display: block;
    position: absolute;
    left: 77%;
    bottom: -15px;
}


.faq-section {
    margin-top: 150px;
    background-color: #22081F;
    padding: 150px 0 250px 0;

    background: url("/assets/images/faq-bg.jpg") center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-section h3 {
    font-size: 22px;
    color: #FFFFFF;
    text-align: center;
}


.faq-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}


.faq-section .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid #E40046;
    color: #E40046;
    border-radius: 15px;
    margin: 20px;
}

.card-header {
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;

}

.card-header h5 {
    width: 100%;
    padding: 0 10px;
}

.faq-section .card .btn-link {
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    color: #E40046;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
    width: 100%;
}

.faq-section .card .card-body {
    color: #E40046;
}

.faq-section .card .btn-link button {
    width: 100%;
    background-color: #D31D74;
}


.faq-section .card .btn-link svg {
    position: absolute;
    right: -30px;
    transform: rotate(180deg);
    transition: ease-in-out all 300ms;
}

.faq-section .card .btn-link.collapsed svg {
    transform: rotate(0deg);
}

.card-body {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}


.contact-section {
    text-align: center;
    background-color: #11071A;
    padding-bottom: 150px;
    overflow: inherit !important;
}

.contact-container {
    border: solid 1px #E40046;
    width: 80%;
    padding: 70px;
    margin: auto;
    margin-top: -100px;
    border-radius: 40px;
    background: #11071A;
}

.contact-section h3 {
    font-size: 22px;
    color: #E40046;
}


.contact-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
}




form {
    display: flex;
    flex-direction: column;
    width: 650px;
    margin: auto;
    /* padding: 10px; */
}


.form-column {
    display: flex;
    gap: 15px;

}


.form-column input {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 8px;
    background-color: #fff;
    border: none;
}



.field {
    position: relative;
    width: 100%;
}


.form-column label {
    position: absolute;
    left: 10px;
    top: 32px;
    background: #FFFFFF;
    padding: 0 7px;
    transition: ease-in-out 300ms;
}



input.focus+label,
input:focus+label {
    top: 10px;
    font-size: 12px;
    color: #ffffff;
    background: #E40046;
    border-radius: 5px;
}


textarea+label {
    position: absolute;
    left: 10px;
    top: 40px;
    background: #FFFFFF;
    padding: 0 7px;
    transition: ease-in-out 300ms;
}


textarea.focus+label,
textarea:focus+label {
    top: 15px;
    font-size: 12px;
    color: #ffffff;
    background: #E40046;
    border-radius: 5px;
}


textarea {
    border-radius: 8px;
    background-color: #fff;
    border: none;
    height: 200px;
    width: 100%;
    margin-bottom: 30px;
    margin: 25px 0 25px 0;
    padding: 20px;
}



.terms-of-use {
    width: 60%;
    margin: auto;
    font-size: 14px;
    color: #fff;
}

input[type=submit] {
    width: 220px;
    height: 63px;
    margin: auto;
    margin-top: 30px;
    background-color: #E40046;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 8px;
    border: none;
    transition: 0.5s;
}

input[type=submit]:hover {
    background-color: #ffffff;
    color: #E40046;
}

/* seção baixe o app */

/* Download App Section */
.download-app-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.download-app-container {
    background: linear-gradient(108deg, rgba(228, 0, 70, 1) 0%, rgba(119, 32, 135, 1) 59%, rgba(74, 20, 140, 1) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-app-section h6 {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}


footer {
    padding: 60px 0 0 0;
}

footer .col-lg-4 {
    padding: 50px 0 0 50px;
}

footer .col-lg-4 span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

footer p {
    color: #fff;
    margin-top: 15px;
    font-weight: 100;
}

.support-links {
    list-style: none;
    padding: 5px 0;
}



.support-links li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}


.support-links li a:hover {
    color: #E40046;
}


.support-links li {
    margin-bottom: 10px;
}



/* Efeito ao passar o mouse */
.redes {
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1);
}

.redes:hover {
    transform: scale(1.1);
    filter: brightness(2.5);
}


.img-playstore {
    display: block;
}


.mobile {
    display: none;

}

@media (max-width: 768px) {

    .faq-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .case-studies h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .steps-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .benefits-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .desktop {
        display: none;

    }

    .mobile {
        display: block;

    }

    .primario .row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }


    h1 {
        margin: 40px 0 0 0;
        font-size: 30px;
    }



    .primario p {
        font-size: 20px;
        padding: 0 30px;
        order: 2;

    }

    .clientes {
        width: 100%;
        margin-top: 60px;
    }

    .logo-slider {
        margin: 20px 10px;
        max-width: 100%;

    }

    .logo-slider img {
        max-width: 80px;
        height: auto;
        margin: 0 20px 0 20px;
    }

    .formulario {
        height: 650px;

    }

    .formulario h2 {
        font-size: 30px;
    }

    .formulario p {
        font-size: 18px;
    }


    /* seção beneficios */

    .beneficios {
        text-align: center;
        margin-top: 100px;
        margin-bottom: 80px;


    }

    .beneficios h2 {
        font-size: 30px;
    }


    .slider.benefits {
        overflow-x: auto;
        display: flex;
        width: 500vw;
        scroll-snap-type: x mandatory;
        /* margin-bottom: 150px; */
    }

    .slider.benefits .benefit-card {
        width: calc(70vw - 40px);
        scroll-snap-align: center;
        height: 330px;
        padding: 30px;
        margin: 0 25px;
    }

    .move-down {
        margin-top: 0 !important;
    }


    .platform-section {
        background: linear-gradient(108deg, rgba(211, 29, 116, 1) 0%, rgba(228, 0, 70, 1) 100%);
        height: 770px;
        display: block;
        padding: 150px 5px 50px 5px;
        margin: 150px 0 0 0;
    }

    .platform-card {
        top: -150px;
    }

    .platform-section h2 {
        font-size: 32px;
        text-align: center;
    }

    .platform-section p {
        font-size: 18px;
        text-align: center;
    }

    .platform-section h3 {
        font-size: 22px;
        text-align: center;
    }

    .platform-section .desktop {
        display: none;
    }

    .platform-content {
        padding: 100px 30px 80px 30px;
    }

    .platform-section::before {
        border: solid 25px #D31D74;
        border-radius: 500px;
        width: 120px;
        height: 120px;
        content: "";
        display: block;
        position: absolute;
        bottom: 840px;
        left: -62px;
        z-index: 2;
    }

    .btn-primary {
        font-size: 18px;
        color: #fff;
        border-color: #0d6efd00;
        padding: 20px 20px;
        border-radius: 10px;
        font-weight: 600;
        margin: 15px 20px 0 20px;
        max-width: calc(100% - 40px);

    }

    .btn-secondary {
        background: #2a1b3900;
        font-size: 18px;
        color: #fff;
        border: solid 1px #fff;
        padding: 15px 20px;
        border-radius: 10px;
        font-weight: 600;
        margin: 0 20px 0 20px;
    }

    /* passo a passo */

    .passo h2 {
        font-size: 30px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 80px;
    }

    .card-passo {
        border: solid 1px #E40046;
        margin: 0 0 20px 0;
        width: 100%;
        padding: 20px 25px;
        border-radius: 17px;
    }

    .passo {
        background-image: none;
        margin-top: 100px;
        padding: 80px 0;
        margin-bottom: 80px;
    }

    .influenciadores {
        margin: auto;
        width: 350px;
        margin-top: 20px;
    }

    .coluna-passo {
        margin-top: 0;

    }

    /* cases */

    .cases h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .case-background {
        background-image: url('/assets/images/fundo-case.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 15px;
        height: 670px;
        width: 350px;
        margin: auto;
        border-radius: 20px;
    }

    .case-content {
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .case-content p {
      font-size: 14px;

    }

     .video-cases {
    width: 240px;
    height: 270px;
        
     }
    
    .btn-all-testimonials {
        background-color: #E40046;
        font-size: 18px;
        color: #fff;
        border: none;
        padding: 15px 25px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-all-testimonials:hover {
        background-color: #c8003a;
    }






    /* Testimonials Section - Mobile */
    .testimonials-section {
        margin-top: 120px;
        margin-bottom: 120px;
    }

    .slider-content-testimonials {
        display: flex;
        gap: 0;
    }

    .testimonials-section h2 {
        font-size: 30px;
        margin-bottom: 0;
    }

    .slider.testimonials {
        overflow-x: auto;
        display: flex;
        width: 500vw;
        scroll-snap-type: x mandatory;
    }

    .slider.testimonials .testimonial-card {
        width: calc(80vw - 40px);
        scroll-snap-align: center;
        height: 330px;
        padding: 50px 20px 20px 20px;
        margin: 70px 25px 0 25px;
    }

    .testimonials-section::before {
        border: solid 25px #E40046;
        border-radius: 500px;
        width: 120px;
        height: 120px;
        content: "";
        display: block;
        position: absolute;
        top: -60px;
        left: -58px;
    }

    .circle-right {
        overflow: hidden;
        bottom: -60px;
        right: 0;
        width: 120px;
        height: 120px;
        position: absolute;
    }

    .circle-right::after {
        border: solid 25px #E40046;
        border-radius: 500px;
        width: 120px;
        height: 120px;
        content: "";
        position: absolute;
    }


    /* faq perguntas */

    .faq {
        margin-top: 120px;
        margin-bottom: 0px;
        padding: 80px 0 20px 0;
    }

    .faq h3 {
        text-align: center;
    }


    .faq h2 {
        font-size: 30px;
        text-align: center;
    }

    .faq .card .btn-link {
        font-size: 18px;
    }

    .faq .card {
        margin: 0 0 20px 0;
    }

    .card-body {
        font-size: 16px;
    }

    /* formulario de contato */

    .contact-container {
        border: solid 1px #E40046;
        width: 92%;
        padding: 50px 15px;
        margin: auto;
        border-radius: 25px;
    }

    .contact-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    form {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: auto;
        padding: 0;
    }

    .form-column {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .terms-of-use {
        width: 100%;
        margin: auto;
        font-size: 14px;
        color: #fff;
    }

    .container.rosa {
        background: linear-gradient(108deg, rgba(228, 0, 70, 1) 0%, rgba(119, 32, 135, 1) 59%, rgba(74, 20, 140, 1) 100%);
        padding: 40px;
        border-radius: 25px;
    }

    .container.rosa h6 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-section {
        text-align: center;
        margin-bottom: 0;
        padding: 40px 0 0 0 ;
    }


    /* rodapé */

    .slogan {
        font-size: 18px;
        margin: 5px 20px 0 0;
        letter-spacing: 2px;
    }
}

.phone-mockup-wrapper {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 300px; 
    position: relative;
}

.phone-video-container {
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    width: 85%;  
    height: 95%; 
    overflow: hidden;
    border-radius: 22px;
    background: transparent;
}

.video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-cta {
    position: relative;
    background: linear-gradient(to right, #E40046ff 0%, #D31D74ff 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
    transition: background 3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(to right, #E4004600 0%, #D31D7400 100%);
    color: #E40046; 
    transform: translateY(-5px);
}

.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; 
    padding: 2px; 
    background: linear-gradient(45deg, #E40046, #D31D74, #fff, #7C3AED, #000);
    background-size: 400%;
    
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    animation: glowing 20s linear infinite;
}

.btn-cta:hover::before {
    opacity: 1;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


.ugc-title {
    font-size: 45px;
    font-weight: bold;
    color: #11071A;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .phone-mockup-wrapper {
        max-width: 260px;
    }

    .ugc-title {
        font-size: 30px;
    }
    
}
