
[data-bs-theme="dark"] p,
[data-bs-theme="dark"] strong,
[data-bs-theme="dark"] li,
[data-bs-theme="dark"] .nav-pills .nav-link
{
    color: whitesmoke;
}

.container-fluid{
    display: flex;
    justify-content: center;
    
}


.sidebar-tabs {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.nav-pills .nav-link {
    color: #555;
    font-weight: 500;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    color: white;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
}

.content-card {
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 70vh;
}

.media-placeholder {
    width: 100%;
    height: 250px;
    /* Altura padrão para desktop */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .media-placeholder {
        height: 180px;
    }
    .star-icon-custom {
        font-size: 1.5em !important;
    }
}

@media (min-width: 991px) and (max-width: 1201px) {
    .star-icon-custom {
        font-size: 1.5em !important;
    }
}

.media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

h2 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.icon-box {
    margin-right: 10px;
}

.btn-star-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

/* Brilho pulsante azul */
.btn-star-glow {
    animation: blue-pulse 2s infinite;
}

@keyframes blue-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.star-icon-custom {
    font-size: 2.5rem;
    /* Grande no Desktop */
    color: #d1d5db !important;
    /* Cinza claro forçado */
    cursor: pointer;
    transition: transform 0.1s, color 0.2s;
    padding: 0 5px;
    /* Espaço para facilitar o toque */
}

.star-icon-custom.active,
.star-icon-custom.hover {
    color: #ffc107 !important;
    /* Amarelo Bootstrap */
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

/* Efeito de clique */
.star-icon-custom:active {
    transform: scale(0.8);
}


/* Efeito de Estrelinhas (Partículas) */
.btn-star-glow::after {
    content: "✦";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d6efd;
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
    text-shadow:
            15px -20px #70a1ff,
            -25px 15px #1e90ff,
            20px 25px #00d2ff,
            -15px -15px #3742fa;
    animation: star-float 3s infinite linear;
}

@keyframes star-float {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: rotate(360deg) scale(1.2);
        opacity: 0;
    }
}