@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Jersey+10&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pixelify+Sans:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Mono&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

a button {
    width: 100%;
    cursor: pointer;
}

#section-home{
    display: flex;
    justify-content: center;

    padding: 70px 20px;

    background-color: #F7F7FF;

    background: linear-gradient(45deg, #F9F5FF 0%, #F5FCF9 100%);

    .body{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        max-width: 1300px;

        /* background-color: red; */
    }

    .info{
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-direction: column;

        width: 50%;

        /* background-color: blue; */

        h1{
            color: #0C005A;
            font-size: 30pt;
            font-weight: 600;
            text-align: start;
            line-height: 130%;

            width: 100%;

            span{
                background: linear-gradient(90deg, #6B50F4 0%, #35B3A8 100%);

                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        p{
            margin-top: 40px;
            width: 100%;
            
            color: #383838;
            text-align: start;
            line-height: 180%;
        }

        img{
            margin-top: 10px;
            width: fit-content;
        }
    }

    .form{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 50%;
        /* height: 100%; */

        /* background-color: red !important; */

        .content{
            display: flex;
            flex-direction: column;
            gap: 30px;

            width: 80%;
            /* height: 80%; */
            padding: 50px;

            background-color: white;
            /* border-radius: 15px; */

            border: 3px solid transparent;
            border-radius: 15px;
            background:
                linear-gradient(white, white) padding-box,
                /* linear-gradient(45deg, red, blue) border-box; */
                linear-gradient(90deg, #6B50F4 0%, #35B3A8 100%) border-box;

            .input{
                display: flex;
                flex-direction: column;
                /* gap: 5px; */

                label{
                    font-size: 10pt;
                    font-weight: 600;
                }

                input{
                    outline: none;
                    border: solid 1px rgba(0, 0, 0, 0.2);

                    padding: 10px;
                    border-radius: 3px;

                    /* transition: all 0.3s ease; */
                }

                input:focus{
                    outline: solid 1px #7A3FF3;
                }
            }

            .content-btn{
                display: flex;
                flex-direction: column;
                gap: 5px;

                p{
                    font-size: 9pt;

                    a{
                        color: #7A3FF3;
                    }
                }

                button{
                    border: none;
                    outline: none;

                    padding: 15px 10px;

                    color: white;
                    font-weight: 600;
                    background-color: #7A3FF3;
                    border-radius: 5px;

                    cursor: pointer;

                    transition: all 0.3s ease;
                }

                button:hover{
                    background-color: #6e2df0;
                }
            }
        }
    }
}

@media (max-width: 1250px) {
    #section-home{
        .body{
            flex-direction: column;
            gap: 50px;
        
            .info, .form{
                max-width: 500px;
                width: 100%;

                img{
                    width: 100%;
                }
            
                .content{
                    padding: 20px;
                    width: 100%;
                }
            }
        }
    }
}

#section-infos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    padding: 100px 20px;

    .info{
        display: flex;
        flex-direction: column;
        gap: 30px;

        width: 500px;
        
        h1{
            color: #0C005A;
            font-weight: 600;
        }

        p{
            width: 100%;
            
            color: #383838;
            text-align: start;
            line-height: 180%;
        }

        button{
            border: none;
            outline: none;

            padding: 20px 30px;
            width: fit-content;

            color: white;
            font-weight: 600;
            background-color: #7A3FF3;
            border-radius: 5px;

            cursor: pointer;

            transition: all 0.3s ease;
        }

        button:hover{
            background-color: #6e2df0;
        }
    }

    .boxs{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;

        width: 800px;

        div{
            display: flex;
            flex-direction: column;
            gap: 30px;

            width: 350px;
            padding: 20px;

            border: solid 3px #F9F5FF;
            border-radius: 15px;

            i{
                width: fit-content;

                padding: 15px;

                color: #7A3FF3;
                font-size: 25pt;
                background-color: #F9F5FF;
                border-radius: 7px;
            }

            p{
                color: #0C005A;
                font-size: 13pt;
                font-weight: 400;
            }
        }
        
        .transform{
            transform: translateY(50px);
        }
    }
}

@media (max-width: 1275px) {
    #section-infos{
        flex-direction: column;
        gap: 70px;

        .info{
            max-width: 600px;
            width: 100%;
        }
    }
}

@media (max-width: 850px) {
    #section-infos{
        .boxs{
            flex-direction: column;
            flex-wrap: nowrap;

            width: 100%;

            div{
                max-width: 600px;
                width: 100%;
            }

            .transform{
                transform: none;
            }
        }
    }
}

