:root{
    --primary: #336600; 
    --secondary: #99cc66;
    --light: #f5f5f5;
    --dark: #14141f;
    --yellow: #ffcc33;
    --orange: #ff9900;
    --grem: #907c46;
}
/*======================= area de sidebar===============*/
.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: var(--primary);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1;
    text-transform: none;
    text-decoration: none;
    list-style: none;
}

.sidebar-content {
    padding: 10px;
    text-align: center;
}

.sidebar-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
}

.sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.sidebar-description {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}

.sidebar-packages {
    margin-top: 5px;
}

.sidebar-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 11px;
    color: #fff;
    margin-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.sidebar-list li {
    margin-bottom: 20px;
    position: relative;
    width: 45%;
}

.package-image {
    position: relative;
    text-align: center;
    overflow: hidden;
    justify-content: space-between;
    margin: 15px 0;
}

.package-image img {
    width: 60%;
    height: 100px;
    border-radius: 5px;
}

.package-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 14px;
}

.sidebar-toggle-btn {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3cb371;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.sidebar-toggle-btn .fa {
    font-size: 20px;
}

.rotating-image {
    display: block;
    margin: 20px auto;
    width: 100px;
    height: 100px;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .sidebar {
        display: none !important;
    }
    .sidebar-toggle-btn {
        display: none !important;
    }
}