:root {
    --vv-primary: #4b6cb7;
    --vv-secondary: #182848;
    --vv-bg: #f3f4f6;
}

/* Base */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--vv-bg);
    color: #1f2933;
}

/* Navbar */

.navbar {
    padding-top: 0.50rem;
    padding-bottom: 0.50rem;
    background-color: #ffffff !important;
}

.navbar-brand {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* LOGO DA NAVBAR – AUMENTADA */
.navbar-brand .navbar-logo {
    height: 100px;   /* tamanho maior */
    width: auto;
    display: block;
}

/* links */

.navbar .nav-link {
    font-weight: 500;
    color: #4b5563;
}

.navbar .nav-link:hover {
    color: #111827;
}

.navbar .btn-primary {
    border-radius: 999px;
    padding-inline: 1.5rem;
}

/* Hero */

.hero-section {
    background: linear-gradient(135deg, var(--vv-primary), var(--vv-secondary));
    border-radius: 1.75rem;
    padding: 2.75rem 2.5rem;
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: #22c55e;
}

.hero-section .display-5 {
    letter-spacing: -0.03em;
}

.hero-section .lead {
    color: #e5e7eb;
    max-width: 40rem;
}

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.5rem;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.6);
}

.hero-card h2 {
    font-weight: 600;
}

.hero-card .btn-primary {
    border-radius: 999px;
    font-weight: 600;
}

.hero-card ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.hero-card li {
    margin-bottom: 0.25rem;
}

/* Seções */

.section-header h2 {
    font-weight: 700;
}

.section-header p {
    max-width: 520px;
    margin: 0.5rem auto 0;
}

/* Live */

.live-wrapper {
    border-radius: 1.25rem;
    background: #111827;
    padding: 0.75rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.live-frame {
    border-radius: 0.9rem;
    overflow: hidden;
}

/* Pré-cadastro */

.pre-cadastro-card {
    border-radius: 1.25rem;
}

.pre-cadastro-card .form-label {
    font-weight: 500;
}

.list-check {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.4rem;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-size: 0.85rem;
}


/* Departamentos */

#departamentos .departamento-card {
    border-radius: 1rem;
}

#departamentos img.rounded-circle {
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.8);
}

/* Cards de publicações */

#publicacoes .card {
    border-radius: 1rem;
}

#publicacoes .card-title {
    font-weight: 600;
}

#publicacoes .badge {
    background: #eef2ff;
    color: #4b5563;
}

/* Rodapé */

.footer-main {
    background: linear-gradient(135deg, var(--vv-secondary), #020617);
    color: #e5e7eb;
    padding: 1.5rem 0;
}

/* Responsivo */

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2.25rem 1.5rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    /* logo um pouco menor em telas bem pequenas, se precisar */
    .navbar-brand .navbar-logo {
        height: 75px;
    }
}
