body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffff;
    color: #4D49FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #FFF; 
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.menu.active {
    width: 250px;
}

.menu a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 15px; 
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #4D49FF; 
}

.menu a:hover {
    background-color: #4D49FF; 
    padding-left: 30px; 
}

.menu .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #FFF;
    color: #4D49FF;
    padding: 10px 15px;
    border: none;
    position: absolute; 
    top: 10px; 
    left: 25px; 
}

.openbtn:hover {
    background-color: #4D49FF;
}

.menu-content {
    padding: 20px;
}

.imagemlogo {
    position: absolute;
    top: 20px;
    right: 80px;
    transform: translate(50%, 0);
}

.container {
    background-color: #FFFF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    color: #ffffff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #dadadd86;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.overlay.active {
    opacity: 1;
    z-index: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: -1;
}

.imagemlogo {
    position: absolute;
    top: 20px;
    right: 80px;
    transform: translate(50%, 0);
}

.input-pesquisar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid #6B6A81;
    border-radius: 8px;
    padding: 10px;
    width: 300px;
    margin-top: 90px;
}

.input-pesquisar input[type="text"] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #272727;
    padding-left: 30px;
}

.input-pesquisar i {
    color: #4D49FF;
    font-size: 20px;
    position: absolute;
}

.input-pesquisar .bi-search {
    left: 10px;
}

.input-pesquisar .bi-box-seam {
    right: 10px;
}

.title-main {
    margin-top: 150px;
    font-size: 24px;
    margin-bottom: 20px;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-page {
    display: none;
    width: 100%;
}

.card-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    width: 100%;
}

.card {
    background-color: transparent; 
    border: 2px solid #FFAB2E;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    color: #000; 
}

.card.square {
    width: 30%;
    height: 100px;
}

.card.rectangle {
    width: 60%;
    height: 100px;
}

.card-text {
    font-weight: bold;
    font-size: 10px
}

.card-text1 {
    margin-top: 2px;
    font-size: 10px
}

.pagination {
    display: flex;
    align-items: center;
    margin: 20px;
}

.pagination button {
    background-color: #4D49FF;
    border: none;
    color: #FFF;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 5px;
}

.pagination .page-number {
    font-size: 18px;
    font-weight: bold;
}

.footer {
    position: absolute;
    bottom: 20px;
}

.botaoRegistrar{
    width: 100%;
    padding: 10px;
    background-color: #4D49FF;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.botaoRegistrar:hover{
    background-color: #5656ff;
    transform: scale(1.1);
}

a {
    text-decoration: none;
}
