.header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    height: 60px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.header .left {
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.header .menu-icon,
.header .logo {
    margin-right: 10px;
    border-radius: 5px;
}
.header .menu-icon {
    font-size: 25px;
    margin-right: 20px;
    cursor: pointer;
}
.header .logo {
    font-size: 16px;
}
.header .name {
    font-size: 24px;
}
.header .right {
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.header .right .icon {
    margin-left: 10px;
    font-size: 30px;
    cursor: pointer;
}
.sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: #fff;
    padding: 0px;
    transform: translateX(-250px);
    transition: transform 0.3s ease;
    z-index: 500; /* Valor alto para prioridade */
    padding-left: 30px;
    padding-top: 80px;
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar .logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    align-content: center;
    padding-left: 40px;
}
.sidebar .links {
    display: flex;
    flex-direction: column;
}
.sidebar .links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    font-size: 18px;
}
.content {
    margin-top: 60px;
    padding: 20px;
}
.modal-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.text-container-pro {
    margin-top: 5px;
    align-items: center;
}
.icon-pro {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.large-image-pro {
    width: 100%;
    max-width: 200px;
    height: auto;
}
.h1-pro {
    display: flex;
    align-items: center;
    font-size: 24px;
}
/* Estilo dos botões do carrossel */
.notes-button {
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    color: white;  
    background: #b80f52; 
    border: #b80f52; 
    border-radius: 5px; 
    padding: 8px; 
    padding-left: 17px; 
    padding-right: 17px;
}
#payment_yes, #payment_not {
            display: none;
        }
.pro-showview {
        display: none;
        }
.yes-pro {
        display: block;
        }
.nopro-showview {
        display: none;
        }
.no-pro {
        display: block;
        }
.input-container {
            position: relative;
            width: 100%;
        }

.note-input {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
        }

.checkbox-container {
            position: absolute;
            right: 8px;
            top: 40%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            gap: 5px;
            background-color: #e9e7e7;
            padding: 5px;
            border-radius: 4px;
        }

.floating-checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #007bff; /* Cor personalizada */
        }

.checkbox-label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
        }
@media (min-width: 601px) {
    .modal-pro {
        flex-direction: row;
    }
    .text-container-pro {
        text-align: justify;
        margin-left: 20px;
    }
    .large-image-pro {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .header .left {
        display: flex;
        align-items: center;
        padding-left: 30px;
    }
    .header .right {
        display: flex;
        align-items: center;
        padding-right: 50px;
    }
}
@media only screen and (max-width:700px){.mobile-hide{display:none!important}}
@media only screen and (max-width:698px){.mobile{display:inline!important}}
@media only screen and (min-width:699px){.desktop-hide{display:none!important}}
@media only screen and (min-width:701px){.desktop{display:inline!important}}