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

/* Declaração de variáveis das cores padrão da página, para facilitar a manutenção */
:root{
    --blue: #00496E;
    --darkGray: #242424;
    --lightGray: #f4f4f4;
}

*{
    font-family: "Poppins", sans-serif;
}

/* Customização da Barra de Rolagem */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
	background: var(--blue);
    border-radius: 999px;
    border: 2px solid #e8e8e8;
}
/* Fim da Customização da Barra de Rolagem */

/* Previnindo scroll lateral e scroll vertical duplicado */
body,html{
    width: 100%;
    overflow-x: hidden;
    height: -webkit-fill-available;
}

body{
    background-color: #fff;
}

header{
    background: url(../img/symbol.svg) left top no-repeat, 
                linear-gradient(135deg, #ECDBC0 0%, #CFD2C4 25%, #DCDFCF 50%, #AEB0A4 75%, #8E948E 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

section{
    padding-top: 80px;
    padding-bottom: 80px;
}

header::after{
    content: '';
    width: 512px;
    height: 512px;
    border-radius: 999px;
    background: #005082;
    filter: blur(150px);
    display: block;
    opacity: .25;
    pointer-events: none;

    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
}

h2{
    color:var(--blue);
    font-weight: bold;
    font-size: 42px;
}

p{
    margin-bottom: 0;
}

.lead{
    font-weight: 400;
}

header .logo{
    width:260px
}

header h1{
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2em;
    color:var(--blue);
    max-width: 500px;
}

header h2{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4em;
    color:#000;
    max-width: 500px;
}

form{
    display: flex;
    flex-direction: column;
    gap:8px;
    max-width: 480px;
}

form input.form-control{
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--blue);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn{
    padding: 16px;
    background-image: linear-gradient(45deg, #00496E, #3168A6, #00496E, #3168A6) !important;
    background-size: 400% 200% !important;
    transition: all .8s !important;
    border: none;
    text-transform: uppercase;
    font-weight: bold;

    box-shadow: 0px 3.435px 2.748px 0px 
    #00496E1a, 0px 8.687px 6.95px 0px 
    #00496E24, 0px 17.721px 14.177px 0px 
    #00496E2b, 0px 36.502px 29.201px 0px 
    #00496E36, 0px 100px 80px 0px 
    #00496E4f;
}

.btn:hover{
    animation: 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) .3s infinite normal none running movimento !important;
    background-image: linear-gradient(45deg, #00496E, #3168A6, #00496E, #3168A6) !important;
    background-size: 400% 200% !important;
}

form label{
    display: none;
}

#sobre h2{
    max-width: 380px;
}

#sobre p.lead{
    max-width: 485px;
}

#sobre .lista-dores-wrapper{
    background-color: #FFDADA;
    border: 1px solid #A70000;
    padding: 70px;
    border-radius: 20px;
}

#sobre .lista-dores-wrapper h3{
    font-size: 26px;
    font-weight: bold;
    line-height: 1.3em;
    color: #a70000;
    max-width: 330px;
}

#sobre .lista-dores{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#sobre .lista-dores .item-dores{
    color: #A16969;
    font-size: 20px;
}

#sobre .lista-dores .item-dores::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    margin-right: 16px;

    background-color: #a70000;
    box-shadow: 0px 3.435px 2.748px 0px 
    #a700001a, 0px 8.687px 6.95px 0px 
    #a7000024, 0px 17.721px 14.177px 0px 
    #a700002b, 0px 36.502px 29.201px 0px 
    #a7000036, 0px 100px 80px 0px 
    #a700004f;
}

#image-section{
    padding-top: 240px;
    padding-bottom: 240px;
    background: url(../img/bgArtivitaFinal.webp) center center no-repeat;
    background-size: cover;
}

#image-section h2{
    color:#fff;
    font-size: 80px;
    text-align:center;
}

.lista-beneficios{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lista-beneficios .item-beneficios{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;

    border: 1px solid var(--lightGray);
    border-radius: 20px;
    padding: 32px 20px;
    transition: .3s;
    cursor: pointer;
}

.lista-beneficios .item-beneficios.active{
    background-color: var(--lightGray);
}

.lista-beneficios .item-beneficios:hover{
    background-color: #f9f9f9;
}

.lista-beneficios .item-beneficios .ico-beneficios{
    width: 78px;
}

.lista-beneficios .item-beneficios .descricao{
    font-size: 18px;
}

#beneficios .box-content-beneficios{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

#beneficios .box-content-beneficios p:not(:last-of-type){
    margin-bottom: 15px;
}

