
@import url('style.css');

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid var(--BorderColor);

    & img {
        width: 170px;
    }


    & nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        & button {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            box-sizing: border-box;
            padding: 10px;
            gap: 4px;
            border: 1px solid var(--BorderColor);
            background-color: transparent;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.4s;


            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                color: var(--TextColor);
            }
        }

        & button:hover {
            background-color: var(--HoverColor);
        }

        & .button-selected {
            border-radius: 100px;
            border: 1px solid var(--AzulEletrico);

            & p {
                color: var(--AzulEletrico);
            }

            & .material-symbols-outlined {
                color: var(--AzulEletrico);
            }
        }
    }

    & button {
        display: none;
    }
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;

    & .fab-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 50px;
        bottom: 50px;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: 1px solid var(--BorderColor);
        background-color: var(--HighlightBackground);
        transition: 0.4s;
        cursor: pointer;

        & .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
            color: var(--AzulEletrico);
        }
    }

    .fab-button:hover {
        background-color: var(--HoverColor);
    }

    .fab-button-hidden {
        display: none;
    }
}

.start-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-sizing: border-box;
    padding: 0px 15%;
    width: 100%;
    height: 80dvh;

    & .start-img {
        flex: 1;
        width: 600px;
        height: 353px;
        background-image: var(--ImgDevices);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    & .start-texts {
        flex: 1;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        gap: 4px;

        & h1 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 80px;
            color: var(--AzulEletrico);

            & span {
                font-family: "Poppins", sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 40px;
                color: #183C99;
            }
        }

        & p {
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 20px;
            color: var(--TextColor);

            &:nth-last-child(1) {
                font-weight: 800;
            }
        }
    }
}

.solutions-section {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 40px 15%;
    width: 100%;
    height: 80dvh;
    gap: 40px;
    background: var(--HighlightBackground);
    border-top: 1px solid var(--BorderColor);
    border-bottom: 1px solid var(--BorderColor);

    & .solutions-header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;

        & nav {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding: 10px 10px;
            gap: 10px;
            width: 100%;

            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
                padding: 10px 10px;
                gap: 4px;
                background: none;
                border: 1px solid var(--BorderColor);
                border-radius: 10px;
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 14px;
                color: var(--TextColor);
                transition: 0.4s;
                cursor: pointer;
            }

            & button:hover {
                background-color: var(--colorHover);
            }

            & .button-selected {
                border-radius: 100px;
                color: var(--AzulEletrico);
                border: 1px solid var(--AzulEletrico);
            }

        }

        & .solutions-title {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: 100%;

            & h2 {
                font-family: "Poppins", sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 28px;
                color: var(--TextColor);
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 300;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }
        }
    }

    & .selected-selection {
        display: grid;
        grid-template-columns: repeat(3, 300px);
        column-gap: 20px;
        row-gap: 20px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;

        & .card {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-sizing: border-box;
            padding: 10px;
            width: 300px;
            height: 200px;
            border-radius: 20px;
            background-color: var(--BorderColor);

            & .card-header {
                display: flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
                padding: 0px 10px 10px 0px;
                position: absolute;
                top: 0px;
                left: 0px;
                width: 80px;
                height: 80px;
                border-radius: 0px 0px 20px 0px;
                background-color: var(--HighlightBackground);

                & .card-header-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 100%;
                    height: 100%;
                    border-radius: 20px;
                    border: 1px solid var(--AzulEletrico);

                    & .material-symbols-outlined {
                        font-size: 30px;
                        color: var(--AzulEletrico);
                    }
                }

                & ::before,
                ::after {
                    position: absolute;
                    content: "";
                    width: 24px;
                    height: 24px;
                    border-radius: 20px 0px 0px 0px;
                    background-color: transparent;
                    box-shadow: -7px -7px var(--HighlightBackground);
                }

                & ::before {
                    top: 80px;
                    left: 0px;
                }

                & ::after {
                    top: 0px;
                    left: 80px;
                }
            }

            & .card-main {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                width: 100%;
                height: 100%;

                & .card-main-title {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    top: 0px;
                    left: 80px;
                    height: 50px;

                    & h3 {
                        font-family: "Poppins", sans-serif;
                        font-weight: 700;
                        font-style: normal;
                        font-size: 18px;
                        color: var(--TextColor);
                    }
                }

                & .card-main-content {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    top: 80px;

                    & p {
                        top: 80px;
                        font-family: "Poppins", sans-serif;
                        font-weight: 400;
                        font-style: normal;
                        font-size: 12px;
                        color: var(--TextColor);
                    }
                }
            }
        }

        & .to-hide {
            display: none;
        }
    }
}