#section-integracoes{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    padding: 100px 20px;

    background: linear-gradient(45deg, #F9F5FF 0%, #F5FCF9 100%);

    > h1{
        width: 100%;
        max-width: 700px;

        color: #0C005A;
        font-weight: 600;
        text-align: center;
    }

    h2{
        color: #7A3FF3;
        font-weight: 600;
        font-size: 13pt;
        text-align: center;
    }

    p{
        color: #383838;
        font-size: 12pt;
        text-align: center;
        line-height: 180%;
    }

    .marcas{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 50px;

        width: 100%;
        max-width: 1200px;
        padding: 30px;

        background-color: white;
        border-radius: 30px;
        border: solid 2px #DFD1FC;

        h1{
            padding: 10px 30px;

            color: #7A3FF3;
            font-size: 14pt;
            font-weight: 600;
            text-align: center;
            border-radius: 100px;
            background-color: #F2ECFE;
        }

        div{
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
    }

    button{
        border: none;
        outline: none;

        margin-top: 50px;
        padding: 20px 30px;
        width: fit-content;

        color: white;
        font-size: 10pt;
        font-weight: 500;
        text-align: center;
        background-color: #7A3FF3;
        border-radius: 5px;

        cursor: pointer;

        transition: all 0.3s ease;
    }

    button:hover{
        background-color: #6e2df0;
    }
}

#section-solucoes{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;

    padding: 100px 20px;

    background: linear-gradient(45deg, #F9F5FF 0%, #F5FCF9 100%);

    h1{
        width: 100%;
        max-width: 700px;

        color: #0C005A;
        font-weight: 600;
        text-align: center;
    }

    .body{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;

        width: 100%;

        img{
            max-width: 500px;
            width: 100%;
            height: fit-content;
        }

        .solucoes-video{
            width: 100%;
            max-width: 360px;
            height: clamp(437px, 69vh, 874px);
            border-radius: 12px;
            object-fit: cover;
            display: block;
        }

        .list{
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;

            width: 100%;
            max-width: 700px;

            div{
                display: flex;
                align-items: center;
                gap: 20px;

                padding: 30px 0px;

                border-bottom: solid 1px #ebebeb;

                p{
                    color: #383838;
                    font-size: 12pt;
                }

                i{
                    padding: 7px;
                    height: fit-content;

                    color: white;
                    font-size: 8pt;
                    background-color: #7A3FF3;
                    border-radius: 50%;
                }
            }

            button{
                border: none;
                outline: none;

                margin-top: 50px;
                padding: 20px 30px;
                width: fit-content;

                color: white;
                font-size: 10pt;
                font-weight: 500;
                text-align: center;
                background-color: #7A3FF3;
                border-radius: 5px;

                cursor: pointer;

                transition: all 0.3s ease;
            }

            button:hover{
                background-color: #6e2df0;
            }
        }
    }
}

#section-lojista{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    padding: 50px 20px;
    /* background-color: red; */

    h2{
        color: #7A3FF3;
        font-weight: 600;
        font-size: 13pt;
    }

    > h1{
        width: 100%;
        max-width: 700px;

        color: #0C005A;
        font-weight: 600;
        text-align: center;
    }

    p{
        width: 100%;
        max-width: 700px;

        color: #383838;
        font-size: 12pt;
        text-align: center;
        line-height: 180%;
    }

    .comentarios{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;

        margin: 30px 0px;

        .comentario{
            width: 100%;
            max-width: 400px;
            padding: 30px;
            
            border: solid 1px rgba(0, 0, 0, 0.2);
            border-radius: 20px;

            .header{
                display: flex;
                align-items: center;
                gap: 30px;

                .img{
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    min-width: 80px;
                    aspect-ratio: 1 / 1;
                    
                    border: solid 1px rgba(0, 0, 0, 0.2);
                    border-radius: 15px;

                    overflow: hidden;

                    img{
                        width: 70%;
                        height: 70%;
                        object-fit: cover;
                    }
                }

                .card-icon{
                    width:70px;
                    height:70px;
                    display:flex;
                    align-items:center;
                    justify-content:center;
                    background:#f5f7ff;
                    border-radius:16px;
                    margin-bottom:15px;
                }
                
                .card-icon i{
                    font-size:30px;
                    color:#5a67ff;
                }

                .user{
                    display: flex;
                    justify-content: center;
                    flex-direction: column;

                    width: 100%;

                    /* background-color: red; */

                    h1{
                        color: #0C005A;
                        font-size: 16pt;
                        font-weight: 600;
                    }

                    p{
                        font-size: 11pt;
                        text-align: start;
                    }
                }
            }

            .range{
                display: flex;
                align-items: center;
                justify-content: center;

                width: 100%;
                height: 1px;
                margin: 30px 0px;

                background-color: rgba(0, 0, 0, 0.1);

                i{
                    padding: 0px 30px;

                    color: rgba(0, 0, 0, 0.2);
                    font-size: 25pt;
                    background-color: white;
                }
            }

            > p{
                text-align: start;
            }
        }
    }

    button{
        border: none;
        outline: none;

        padding: 20px 30px;
        width: fit-content;

        color: white;
        font-weight: 600;
        background-color: #7A3FF3;
        border-radius: 5px;

        cursor: pointer;

        transition: all 0.3s ease;
    }

    button:hover{
        background-color: #6e2df0;
    }
}