#beneficios .content-beneficios{
    /* position: absolute; */
    top: 0;
    width: 100%;
    transition: .4s;

    padding: 40px;
    background-color: var(--lightGray);
    border-radius: 20px;
}

#beneficios .content-beneficios.active{
    opacity: 1;
    transform: translateY(0);
}

#beneficios .content-beneficios:not(.active){
    opacity: 0;
    transform: translateY(30px);
    position: absolute;
}

footer .logo-rodape{
    width: 120px;
    filter: invert(1);
}

.modal-body{
    padding: 30px;
}

.modal-body h2{
    font-size: 36px;
    text-align: center;
}

.btn-whats{
    padding: 16px;
    background-image: linear-gradient(45deg, #25d366, #0bff65, #25d366, #0bff65) !important;
    background-size: 400% 200% !important;
    transition: all .8s !important;
    border: none;
    text-transform: uppercase;
    font-weight: bold;

    box-shadow: 0px 3.435px 2.748px 0px 
    #25d3661a, 0px 8.687px 6.95px 0px 
    #25d36624, 0px 17.721px 14.177px 0px 
    #25d3662b, 0px 36.502px 29.201px 0px 
    #25d36636, 0px 100px 80px 0px 
    #25d3664f;
}

.btn-whats:hover{
    animation: 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) .3s infinite normal none running movimento !important;
    background-image: linear-gradient(45deg, #25d366, #0bff65, #25d366, #0bff65) !important;
    background-size: 400% 200% !important;
}

/* Particularidades somente desktop */
@media(min-width:768px){
    .scroll-bottom{
        transform: translate(0, 30px);
        opacity: 0;
        filter: blur(6px);
        transition: .3s;
    }
    
    .ativo{
        transform: translate(0, 0) !important;
        opacity: 1 !important;
        filter: blur(0) !important;
        transition: .3s !important;
    }
}

/* Particularidades somente mobile */
@media(max-width:767px){
    .btn{
        font-size: 4.5vw;
    }

    header,section{
        padding-left: 10px;
        padding-right: 10px;
    }
    
    header{
        padding-top: 40px;
        padding-bottom: 0px;
    }

    h2{
        font-size: 9.5vw;
    }

    .lead{
        font-size: 4.5vw;
    }

    header::after{
         display: none !important;
    }

    header .logo{
        width: 250px;
    }

    header h1{
        font-size: 11vw;
    }

    header h2{
        font-size: 4.2vw;
    }

    header .potes-artivita{
        margin-top: 50px;
        margin-bottom: -40px;
    }

    #sobre .lista-dores-wrapper{
        margin-top: 30px;
        padding: 32px;
    }

    #sobre .lista-dores .item-dores::before{
        margin-right: 10px;
        width:10px;
        height:10px;
    }

    #sobre .lista-dores .item-dores{
        font-size:4.5vw;
    }

    #image-section{
        padding-top: 200px;
        padding-bottom: 200px;
    }

    #image-section h2{
        font-size: 11vw;
    }

    #beneficios .lista-beneficios{
        flex-direction: row;
        flex-wrap: nowrap;
    }

    #beneficios .item-beneficios{
        padding:20px;
        flex-grow: 1;
    }

    #beneficios .item-beneficios .ico-beneficios{
        width: 40px;
    }

    #beneficios .item-beneficios .descricao{
        display:none;
    }

    #beneficios .box-content-beneficios{
        margin-top: 20px;
    }

    #beneficios .content-beneficios{
        padding-left: 20px;
        padding-right: 20px;
    }

    #beneficios .content-beneficios h2{
        font-size: 7vw;
    }

    .modal-body h2{
        font-size: 6vw;
    }
}


/* Keyframe para animação do background dos botões ao passar o mouse  */
@keyframes movimento{
    0% {
    background-position: 0 0;
}

100% {
    background-position: 100% 0;
}
}