/*
    Folha de estilo do site premioperformance.com.br
    Criado em: 28/07/2023
*/
/* Fontes do site */
/*@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;700&display=swap');*/
@font-face {
    font-family: "Izmir";
    src: url("../fonts/Izmir-Regular.otf");
}

@font-face {
    font-family: "Izmir Bold";
    src: url("../fonts/Izmir-Bold.otf");
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

:root {
    --azul-primario: #0038ea;
    --azul-secundario: #002cd0;
    --azul-terciario: #0029bc;
    --amarelo: #ffa811;
    --color-texto: #000;
    --titulo-beneficios: #032399;
    --titulo-depoimentos: #545f71;
    --texto-depoimentos: #6c757d;
    --background-you: #141131;
    --background-rodape: #1627a1;
    --size: clamp(5rem, 1rem + 20vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    /*hides horizontal scrollbar*/
}

body {
    font-family: "Izmir", sans-serif;
    font-size: clamp(.875rem, .875rem + ((1vw - .48rem) * .24), 1rem);
    font-style: normal;
    font-weight: 400;
    color: var(--color-texto);
    background-color: #eee;
    overflow-x: hidden !important;
    /*hides horizontal scrollbar*/
}

.fixed {
    position: fixed;
    width: 100%;
    z-index: 10;
}

#navbar-stick {
    padding: 1rem 0;
    background-color: #fff;
}

#banner {
    background-size: cover;
    background-image: url('../images/back-banner.webp'); 
    padding: 100px;
}

#banner .texto-banner {
    font-family: "Poppins", sans-serif;
    font-size: 34.35px;
    font-weight: 600;
    line-height: 39.84px;
    text-align: center;
    color: #052288;
}

#banner .texto-banner span {
    color: var(--amarelo);
    font-family: "Izmir", sans-serif;
    font-weight: 800;
}

#banner .formulario {
    border-radius: 1rem;
    background-color: #fff;
    max-width: 426px;
    margin: 1rem 0 0;
}

#banner .titulo-form {
    font-size: 1.25rem;
    text-align: center;
    font-family: "Izmir", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    word-wrap: break-word;
    margin: 1rem 0;
}

#banner .formulario .btn-enviar {
    width: 90%;
    background-color: var(--amarelo);
    color: #fff;
    height: 60px;
    text-transform: uppercase;
    border-radius: 1rem;
    font-weight: 600;
    transition: background-color ease-out .3s;
}

#banner .formulario .btn-enviar:hover {
    background-color: #bb7d13;
    transition: background-color ease-in .3s;
}

.titulo {
    font-family: "Izmir Bold", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    word-wrap: break-word;
    color: var(--azul-terciario);
}

#servicos {
    padding: 4rem 0;
    background-color: #f6f6f6;
}

#servicos p {
    font-family: "Izmir", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

#servicos .boxes, #beneficios .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#servicos .box {
    flex-grow: 1;
    flex-basis: 200px;
    margin: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #bdbdbd;
    padding: 1rem;
    cursor: pointer;
}

#servicos .box .box-titulo {
    font-family: "Izmir", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--amarelo);
}

#servicos .box .box-texto {
    font-family: "Izmir", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    word-wrap: break-word;
    color: #2c2c2c;
}

#servicos .box .box-icone {
    color: var(--amarelo);
    font-size: 1.5rem;
}

img.inverse {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#beneficios {
    padding: 4rem 0;
    background-color: var(--azul-primario);
    color: #fff;
}

#beneficios .bolhas {
    position: absolute;
    width: 50px;
    left: 20em;
    margin-top: 2em;
}

#beneficios .titulo {
    color: #fff;
}

#beneficios .box {
    flex-grow: 1;
    flex-basis: 30%;
    margin: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #fff;
    padding: 1rem;
    cursor: pointer;
}

#beneficios .box-image {
    margin: 1rem 0;
}

#beneficios .box-title {
    color: var(--titulo-beneficios);
    font-size: 1.5rem;
    font-family: "Izmir Bold";
    font-weight: 700;
    margin: 1rem 0;

}

#beneficios .box-text {
    font-size: 1.25rem;
    font-family: "Izmir Bold";
    font-weight: 500;
    min-height: 125px;
    color: #000;
}