#section-banner{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 20px;

    .body{
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        max-width: 1300px;
        padding: 50px;

        background-color: #7A3FF3;
        border-radius: 30px;

        overflow: hidden;

        .content{
            display: flex;
            flex-direction: column;
            gap: 30px;

            width: 50%;

            h1{
                color: white;
                font-size: 30pt;
                font-weight: 500;
            }

            p{
                color: white;
            }

            p:nth-child(1){
                margin-top: 50px;
                /* color: red; */
            }

            button{
                border: none;
                outline: none;

                padding: 20px 30px;
                width: fit-content;

                color: #7A3FF3;
                font-size: 10pt;
                font-weight: 600;
                text-align: center;
                background-color: white;
                border-radius: 5px;

                cursor: pointer;

                transition: all 0.3s ease;
            }

            button:hover{
                color: white;
                background-color: #6e2df0;
            }
        }

        img{
            position: absolute;
            right: 0px;
            bottom: 0px;
            height: 125%;
        }
    }
}

@media (max-width: 1150px) {
    #section-banner{
        .body{
            flex-direction: column;
            /* padding: 10px !important; */

            .content{
                width: 100%;
            }
        
            img{
                position: relative;
            }
        }
    }
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 50px 20px;

    /* background-color: red; */

    p{
        color: rgba(0, 0, 0, 0.5);
        font-size: 10pt;
    }
}

#section-video-cta{
    background: #0f172a;
    padding: 16px 20px;
}

.video-cta-bar{
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: #e5e7eb;
}

.video-cta-bar p{
    font-size: 1rem;
    font-weight: 500;
}

.btn-video-cta{
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-video-cta:hover{
    background: #ea580c;
}

@media (max-width: 768px) {
    .video-cta-bar{
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .video-cta-bar p{
        font-size: 0.9rem;
    }

    .btn-video-cta{
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }
}