.projects-section {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0px 15%;
    width: 100%;
    height: 80dvh;
    gap: 40px;

    & .projects-header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        & h2 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 28px;
            color: var(--TextColor);
        }

        & p {
            font-family: "Poppins", sans-serif;
            font-weight: 300;
            font-style: normal;
            font-size: 15px;
            color: var(--TextColor);
        }
    }

    & .projects-main {
        display: flex;
        align-items: end;
        justify-content: start;
        box-sizing: border-box;
        padding: 4%;
        width: 100%;
        height: 80dvh;
        border-radius: 20px;
        background-repeat: no-repeat;
        background-size: cover;

        & .card-projects {
            display: flex;
            align-items: start;
            justify-content: start;
            flex-direction: column;
            box-sizing: border-box;
            padding: 20px;
            gap: 10px;
            width: 450px;
            border: 1px solid var(--BorderColor);
            border-radius: 20px;
            background-color: var(--HighlightBackgroundTransparent);
            backdrop-filter: blur(2px);

            & .card-projects-header {
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: row;
                gap: 10px;
                width: 100%;

                & .logo-project {
                    width: 54px;
                    height: 54px;
                    background-image: url("/img/svg/FatorR.svg");
                    background-repeat: no-repeat;
                    background-size: cover;
                }

                .title-project {
                    display: flex;
                    align-items: start;
                    justify-content: center;
                    flex-direction: column;

                    & h3 {
                        font-family: "Poppins", sans-serif;
                        font-weight: 700;
                        font-style: normal;
                        font-size: 18px;
                        color: var(--TextColor);
                    }

                    & ul {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-direction: row;
                        list-style: none;
                        gap: 2px;

                        & li {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            flex-direction: row;
                            gap: 2px;
                            color: var(--TextColor);

                            & .material-symbols-outlined {
                                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 20;
                                color: var(--TextColor);
                            }

                            & p {
                                font-family: "Poppins", sans-serif;
                                font-weight: 400;
                                font-style: normal;
                                font-size: 12px;
                                color: var(--TextColor);
                            }
                        }
                    }
                }
            }

            & .card-projects-main {
                display: flex;
                align-items: center;
                justify-content: center;

                & p {
                    font-family: "Poppins", sans-serif;
                    font-weight: 400;
                    font-style: normal;
                    font-size: 12px;
                    color: var(--TextColor);
                }
            }

            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
                padding: 10px 20px;
                gap: 4px;
                border: 1px solid var(--BorderColor);
                border-radius: 10px;
                background: transparent;
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 14px;
                color: var(--AzulEletrico);
                transition: 0.4s;
                cursor: pointer;
            }

            & button:hover {
                background-color: var(--HoverColor);
            }
        }
    }

    & nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        height: 100px;

        & button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--BorderColor);
            background-color: transparent;
            transition: 0.4s;
            cursor: pointer;

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
                color: var(--AzulEletrico);
            }
        }

        & button:hover {
            background-color: var(--HoverColor);
        }

        & .application-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            padding: 8px;
            gap: 4px;
            border-radius: 50px;
            border: 1px solid var(--BorderColor);
            background-color: var(--HighlightBackground);

            & .application-logo {
                width: 40px;
                height: 40px;
                border: 1px solid var(--BorderColor);
                border-radius: 100%;
                cursor: pointer;
                filter: opacity(0.5);
            }

            & .application-selected {
                width: 50px;
                height: 50px;
                filter: opacity(1);
            }

        }
    }

}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 40px 15%;
    width: 100%;
    height: auto;
    gap: 40px;
    background: var(--HighlightBackground);
    border-top: 1px solid var(--BorderColor);
    border-bottom: 1px solid var(--BorderColor);

    & .contact-header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;

        & h2 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 28px;
            color: var(--TextColor);
        }

        & p {
            font-family: "Poppins", sans-serif;
            font-weight: 300;
            font-style: normal;
            font-size: 15px;
            color: var(--TextColor);
        }
    }

    & .contact-main {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;

        & .contact-card {
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-sizing: border-box;
            padding: 30px;
            border-radius: 12px;
            gap: 10px;
            width: 100%;

            & h2 {
                font-family: "Poppins", sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 20px;
                color: var(--TextColor);
            }

            & form {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                width: 100%;
                gap: 10px;

                & .form-group {
                    display: flex;
                    align-items: start;
                    justify-content: center;
                    flex-direction: column;
                    width: 100%;
                    gap: 8px;

                    & .grid-row {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                        gap: 8px;
                        width: 100%;
                    }


                    & input,
                    textarea {
                        font-family: "Poppins", sans-serif;
                        font-weight: 400;
                        font-style: normal;
                        font-size: 12px;
                        color: var(--TextColor);
                        width: 100%;
                        padding: 10px 10px;
                        box-sizing: border-box;
                        border: 1px solid var(--BorderColor);
                        border-radius: 8px;
                        background-color: transparent;
                        transition: border-color 0.3s;
                    }

                    & input:focus,
                    textarea:focus {
                        border-color: var(--AzulEletrico);
                        outline: none;
                    }

                    & textarea {
                        resize: vertical;
                        min-height: 80px;
                    }

                }
            }

            & .submit-btn {
                background-color: transparent;
                color: var(--AzulEletrico);
                border: 1px solid var(--AzulEletrico);
                padding: 12px;
                border-radius: 8px;
                width: 100%;
                font-size: 16px;
                cursor: pointer;
                transition: background-color 0.3s;
            }

            & .submit-btn:hover {
                background-color: var(--colorHover);
            }
        }

        & .no-contact-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-sizing: border-box;
            padding: 30px;
            gap: 15px;
            width: 100%;
            border: 1px solid #ba1a1a;
            border-radius: 20px;
            background-color: var(--HighlightBackground);

            & .icon-alert {
                font-size: 48px;
                color: #ba1a1a;
                font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
            }

            & h3 {
                font-family: "Poppins", sans-serif;
                font-weight: 700;
                font-size: 18px;
                color: var(--TextColor);
                margin: 0;
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-size: 12px;
                color: var(--TextColor);
                text-align: justify;
            }
        }
    }
}

