@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font-main:'Work Sans'
}

*{margin: 0;padding: 0;box-sizing: border-box;}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    z-index: 0;
    font-family: var(--font-main);
    font-size: .9em;
    font-weight: 700 !important;
    background-color: hsl(292, 16%, 49%);
}

.container-box{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.box{
    width: 560px;
    background-color: hsl(0, 100%, 100%);
    border-radius: 1rem;
    z-index: 1;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.294);
    display: flex;
    flex-direction: column; 
    height: auto;
    margin-top: 10rem;
}

.bck-pattern{
    display: block;
    width: 100%;
    height: 31%;
    position:absolute;
    top: 0;
    left: 0;
    background-image: url(./assets/images/background-pattern-desktop.svg);
    z-index:0;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq-item{
    margin: 1.1rem auto;
}
.faq-item:nth-child(1){
    margin-top:0 ;
}
button{
    background-color:transparent;
    border:hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-answer{
    display: none;
}

@media screen and (max-width: 590px){
    .bck-pattern{
        background-image: url(./assets/images/background-pattern-mobile.svg);
        background-size: cover;
    }
    .box{
        width:360px;
    }
}


