* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: Nunito Sans, sans-serif;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-top {
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    height: 43px;
}

    .main-top p {
        color: #F5821E;
        font-size: 14px;
        font-weight: bold;
    }

    .main-top div {
        height: 26px;
        width: 26px;
        border-radius: 50%;
        background: #008000;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 13px;
    }

.main-header {
    height: 70px;
    background-color: #F5821E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    width: 100%;
}

.main-header__left {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #fff;
}

    .main-header__left nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .main-header__left nav a {
            cursor: pointer;
        }

.main-header__logo img {
    height: 40px;
}

.main-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .main-header__right button {
        height: 50px;
        border: none;
        background: #fff;
        color: #F5821E;
        font-size: 15px;
        border-radius: 5px;
        padding: 12px 24px;
        cursor: pointer;
    }

        .main-header__right button:last-of-type {
            background-color: #bd5100;
            padding: 12px 16px;
            font-size: 18px;
        }

.main-footer {
    background: #373A3C;
    padding: 64px;
    margin-top: auto;
    color: #fff;
}

.main-footer__top {
    display: flex;
    justify-content: space-between;
}

    .main-footer__top img {
        width: 214px;
    }

    .main-footer__top .socials {
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

.main-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

    .main-footer__bottom img {
        width: 214px;
        -o-object-fit: contain;
        object-fit: contain;
        align-self: flex-start;
    }

    .main-footer__bottom h3 {
        margin-bottom: 10px;
    }

    .main-footer__bottom p {
        line-height: 1.6;
        font-size: 14px;
    }

.container {
    max-width: 1200px;
    padding: 64px;
    width: 100%;
    margin: 0 auto;
}

    .container h1 {
        color: #F5821E;
        margin-bottom: 20px;
    }

    .container p {
        line-height: 2;
    }

.main-form {
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

    .main-form.debits {
        max-width: 900px;
    }

    .main-form .tabs {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }

        .main-form .tabs .tab {
            height: 40px;
            background: #212121;
            color: #fff;
            padding: 5px;
            font-weight: bold;
            border-radius: 3px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .main-form .tabs .tab.active {
                background-color: #F5821E;
            }

    .main-form .form-block {
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .main-form .form-block + * {
            margin-top: 15px;
        }

        .main-form .form-block label {
            width: 260px;
            font-size: 15px;
        }

        .main-form .form-block input {
            width: 100%;
            color: #212121;
            border: 1px solid #e0e0e0;
            border-radius: 3px;
            background: #f5f5f5;
            height: 40px;
            padding: 10px;
            font-size: 16px;
        }

        .main-form .form-block.buttons {
            margin-top: 40px;
            display: flex;
            justify-content: flex-end;
        }

    .main-form .fatura {
        font-size: 14px;
        border: 1px solid #e0e0e0;
        padding: 15px;
    }

        .main-form .fatura + * {
            margin-top: 15px;
        }

        .main-form .fatura div {
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .main-form .fatura div > span {
                display: block;
                width: 150px;
                font-weight: bold;
            }

            .main-form .fatura div .btn {
                margin-top: 5px;
            }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 3px;
    color: #fff;
    background-color: #F5821E;
    border: none;
    gap: 5px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .main-top {
        padding: 0 15px;
    }

    .main-header {
        height: 60px;
        padding: 0 15px;
    }

    .main-header__left nav {
        display: none;
    }

    .main-header__right button {
        height: 40px;
        padding: 6px 18px;
    }

    .main-footer__top {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .main-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .main-footer__bottom img {
            align-self: auto;
        }

    .container {
        padding: 40px 16px;
    }
}

@media (max-width: 768px) {
    .main-form {
        padding: 0;
        border-radius: 0;
        border: none;
    }

        .main-form .form-block {
            flex-direction: column;
            gap: 5px;
        }

            .main-form .form-block label {
                width: 100%;
            }

        .main-form .fatura div {
            flex-direction: column;
            text-align: center;
            gap: 0;
        }

            .main-form .fatura div span {
                width: 100%;
            }

            .main-form .fatura div + div {
                margin-top: 15px;
            }
}

@media (max-width: 468px) {
    .main-header__right button {
        display: none;
    }
}


body.no-scroll {
    overflow-y: hidden;
}

.pix-modal {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    overflow-y: auto;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    font-size: 16px !important;
    color: #000;
}

    .pix-modal.active {
        opacity: 1;
        visibility: visible;
    }

.pix-content {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
    font-size: 14px;
}

.pix-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.pix-close img {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.pix-header h2 {
    font-size: 20px !important;
    margin: 0 !important;
}

.pix-body {
    text-align: center;
    padding: 20px;
}

    .pix-body > p {
        margin: 20px 0;
    }

.pix-data {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-image {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pix-image img {
        width: 150px;
    }

.pix-code > div {
    word-break: break-all;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    padding: 5px;
    font-size: 12px;
}

.pix-data button {
    outline: 0;
    border: 0;
    font-size: 14px;
    height: 35px;
    display: inline-block;
    width: 200px;
    border-radius: 5px;
    color: #fff;
    background-color: #0c326f;
    margin-top: 10px;
    cursor: pointer;
}

/* Custom */
.pix-modal .logo-header {
    display: inline-block;
    width: 200px;
    margin-bottom: 20px;
}

.pix-modal .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 0 !important;
}

.pix-modal p {
    font-size: 14px !important;
}

.pix-modal .info p {
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
    color: #222;
    font-weight: 500;
    font-size: 14px;
}

    .pix-modal .info p strong {
        display: block;
        color: #000;
        font-size: 16px;
    }

.pix-modal .logos {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 40px;
    justify-content: space-between;
}

    .pix-modal .logos img {
        height: 50px;
        object-fit: contain;
    }

.pix-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

    .pix-form > div {
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .pix-form label {
        text-align: left;
        display: block;
        width: 100%;
    }

    .pix-form input {
        width: 100%;
        height: 40px;
        padding: 15px;
        outline: 0;
        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        font-family: Roboto, sans-serif;
        font-size: 18px;
    }

        .pix-form input:focus {
            border-color: rgba(0, 0, 0, 0.5);
        }

    .pix-form button {
        border: 0;
        height: 45px;
        margin: 0 auto;
        display: inline-block;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 14px;
        font-family: Roboto, sans-serif;
        background-color: rgba(255, 79, 0, 1);
        color: #fff;
    }

@media (max-width: 768px) {
    .pix-modal {
        width: auto;
    }

    .pix-data {
        flex-direction: column;
    }

        .pix-data img {
            width: 150px;
            margin-bottom: 20px;
        }

    .pix-modal .logos {
        flex-wrap: wrap;
        gap: 10px;
        display: none;
    }

        .pix-modal .logos img {
            height: 30px;
            flex: auto;
        }

    .pix-modal .logo-header {
        display: none;
    }

    .pix-form > div {
        flex-direction: column;
    }
}
