html, body {
    overscroll-behavior: none;      /* desativa overscroll no iOS e outros navegadores */
    overflow: hidden;               /* bloqueia scroll no body */
    height: 100%;
    width: 100%;
  }
  
  /* Essa classe deve estar no container que pode scrollar */
/*   .scroll-container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; 
    height: 100%;
  } 
  */

body {
    margin: 0;
    padding: 0;
    background-color: white;
}


.root {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logoMarca {
    width: 100%;
    height: 180px;
    margin-bottom: 0px;
    margin: 0px;
    padding: 0px;

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

    color: #000;
}

/*  */

.swal-button--desbloquear {
    background-color: green;
}

.swal-button--bloequer {
    background-color: red;
}

.swal-button--desbloquear:not([disabled]):hover {
    background-color: green;
    box-shadow: 1px 2px #888888;
}

.swal-button--bloequer:not([disabled]):hover {
    background-color: red;
    box-shadow: 1px 2px #888888;
}
/* ----------------------------------------- */
.navbar{
    height: 50px;
    padding: 12px;
    background-color:#000000;
}
/* ----------------------------------------- */

.box-conteiner {
    width: auto;
    height: auto;
    overflow: hidden;

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

    background: rgba(250, 250, 250, 0.5);
    border-radius: 10px 10px 10px 10px;
}

.apps {
    width: 100%;
    margin-top: 30px;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*  */
.popup {
    box-sizing: border-box;
    position: fixed;
    width: min(400px, 90vw);
    height: auto;
    left: 50%;
    top: calc(50vh - 300px);
    z-index: 50;

    padding: 10px;
    /* background-color: white; */
    /* border-radius: 8px; */
    /* box-shadow: 0px 5px 15px -5px #0000003c; */
}

@media (max-width: 900px) {
    .popup {
        left: calc(50% - 50%);
    }
}

html[data-theme='dark'] .popup-content {
    background-color: rgb(41, 45, 62);
    color: #fff;
    border: 1px solid #9a9595;
}

html[data-theme='light'] .popup-content {
    background-color: #fff;
    color: #000;
    border: 1px solid #d7d7d7;
}

html[data-theme='dark'] .popup-arrow>svg {
    color: rgb(41, 45, 62);
    stroke-width: 2px;
    stroke: #9a9595;
    stroke-dasharray: 30px;
    stroke-dashoffset: -54px;
}

html[data-theme='light'] .popup-arrow>svg {
    color: #fff;
    stroke-width: 2px;
    stroke: #d7d7d7;
    stroke-dasharray: 30px;
    stroke-dashoffset: -54px;
}

.buttonClose {
    cursor: pointer;
    font-size: 20px;
}

/*  */
.pagination-bar {
    padding: 10px 10px 0px 0px;
    margin: 0px;
}

/* ---------------------------------------------------------------------------- */

.drive-wrapper {
    position: relative;
    float: left;
    width: 100%;
    padding: 10px;
    background: #d1d1d1;
    overflow: hidden;
}

.drive-wrapper .drive-item {
    position: relative;
    float: left;
    width: 245.9px;
    padding: 15px;
    margin: 10px;
    background: white;
    overflow: hidden;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

@media screen and (max-width: 800px) {
    .drive-wrapper .drive-item {
        width: calc(100% - 10px);
        margin: 5px;
    }
}

.drive-wrapper .drive-item-inner {
    position: relative;
    float: left;
    width: 100%;
    height: 150px;
    margin: 5px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.drive-wrapper .drive-item-inner img {
    width: 90%;
    background: white;
    overflow: hidden
}

.drive-wrapper .drive-item-footer {
    position: relative;
    float: left;
    width: 100%;

    display: flex;
    justify-content: center;

    border-top: 1px solid #cecccc;
}

.drive-wrapper .drive-item-footer a {
    position: relative;
    float: left;
    margin: 0px 10px;
}


.module {
    border-bottom-width: 2px;
    background: #fff;
    margin-bottom: 30px;
    position: relative;
    border-radius: 4px;
    background-clip: padding-box;
}

.module .module-footer {
    background: #fff;
    border-top: 1px solid #f3f3f7;
    padding: 15px;
}

.module .module-footer a {
    color: #9499a3;
}

/* ------------------------------------------------------------ */

.card {
    background-color: #f1f1f1;
    width: 600px;
    height: 430px;

    box-sizing: border-box;
    border-radius: 5px;
    top: 20px;
    left: 50%;
    margin-left: -300px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);

    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .card {
        width: 100%;
        left: 0px;
        margin-left: 0px;
    }
}

.card span {
    position: relative;
    float: left;
    width: auto;
    padding: 10px;
}

.card ul {
    position: relative;
    float: left;
    width: auto;
    margin: 0px;
    padding: 0px;
}

.card ul li {
    position: relative;
    float: left;
    width: 100%;
    list-style-type: none;
}

/* ------------------------------------------------------------ */

.box-conteiner-div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.box-conteiner-div .box {
    width: 400px;
    margin: 50px 10px;
}

.box-conteiner-div .box-m2 {
    width: calc(100% - 340px);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: primary  ;
}

.box-conteiner-div .box-m3 {
    width: 100%;
    padding: 10px;
    margin: 20px 0px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: primary;
}

.box-conteiner-div .box-m4 {
    width: calc(500px);
    padding: 10px;
    margin: 20px 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: primary;
}

@media screen and (max-width: 600px) {
    .box-conteiner-div .box-m2 {
        width: 100%;
        margin: 10px 0px;
    }

    .box-conteiner-div .box-m4 {
        width: calc(100% - 20px);
    }
    
}

.box-buttons {
    width: 80%;
    display: block;
    justify-content: right;
}

@media screen and (max-width: 600px) {
    .box-conteiner-div {
        display: block;
        padding: 0px;
    }

    .box-conteiner-div .box {
        width: 100%;
        margin: 0px;
        padding: 10px;
        
    }

    .box-buttons {
        width: 100%;
    }
}

.box-conteiner-div ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: left;
}

.box-conteiner-div ul li{
    width: 25px;
    margin: 0px 10px;
    text-align: center;
}

.box-conteiner-div ul li a{
    cursor: pointer;
}

/*  */

.box-perfil {
    width: 330px;
    height: 345px;
    overflow: hidden;
    margin: 0px 5px 0px 0px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: primary;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
    .box-perfil {
        width: 100%;
        margin: 0px;
    }
}

.box-perfil img {
    width: 180px;
    height: 180px;
}

.box-perfil .title {
    width: calc(100% - 20px);
    padding: 10px;
    text-align: center;
    margin-top: -50px;
    font-size: 20px;
    border-top: 1px solid #bdbec0;
}

.profile {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.profile img {
    width: 280px;
}

/*  */

.modal {
    display: block;
    position: absolute;
    z-index: 100;
    padding-top: 100px;
    left: 250px;
    top: 0;
    width: calc(100% - 250px);
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal2 {
    display: block;
    position: absolute;
    z-index: 100;
    padding-top: 100px;
    left: 0px;
    top: 0;
    width: calc(100% - 0px);
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
}

.modal-title{
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #d8d4d4;
}

.modal-body{
    width: 100%;
    padding: 10px;

    display: flex;
    justify-content: center;
}

.modal-footer{
    width: 100%;
}

@media screen and (max-width: 900px) {
    .modal{
        width: 100%;
        left: 0;
        padding: 100px 50px;
    }
    .modal2{
        width: 100%;
        left: 0;
    }
    .modal-content {
        width: calc(100% - 20px);
    }
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

/*  */

.Cabeisario{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 150px;
    border-bottom: 1px solid #888888;
    margin-bottom: 10px;
    overflow: hidden;
}

.Cabeisario .logomarca {
    width: 60%;
    height: auto;
    margin: 0px;
}

@media screen and (max-width: 600px) {
    .Cabeisario .logomarca {
        width: 80%;
    }
}

.boxCorpo {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 2px black;    
}

.boxConteiner{
    width: 900px;
    height: auto;
    min-height: 300px;
    overflow: hidden;
    padding: 10px;
    /* background-color: white; */
    /* box-shadow: 1px 1px 2px black; */
}

.boxConteiner .box {
    position: relative;
    float: left;
    width: 30%;
    padding: 5px;
    border: 1px solid #000;

    text-align: center;
}

@media screen and (max-width: 600px) {
    .boxConteiner .box {
        width: 100%;
        margin: 5px 0px;
    }
}


.box-info {
    position: relative;
    padding: 20px;
    color: rgb(0, 0, 0);
    z-index: 1; /* Garante que o conteúdo estará acima da imagem */
  }
  
  .box-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('');
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Define a opacidade apenas da imagem de fundo */
    z-index: -1; /* Coloca a imagem atrás do conteúdo */
  }
  
  