.modal-content {
    display: none;
    align-items: end;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(2px);

    & .modal-navigation {
        display: none;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        width: 90%;
        height: auto;
        border-radius: 20px 20px 0px 0px;
        background-color: var(--PageBackground);
        animation: openModal 0.4s;

        & .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 10px;
            width: 100%;
            height: 50px;
            border-bottom: 1px solid var(--BorderColor);

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                color: var(--TextColor);
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }

            & div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }



            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                box-sizing: border-box;
                padding: 2px;
                border: 1px solid var(--BorderColor);
                background-color: transparent;
                border-radius: 10px;
                cursor: pointer;
            }
        }

        & nav {
            display: grid;
            grid-template-columns: repeat(2, 140px);
            grid-template-rows: repeat(2, 50px);
            align-items: center;
            justify-content: center;
            row-gap: 10px;
            column-gap: 10px;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            padding: 10px;

            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                box-sizing: border-box;
                padding: 10px;
                gap: 4px;
                border: 1px solid var(--BorderColor);
                background-color: transparent;
                border-radius: 10px;
                cursor: pointer;
                transition: 0.4s;


                & p {
                    font-family: "Poppins", sans-serif;
                    font-weight: 400;
                    font-style: normal;
                    font-size: 15px;
                    color: var(--TextColor);
                }

                & .material-symbols-outlined {
                    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                    color: var(--TextColor);
                }
            }

            & button:hover {
                background-color: var(--HoverColor);
            }

            & .button-selected {
                border-radius: 100px;
                border: 1px solid var(--AzulEletrico);

                & p {
                    color: var(--AzulEletrico);
                }

                & .material-symbols-outlined {
                    color: var(--AzulEletrico);
                }
            }
        }
    }

    & .modal-privacy-policy {
        display: none;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        width: 90%;
        height: 70vh;
        border-radius: 20px 20px 0px 0px;
        background-color: var(--PageBackground);
        animation: openModal 0.4s;

        & .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 10px;
            width: 100%;
            height: 50px;
            border-bottom: 1px solid var(--BorderColor);

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                color: var(--TextColor);
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }

            & div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }



            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                box-sizing: border-box;
                padding: 2px;
                border: 1px solid var(--BorderColor);
                background-color: transparent;
                border-radius: 10px;
                cursor: pointer;
            }
        }

        & iframe {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
    }

    & .modal-terms {
        display: none;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        width: 90%;
        height: 70vh;
        border-radius: 20px 20px 0px 0px;
        background-color: var(--PageBackground);
        animation: openModal 0.4s;

        & .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 10px;
            width: 100%;
            height: 50px;
            border-bottom: 1px solid var(--BorderColor);

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                color: var(--TextColor);
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }

            & div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }



            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                box-sizing: border-box;
                padding: 2px;
                border: 1px solid var(--BorderColor);
                background-color: transparent;
                border-radius: 10px;
                cursor: pointer;
            }
        }

        & iframe {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
    }

    & .modal-cookies {
        display: none;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        width: 50%;
        height: 24vh;
        border-radius: 20px 20px 0px 0px;
        background-color: var(--PageBackground);
        animation: openModal 0.4s;

        & .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 10px;
            width: 100%;
            height: 50px;
            border-bottom: 1px solid var(--BorderColor);

            & .material-symbols-outlined {
                font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                color: var(--TextColor);
            }

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);
            }

            & div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                box-sizing: border-box;
                padding: 2px;
                border: 1px solid var(--BorderColor);
                background-color: transparent;
                border-radius: 10px;
                cursor: pointer;
            }
        }

        & .texts {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-sizing: border-box;
            padding: 20px;
            width: 100%;
            height: 100%;

            & p {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--TextColor);

                & span {
                    font-weight: 600;
                    color: var(--AzulEletrico);
                }
            }
        }

        & .options {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            width: 100%;
            height: 100%;
            gap: 20px;

            & a {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                gap: 4px;
                text-decoration: none;
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 15px;
                color: var(--AzulEletrico);

                & .material-symbols-outlined {
                    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                }
            }

            & button {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: row-reverse;
                box-sizing: border-box;
                padding: 10px;
                gap: 4px;
                border: 1px solid var(--BorderColor);
                background-color: var(--HighlightBackground);
                border-radius: 10px;
                cursor: pointer;
                transition: 0.4s;


                & p {
                    font-family: "Poppins", sans-serif;
                    font-weight: 400;
                    font-style: normal;
                    font-size: 15px;
                    color: var(--TextColor);
                }

                & .material-symbols-outlined {
                    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
                    color: var(--TextColor);
                }
            }

            & button:hover {
                background-color: var(--HoverColor);
            }
        }
    }
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    box-sizing: border-box;
    padding: 40px 15%;
    width: 100%;
    gap: 40px;

    & .footer-logo {
        width: 170px;
        height: 24px;
        background: url("/src/img/logomarca.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    & p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        color: var(--TextColor);
    }

    & .legal-information {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        gap: 4px;

        & p:nth-child(1) {
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 14px;
            color: var(--TextColor);
        }

        & a {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            text-decoration: none;
            gap: 2px;

            & .material-symbols-outlined {
                font-size: 20px;
                color: var(--AzulEletrico);
            }

            & p:nth-child(1),
            p:nth-child(2) {
                font-family: "Poppins", sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 12px;
                color: var(--AzulEletrico);
            }
        }
    }
}