﻿body{
    background-color: transparent !important;
}

.gradient-background {
    background: linear-gradient(359.97deg, #FFFFFF 26.13%, #FFE680 35%, rgba(255,99,26,0.69) 42%, #F8A74A 50%, #FEEE64 58%, #FCF748 66%, #FECE57 74%, #FF851A 82%);
}

@theme {
    --font-inter: Inter, sans-serif;
    --leading-100: 100%;
    --radius-73: 4.563rem;
    --radius-44: 2.75rem;
    --radius-15: 0.9375rem;
    --color-dark: oklch(0.2972 0 0);
    --color-more-dark: oklch(0.2046 0 0);
    --color-amber: oklch(0.8337 0.163969 80.5148);
    --color-gray: oklch(0.8977 0.0156 269.97);
    --color-brown: oklch(0.6511 0.035 42.15);
    --breakpoint-xs: 26.5625rem;
    --height-17-5: 4.375rem;
    --height-12-5: 3.125rem;
    --spacing-2-5: 0.625rem;
    --spacing-3-75: 0.9375rem;
}

@utility scrollbar-hidden {
    &::-webkit-scrollbar {
        display: none;
    }
}

/* CSS genérico para substituir Bootstrap Modal */
/* estado inicial */
/* overlay */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

    /* modal visível */
    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    /* quando o modal estiver aberto */
    .modal.show {
        display: flex;
    }

    .modal.fade .modal-dialog {
        transform: translateY(-30px);
        transition: transform .25s ease;
    }

    .modal.show .modal-dialog {
        transform: translateY(0);
    }

/* dialog */
.modal-dialog {
    width: 95%;
    max-width: 720px;
    margin: auto;
}

/* caixa do modal */
.modal-content {
    background: #16181e;
    border-radius: 20px;
    border: 1px solid #2b3442;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}

    /* header / títulos */
    .modal-content h1,
    .modal-content h2,
    .modal-content h3 {
        text-align: center;
        color: #c7d2fe;
    }

/* labels */
.modal label {
    color: #8fa3c0;
    font-size: 14px;
}

/* inputs */
.modal input.form-control,
.modal select.form-control {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    border: 2px solid #ff6a00;
    background: #1c2433;
    color: white;
    display: block;
    font-size: 14px;
}

/* placeholder */
.modal input::placeholder {
    color: #9ca3af;
}

/* foco */
.modal input:focus {
    outline: none;
    border-color: #ff7c1f;
    box-shadow: 0 0 0 2px rgba(255,106,0,0.25);
}

/* botão padrão */
.modal .btn-purple,
.modal .btn-film,
.modal .btn-primary {
    background: linear-gradient(90deg,#ff7a18,#ff4d00);
    border: none;
    border-radius: 30px;
    padding: 9px 15px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    cursor: pointer;
}

    .modal .btn-purple:hover,
    .modal .btn-film:hover,
    .modal .btn-primary:hover {
        background: linear-gradient(90deg,#ff8c30,#ff5b12);
    }

.modal button.close {
    top: 18px;
    position: absolute;
    right: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    opacity: 1 !important;
    z-index: 9999;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
}

.m-t-10 {
    margin-top: 10px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.modal form {
    width: 100%;
}

/* row bootstrap */
.row {
    display: flex;
    flex-wrap: wrap;
}

    /* colunas dentro da row (qualquer nível) */
    .row [class*="col-"] {
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
    }

    /* form dentro da row ocupa 100% */
    .row > form {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

        /* colunas dentro do form */
        .row > form > [class*="col-"] {
            box-sizing: border-box;
            padding-left: 12px;
            padding-right: 12px;
            width: 100%;
        }

/* breakpoint md */
@media (min-width: 768px) {

    .row .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .row .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* breakpoint sm (Bootstrap = 576px) */
@media (min-width: 576px) {

    .row .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .row .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

.form-group {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 55px auto;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
        max-width: 900px;
    }
}

.modal-dialog {    
    position: relative;
    border: 2px solid #2b2b34 !important;
    border-radius: 21px !important;
}

.modal-assine-via-internet .modal-body, .modal-assine-via-internet .modal-header, .modal-assine-via-internet .modal-footer {
    border-radius: 20px;
}

.titulo-div {
    text-align: center;
    font-weight: bold;
    color: #000;
}

.color-text {
    color: #fff;
}

#btnShowPasswordCurta, #btnShowConfirmaPasswordCurta {
    margin-top: -29px;
    margin-left: 90%;
    cursor: pointer;
}

    #btnShowPasswordCurta, #btnShowConfirmaPasswordCurta {
        color: #ccc;
        margin-right: 10px;
    }

#modal-assine-curtaon-form-senha .modal-content img {
    display: block;
    margin: 0 auto 20px auto;
}

#loaderpagamento .fa,
#loaderpagamento-pagamento .fa {
    color: #ccc;
}


#pix-qrcode-img{
    margin: 0 auto;
}

/*------------------------------
      LOADING
  ------------------------------*/

.loading {
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    /*position: absolute; removido pois ficava no topo do site*/
    position: fixed;
    z-index: 2000000;
}

.spinner {
    margin: 30% auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        background-color: #ff6a1d;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}