@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: unset;
}

body {
    background-color: #001228;
    background-image:  linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(to right, rgba(255, 255, 255, .05) 1px, #001228 1px);
    background-size: 25px 25px;
}

main {
    margin-top: 80px;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

header {
    transition: .3s;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%; 
    padding: 30px;
}

header ul {
    display: flex;
    gap: 30px;
    text-decoration: none;
    list-style: none;
}

header ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    opacity: .6;
}

header ul li a:hover {
    transition: .3s;
    opacity: .8;
}

header ul li a.-active {
    opacity: 1;
}
header ul li a.-active::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    bottom: -3px;
    background-color: #EDB221;
}

.menu-btn {
    display: none;
    transition: .3s;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.menu-btn:hover{
    opacity: .6;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
}

h1 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    color: #001228;
}

p {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: white;
}

b {
    color: #EDB221;
}

.button-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 19px;
    color: white;
    background-color: #EDB221;
    color: #001228;
    font-weight: bold;;
    border-radius: 10px;
    padding: 10px 20px;
}

.button-cta:hover {
    transition: .3s;
    background-color: #d49b09;
}

section {
    width: 1000px;
    margin: 0 auto;
}

.initial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-top: 100px;
    gap: 30px;
    width: 100%;
    padding: 0 30px;
}

.functionalities {
    box-shadow: inset 0px 10px 20px 0px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #F5F5F5;
}

.functionalities .content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    width: 1000px;
    padding: 50px 0;
}

.functionalities .icon{
    margin-left: -5px;
}

.functionalities .subtitle{
    margin-top: 10px;
    margin-bottom: 10px;
}

.functionalities .text{
    color: #001228;
    text-align: left;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.divider {
    height: 60px;
    width: 2px;
    background-color: #F5F5F5;
}

.zap-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid white;
    background-color: #21AC62;
    color: white;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid white;
    background-color: #1f1f1f;
    color: white;
}

.contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 30px 0 30px;
    gap: 20px;
}

.contact > .infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 50px;
}

.contact > .infos > p {
    text-align: left;
}

.contact > .infos > h1 {
    text-align: left;
}


.asks {
    box-shadow: inset 0px 10px 20px 0px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 30px;
    background-color: #F5F5F5;
}

h1.black {
    color: #001228;
    margin-bottom: 20px;
}

.asks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 1000px;
}

.ask-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001228;
    border-radius: 5px 5px 0 0;
    /* border-radius: 10px; */
    color: white;
    padding: 15px 30px;
}

.arrow-icon {
    cursor: pointer;
    user-select: none;
}

.arrow-icon.-rotate {
    transform: rotate(180deg);
}

.response {
    display: none;
    padding: 10px 30px;
    border: 1px solid #001228;
    border-radius: 0 0 5px 5px;
}

.mockups {
    height: 305px
}

footer {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px 0;
    max-width: 1000px;

    > .footer-itens {
        display: flex;
        list-style: none;
        flex-direction: column;
        gap: 10px;
        color: white;
        font-size: 14px;
        
        > li {
            cursor: pointer;

            > a {
                color: white;
            }
        }

        > .title {
            font-size: 16px;
            font-weight: bold;
        }

        > li:hover {
            opacity: 0.8;
        }
    }
}

.faq-title {
    color: white;
    font-weight: 500;
}

.faq-p {
    color: #001228;
    text-align: left;
}

.faq-itens-list {
    margin-left: 20px;
    line-height: 22px;
}

@media screen and (max-width: 1000px) {
    .contact {
        flex-direction: column;
        width: 100%;
    }

    .buttons {
        width: 100%;

        > a {
            width: 100%;

            > .button-cta {
                width: 100%;
            }
        }
    }

    .contact > .infos {
        align-items: center;
        padding-bottom: 20px;
    }
    
    .contact > .infos > h1 {
        text-align: center;
    }

    .contact > .infos > p {
        text-align: center;
    }
}

@media screen and (max-width: 800px) {
    .menu-btn {
        display: block;
    }

    .inf-info-img {
        height: 300px;
    }    

    .navbar {
        transition: .3s;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0px;
        background-color: #001228;
        overflow: hidden;
    }

    .navbar.-open {
        height: 250px;
    }

    .navbar > ul {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 40px;
    }
    
    .initial {
        margin-top: 50px;
    }

    h1 {
        font-size: 34px;
    }
    
    .mockups {
        height: 150px;
    }

    .functionalities > .content {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .functionalities > .content > .box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .functionalities > .content > .box > .subtitle {
        text-align: center;
    }
    
    .functionalities > .content > .box > .text {
        text-align: center;
    }

    .buttons {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .asks-list {
        width: 100%;
    }

    footer {
        width: 100%;
        padding: 50px 30px;
    }
}
@media screen and (max-width: 700px) {

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    
        > .footer-itens {
            display: flex;
            flex-direction: row;

            > .title {
                display: none;
            }
        }
    }
}

@media screen and (max-width: 390px) {

    footer > .footer-itens {
 
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
}