#beneficios .btn-cta {
    background-color: var(--amarelo);
    color: #fff;
    height: 60px;
    text-transform: uppercase;
    border-radius: 1rem;
    font-weight: 600;
    transition: background-color ease-out .3s;
}

#beneficios .btn-cta:hover, #beneficios .btn-cta:active {
    background-color: #bb7d13;
    transition: background-color ease-in .3s;
}

#protecao {
    padding: 4rem 0;
}

#protecao .linha-divider {
    width: 100%;
    height: 3px;
    background: #000;
    margin-top: 1.5rem;
}

#protecao .coluna {
    display: flex;
    flex-basis: 100%;
    border-bottom: 3px solid #000;
    margin: 2rem 0;
    justify-content: space-around;
}

#protecao .coluna-icone {
    flex-grow: 2;
    flex-basis: 100px;
    max-width: 100px;
    width: 100px;
    margin: 0rem 1rem 2rem 0rem;
}

#protecao .coluna-titulo {
    flex-grow: 2;
    flex-basis: 40%;
    max-width: 40%;
    width: 40%;
    padding-top: 1.25rem;
}

.coluna-titulo span {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Izmir Bold";
}

#protecao .coluna-texto {
    width: 35%;
    max-width: 35%;
    padding-top: 1rem;
}

#assistencia {
    background: url("../images/back-assistencia.webp") no-repeat;
    background-position: 50%;
    padding: 4rem 0;
    color: #fff;
}

#assistencia .titulo {
    color: #fff;
    text-align: center;
}

#assistencia .btn-cta {
    background-color: var(--amarelo);
    color: #fff;
    height: 60px;
    text-transform: uppercase;
    border-radius: 1rem;
    font-weight: 600;
    transition: background-color ease-out .3s;
}

#assistencia .btn-cta:hover, #assistencia .btn-cta:active {
    background-color: #bb7d13;
    transition: background-color ease-in .3s;
}

#depoimentos {
    padding: 4rem 0;
    background: #f6f6f6;
}

#depoimentos .titulo {
    color: #545f71;
}

#depoimentos .titulo span {
    border-bottom: 6px solid var(--amarelo);
}

#depoimentos .depoimentos {
    background: #fff;
    border-radius: 20px;
    padding: 4rem 2rem 2rem;
    margin: 2rem 0;
}

#depoimentos .depoimento-icone {
    margin: -95px 0 0 145px;
    position: absolute;
    width: 80%;
    text-align: center;
}

#depoimentos .depoimento-icone img {
    margin: 0 auto;
    border-radius: 50%;
}

#depoimentos .depoimento-texto {
    font-size: .85rem;
    color: #6c757d;
    min-height: 250px;
}

#depoimentos .depoimento-nome {
    color: #000;
    font-family: 'Izmir';
    font-weight: 700;
}

#depoimentos .depoimento-cargo {
    color: var(--azul-terciario);
    font-weight: 700;
}

#rodape-you {
    padding: 4rem 0;
    background-color: var(--background-you);
    color: #fff;
    font-family: "Izmir";
}

#rodape-you h3 {
    font-size: 1.25rem;
    font-family: "Izmir Bold";
    font-weight: 600;
}

#rodape-you .logoyou {
    padding: 1rem 0 0;
}

#rodape-you .btn-clube {
    color: #fff;
    font-size: 1rem;
    background-color: var(--azul-primario);
    border-radius: 20px;
    font-family: 'Izmir Bold';
    text-transform: uppercase;
    width: 95%;
    padding: 1rem 0;
    margin: 0 auto;
    border: 1px solid var(--azul-primario);
    transition: background ease-in .3s;
}

#rodape-you .btn-clube:hover, #rodape-you .btn-clube:active {
    background: none;
    transition: background ease-in-out .3s;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

.marquee img {
    display: grid;
    place-items: center;
    width: var(--size);
    aspect-ratio: 19/9;
    padding: calc(var(--size)/10);
    border-radius: .5rem;
}

#rodape {
    background-color: var(--azul-primario);
}

.texto-rodape {
    text-align: center;
    color: #fff;
    padding: 1rem 0;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@media (min-width: 950px) and (max-width: 1400px) {
    #beneficios .bolhas {
        left: 3rem;
    }
}

@media (min-width: 1500px) {
    #banner .texto-banner {
        margin: 8rem 0 2rem;
    }

    #banner .formulario {
        margin: 3rem 0 0;
    }

    #banner .formulario .form-control {
        height: 60px;
    }
}

