body {
    background: radial-gradient(circle at top, #111 0%, #0b0b0b 60%);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 90px;
}

/* NAVBAR */
.custom-navbar {
    background: linear-gradient(to right, #000000, #111111);
    border-bottom: 2px solid #00ff88;
    padding: 18px 0;
    box-shadow: 0 0 15px rgba(0,255,136,0.2);
}

.logo-thumb {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.6));
}

.brand-text {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-link {
    color: #ccc !important;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #00ff88 !important;
}

/* USER CIRCLE */
.user-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4af37, #b8962e);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* HERO */
.hero-section {
    background: linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #d4af37;
    padding: 60px 20px !important;
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
    margin-top: 3%;
}

.hero-section h1 {
    color: #d4af37;
    font-weight: 700;
}

.hero-section p {
    color: #aaa;
}

/* SEARCH */
.hero-section input {
    background-color: #1c1c1c;
    border: 1px solid #00ff88;
    color: #fff;
}

.hero-section input::placeholder {
    color: #888;
}

.hero-title {
    font-size: 28px;
    color: #d4af37;
}

.hero-subtitle {
    color: #aaa;
    font-size: 15px;
}

/* CARDS */
.review-card {
    background: linear-gradient(145deg, #141414, #101010);
    border: 1px solid #1f1f1f;
    transition: 0.3s ease;
    border-radius: 10px;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.review-card h5 {
    color: #d4af37;
}

.review-card img {
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.review-card li {
    color: #cfcfcf;
}

/* BOTÕES */
.btn-success {
    background: linear-gradient(145deg, #00ff88, #00cc6e);
    border: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(145deg, #00cc6e, #00ff88);
    transform: scale(1.03);
}

/* TÍTULOS */
h2, h3 {
    color: #d4af37;
    font-weight: 700;
}

.badge {
    font-size: 12px;
    padding: 6px 10px;
}

.review-card img {
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.review-card h4,
.review-card h6 {
    color: #d4af37;
}

hr {
    border-color: #333;
}

ul li {
    margin-bottom: 8px;
}

.modelo-box {
    background: #1f1f1f;
    border: 1px solid #d4af37;
    border-radius: 10px;
}

#modeloTexto {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 6px;
    white-space: pre-line;
    color: #fff;
    font-size: 14px;
}

.copiado-msg {
    color: #00ff88;
    font-weight: bold;
    display: none;
}

.active-link {
    color: #d4af37 !important;
    position: relative;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff88;
}

.form-control {
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    border-color: #00ff88;
    box-shadow: none;
}

/* CONTATO */

.contato-box {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid #d4af37;
    border-radius: 10px;
}

.contato-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #dcdcdc; /* cinza claro elegante */
}

.contato-item i {
    color: #00ff88;
    font-size: 18px;
}

.review-card p {
    color: #cfcfcf; /* texto mais suave */
}

.form-label {
    color: #dcdcdc;
}

.form-control {
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: #dcdcdc;
}

.form-control::placeholder {
    color: #888;
}

.alert-custom {
    background: #0f2e1f;
    border: 1px solid #00ff88;
    color: #cfeedd;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        min-height: auto;
    }

    .d-flex {
        flex-direction: column;
    }
}

#loginErrorOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.login-error-box {
    background: #dc3545;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    font-size: 16px;
    animation: slideUp 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#loginSuccessOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.login-success-box {
    background: #198754;
    color: white;
    padding: 22px 35px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    font-size: 16px;
    animation: slideUp 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 120px; /* ajuste para sua navbar */
        align-self: flex-start;
    }
}

/** COOKIES **/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.9rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #198754;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}
.cookie-link {
    cursor: pointer;
    text-decoration: underline;
}

#csrfOverlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}