/* WHATSAPP */
#btn-whatsapp-card {
    display: flex;
    position: fixed;
    bottom: 35px;
    background-color: #4E4C4C;
    color: white;
    right: 120px;
    padding: 20px;
    height: 40px;
    transition: .4s;
    box-shadow: 8px 8px 48px rgba(3, 3, 3, 0.2);
    align-items: center;
    justify-content: center
}

#btn-whatsapp-button {
    display: flex;
    position: fixed;
    background: #25d366;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 8px 8px 48px rgba(0, 0, 0, 0.2);
    transition: .4s;
    align-items: center;
    justify-content: center
}

#btn-whatsapp-button>.rwb-tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 15px;
    color: #2d2d2d;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: 8px 8px 48px rgba(0, 0, 0, .2);
    opacity: 0;
    transition: .4s;
    pointer-events: none
}

#btn-whatsapp-button>.rwb-tooltip:after {
    display: block;
    content: "";
    position: absolute;
    top: 85%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    transition: .4s
}

#btn-whatsapp-button.left {
    left: 25px
}

#btn-whatsapp-button.left>.rwb-tooltip {
    left: 0;
    transform: translateX(-10%)
}

#btn-whatsapp-button.left>.rwb-tooltip:after {
    left: 23px
}

#btn-whatsapp-button:not(.left) {
    right: 25px
}

#btn-whatsapp-button:not(.left)>.rwb-tooltip {
    right: 0;
    transform: translateX(10%)
}

#btn-whatsapp-button:not(.left)>.rwb-tooltip:after {
    right: 23px
}

#btn-whatsapp-button>img {
    display: block;
    width: 34px;
    height: 34px
}

#btn-whatsapp-button:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 14, 14, 0.4)
}

#btn-whatsapp-button:hover>.rwb-tooltip {
    opacity: 1;
    transform: translateX(0)
}

#btn-whatsapp-button:hover>.rwb-tooltip:after {
    top: 100%;
    transition-delay: .4s
}

@keyframes tada {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
}

.tada {
    animation-name: tada;
    animation-duration: 2s;
    /* Duração total da animação */
    animation-delay: 2s;
    /* Atraso entre as iterações */
}


.showMobile {
    display: none !important;
}

.hideMobile {
    display: block !important;
}

.text-margin-top {
    margin-top: 50px !important;
}

@media only screen and (max-width: 767px) {
    .showMobile {
        display: block !important;
    }

    .hideMobile {
        display: none !important;
    }


    .showMobile.col-12,
    .hideMobile:not(.col-12) {
        display: none !important;
    }

    .text-start {
        text-align: center !important;
        margin-top: 2;
    }

    .text-start img {
        text-align: center !important;
        margin-top: 2rem;
    }

    .img-mobile {
        width: 50%;
    }
}

#divisor {
    font-family: "Izmir", sans-serif;
    padding: 30px;
    background: #000742;
}

#divisor b {
    font-size: 26px;
    font-weight: 700;
    line-height: 23.8px;
    text-align: right;
}



    .texto-banner {
        margin-top: 1.5rem !important;
        font-weight: 600 !important;
        font-size: 28px !important;
        line-height: 26.4px !important;
        text-align: center !important;
        padding-left: 100px;
    }

    @media (max-width: 1512px) {

        .texto-banner {
            font-size: 24px !important;
            margin-top: 1.5rem !important;
            font-weight: 600 !important;
            line-height: 26.4px !important;
            text-align: center !important;
            padding-left: 130px;
        }

    }

    @media (max-width: 767px) {
        .texto-banner {
            padding-left: 0px !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            line-height: 20.4px !important;
            text-align: center !important;
            margin-top: -30px !important;
        }

        .paragrafo-banner {
            color: white !important;
            font-size: 12px !important;
        }

        #banner {
            padding: 0px;
            height: 100vh;
            background-size: cover !important;
            background-position: center !important;
        }
        
        #divCarros {
            margin-top: 100px;
        }

        .formulario {
            height: 280px;
            width: 100%;
        }

        .titulo-form {
            font-size: 12px !important;
        }

        #banner input {

            height: 35px;
        }

        #banner button {
            margin-top: -10px !important;
            width: 80%;
        }

        #banner small {
            font-size: 12px !important;
        }
    }