/* ==========================================================================
   Design System & Variáveis CSS
   ========================================================================== */
:root {
    /* Paleta de Cores UFPR Modernizada */
    --primary-blue: #004488;
    --primary-blue-light: #005bb5;
    --primary-blue-dark: #002e5a;
    --secondary-accent: #f09200;
    /* Dourado UFPR */

    /* Superfícies e Textos */
    --bg-color: #f4f7f9;
    --text-main: #1e293b;
    --text-muted: #475569;
    --white: #ffffff;

    /* Neumorphism/Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 40px -10px rgba(0, 68, 136, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(0, 68, 136, 0.2);

    /* Bordas e Espaçamentos */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Tipografia */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   Resets & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Firefox Scrollbar Customization */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue-light) var(--bg-color);
}

/* ==========================================================================
   Custom Scrollbar (Webkit)
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 91, 181, 0.6); /* Translucent primary-blue-light */
    border-radius: 10px;
    border: 2px solid var(--bg-color); /* Creates padding illusion */
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue-light);
}

ul {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Background Decorativo
   ========================================================================== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 68, 136, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 146, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 181, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ==========================================================================
   Layout Principal (Sidebar + Content)
   ========================================================================== */
.app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: hidden;
}

.sidebar {
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid var(--glass-border);
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 68, 136, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar-header {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.logo-imgs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.title-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.main-wrapper {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.4s ease;
}

.mobile-header {
    display: none;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
}

/* ==========================================================================
   Navegação Lateral
   ========================================================================== */
.sidebar .nav-links {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
    overflow-y: auto;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sidebar .nav-links::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.sidebar .nav-item {
    position: relative;
    /* remove padding to allow block layout */
}

.sidebar .nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 68, 136, 0.05);
}

.sidebar .nav-link.active {
    color: var(--primary-blue-dark);
    background: rgba(0, 68, 136, 0.08);
    font-weight: 700;
}

.sidebar .nav-link i {
    transition: transform 0.3s ease;
}

.sidebar .nav-item.open>.nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Submenu - Accordion */
.sidebar .submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    transition: max-height 0.4s ease;
}

.sidebar .nav-item.open .submenu {
    max-height: 300px;
    /* Suficiente para acomodar os links */
}

.sidebar .submenu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
}

.sidebar .submenu a:hover {
    color: var(--primary-blue);
    background: rgba(0, 68, 136, 0.05);
    transform: translateX(4px);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ==========================================================================
   Conteúdo Principal
   ========================================================================== */
.main-content {
    flex: 1;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
}

/* ==========================================================================
   Seção de Boas Vindas
   ========================================================================== */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.welcome-content {
    flex: 1;
    z-index: 2;
}

.welcome-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-accent);
    border-radius: 2px;
    margin-bottom: 24px;
}

.welcome-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
}

.welcome-visual {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    perspective: 800px;
}

.cubo {
    width: 140px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.5s ease;
    user-select: none;
    -webkit-user-select: none;
}

/* Basic scale removed to focus on face explosion */

.cubo.spinning {
    animation: Spin 10s infinite;
}

.Cubo-Lado {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(0, 46, 90, 0.85);
    /* Azul UFPR Escuro Translúcido */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 68, 136, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.5s ease;
}

.img-ufpr {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    pointer-events: none;
    -webkit-user-drag: none;
}

.Cubo-Lado-frente {
    transform: rotateY(0deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-frente {
    transform: rotateY(0deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

.Cubo-Lado-tras {
    transform: rotateY(180deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-tras {
    transform: rotateY(180deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

.Cubo-Lado-direita {
    transform: rotateY(90deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-direita {
    transform: rotateY(90deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

.Cubo-Lado-esquerda {
    transform: rotateY(-90deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-esquerda {
    transform: rotateY(-90deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

.Cubo-Lado-cima {
    transform: rotateX(90deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-cima {
    transform: rotateX(90deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

.Cubo-Lado-baixo {
    transform: rotateX(-90deg) translateZ(70px);
}
.cubo:hover .Cubo-Lado-baixo {
    transform: rotateX(-90deg) translateZ(120px);
    background: rgba(0, 46, 90, 0.6);
    box-shadow: 0 0 40px var(--primary-blue);
}

@keyframes Spin {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: rotateX(90deg) rotateY(0deg) rotateZ(360deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

/* Original colors behavior adjusted for new glassmorphism */
.Color {
    animation: Color 2s infinite linear;
}

.cor1 {
    background: rgba(115, 157, 213, 0.7) !important;
}

.cor2 {
    background: rgba(252, 0, 0, 0.7) !important;
}

.cor3 {
    background: rgba(255, 238, 0, 0.7) !important;
}

.cor4 {
    background: rgba(21, 255, 0, 0.7) !important;
}

.cor5 {
    background: rgba(0, 225, 255, 0.7) !important;
}

.cor6 {
    background: rgba(0, 47, 255, 0.7) !important;
}

.cor7 {
    background: rgba(212, 0, 255, 0.7) !important;
}

.cor8 {
    background: rgba(255, 0, 170, 0.7) !important;
}

.cor9 {
    background: rgba(255, 0, 106, 0.7) !important;
}

@keyframes Color {
    0% {
        background-color: rgba(0, 0, 255, 0.4);
    }

    25% {
        background-color: rgba(0, 128, 0, 0.4);
    }

    50% {
        background-color: rgba(255, 0, 0, 0.4);
    }

    75% {
        background-color: rgba(255, 255, 0, 0.4);
    }

    100% {
        background-color: rgba(0, 0, 255, 0.4);
    }
}

/* ==========================================================================
   Seção de Notícias
   ========================================================================== */
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 8px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

/* Cartões de Notícias (Gerados dinamicamente) */
.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: rgba(0, 68, 136, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-subtitle {
    font-size: 0.95rem;
    color: var(--secondary-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.news-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
}

.news-content ul {
    margin-top: 8px;
}

.news-content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.news-content li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.news-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.news-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.news-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(0, 68, 136, 0.05);
    border-radius: var(--radius-sm);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.news-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Botões
   ========================================================================== */
.footer-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px 0 rgba(0, 68, 136, 0.39);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 68, 136, 0.23);
    transform: translateY(-2px);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.site-footer {
    background: var(--primary-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-info p {
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-info strong {
    color: var(--white);
    font-size: 1rem;
}

.footer-dev {
    font-size: 0.875rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
}

.footer-old-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-old-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.footer-old-link i {
    font-size: 1rem;
    opacity: 0.85;
}

/* ==========================================================================
   Utilitários e Animações
   ========================================================================== */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 20px 0 40px rgba(0, 0, 0, 0.1);
    }

    .main-wrapper {
        margin-left: 0;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden;
    }

    .mobile-header {
        display: flex;
    }

    .welcome-section {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .accent-line {
        margin: 0 auto 24px;
    }

    .welcome-visual {
        display: flex;
        transform: scale(0.6);
        margin: -40px 0;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
    }

    .footer-dev {
        text-align: center;
        margin-top: 16px;
    }

    /* Definitive Header/Title Wrapping Fix */
    .section-header h2,
    .section-title,
    .comp-title,
    h1, h2, h3, h4 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .section-header {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        padding: 0 !important;
    }

    .container {
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .main-content {
        margin-top: 20px;
        margin-bottom: 40px;
        overflow-x: hidden;
    }

    .legacy-content {
        padding: 24px 16px;
    }

    .glass-panel {
        padding: 20px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Colegiados Robust Mobile Fix */
    .colegiados-card {
        padding: 1.25rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .colegiados-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
    }

    .colegiados-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .site-table-wrapper {
        overflow-x: auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: white;
        margin-top: 1rem;
    }

    .site-table {
        min-width: 600px;
        width: 100%;
    }

    .site-table th,
    .site-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .rep-nome {
        min-width: 140px;
        white-space: normal !important;
    }
}

/* Colegiados card fix in 768px was redundant, now consolidated above */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Legacy Content
   ========================================================================== */
/* Estilos específicos para compatibilidade com o conteúdo legado */
        .legacy-content {
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .legacy-content table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .legacy-content th,
        .legacy-content td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .legacy-content th {
            background-color: #f2f2f2;
        }

        .legacy-content a {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        .legacy-content img {
            max-width: 100%;
            height: auto;
        }

        .legacy-content h1,
        .legacy-content h2,
        .legacy-content h3 {
            color: var(--primary-blue-dark);
            margin-top: 24px;
            margin-bottom: 16px;
        }


/* ==========================================================================
   Administracao
   ========================================================================== */
.admin-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .admin-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-medium);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .admin-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            background: rgba(255, 255, 255, 0.9);
        }
        .admin-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .admin-card-icon {
            font-size: 2rem;
            color: var(--primary-blue);
            background: rgba(14, 69, 126, 0.1);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
        }
        .admin-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue-dark);
            margin: 0;
            line-height: 1.3;
        }
        .admin-card-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }
        .admin-role {
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
        }
        .admin-role-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .admin-role-name {
            font-weight: 500;
            color: var(--text-main);
        }
        .admin-role-teams {
            font-size: 0.85rem;
            color: steelblue;
            margin-top: 0.15rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        .admin-card-footer {
            margin-top: auto;
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .admin-email-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(14, 69, 126, 0.05);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            width: 100%;
            justify-content: center;
        }
        .admin-email-link:hover {
            background: var(--primary-blue);
            color: white;
            text-decoration: none;
        }


/* ==========================================================================
   Docentes
   ========================================================================== */
.titulo {
            margin: 40px 0;
            font-weight: 800;
            color: var(--primary-blue-dark);
            text-align: center;
            font-size: 2.5rem;
        }

        /* --- ESTILO GERAL DO CARD EM GLASSMORPHISM --- */
        .card-docente {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .card-docente::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card-docente:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .card-docente:hover::before {
            transform: scaleX(1);
        }

        /* --- TERÇO SUPERIOR --- */
        .card-header-custom {
            padding: 30px 20px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .foto-prof {
            width: 110px;
            height: 110px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .card-docente:hover .foto-prof {
            transform: scale(1.05);
        }

        .docente-nome {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-blue-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .docente-area-destaque {
            font-size: 0.85rem;
            color: var(--secondary-accent);
            font-weight: 600;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- TERÇO MÉDIO --- */
        .card-body-custom {
            padding: 20px;
            flex-grow: 1;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--text-muted);
        }

        .info-row {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
        }

        .info-row i {
            color: var(--primary-blue);
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* --- TERÇO INFERIOR --- */
        .card-footer-custom {
            padding: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            background: rgba(0, 0, 0, 0.01);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-lattes {
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            background-color: rgba(0, 68, 136, 0.05);
            border: 1px solid transparent;
            color: var(--primary-blue);
            transition: all 0.3s ease;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .btn-lattes:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 68, 136, 0.2);
            text-decoration: none;
        }

        .site-link {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }

        .site-link:hover {
            text-decoration: none;
            color: var(--primary-blue);
        }

        /* Busca */
        .search-input {
            height: 56px;
            border-radius: 100px;
            padding-left: 24px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            font-size: 1rem;
            color: var(--text-main);
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 68, 136, 0.15);
            border-color: var(--primary-blue-light);
            background: var(--white);
        }

        /* Sobrescrita de grid do Bootstrap pro glassmorphism sobressair */
        .row {
            margin-right: -12px;
            margin-left: -12px;
        }

        .col-12,
        .col-md-6,
        .col-lg-4,
        .col-xl-3,
        .col-md-8 {
            padding-right: 12px;
            padding-left: 12px;
        }

/* ==========================================================================
   Colegiados
   ========================================================================== */
.colegiados-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
}

.colegiados-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.colegiados-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    background: rgba(14, 69, 126, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

/* ===== Componente: Tabela (.site-table) ===== */
.site-table-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
}

.site-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.site-table th {
    background-color: rgba(14, 69, 126, 0.05);
    color: var(--primary-blue-dark);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(14, 69, 126, 0.1);
    white-space: nowrap;
}

.site-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    vertical-align: middle;
}

.site-table tbody tr:last-child td {
    border-bottom: none;
}

.site-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Aliases para compatibilidade com Colegiados */
.colegiados-table-wrapper { /* usa .site-table-wrapper */ }
.colegiados-table { /* usa .site-table */ }

.curso-nome {
    font-weight: 600;
    color: var(--primary-blue);
}

.rep-nome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rep-nome i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== DataTables: overrides para .site-table ===== */
.site-table-wrapper .dataTables_wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    padding-bottom: 1rem;
}

.site-table-wrapper .dataTables_length,
.site-table-wrapper .dataTables_filter {
    margin-bottom: 1.25rem;
}

.site-table-wrapper table.dataTable.display tbody tr.odd > .sorting_1,
.site-table-wrapper table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
.site-table-wrapper table.dataTable.display tbody tr.even > .sorting_1,
.site-table-wrapper table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
.site-table-wrapper table.dataTable.display tbody tr.odd,
.site-table-wrapper table.dataTable.display tbody tr.even {
    background-color: transparent;
}

.site-table-wrapper .site-table tbody tr {
    border-bottom: 1px solid rgba(14, 69, 126, 0.1) !important;
    transition: background-color 0.2s;
}

.site-table-wrapper .site-table tbody tr:hover {
    background-color: rgba(14, 69, 126, 0.05) !important;
}

.site-table-wrapper .site-table tbody tr:last-child {
    border-bottom: none !important;
}

.site-table-wrapper .site-table th,
.site-table-wrapper .site-table td {
    border-bottom: none !important;
}

.site-table-wrapper .dataTables_length select,
.site-table-wrapper .dataTables_filter input {
    border: 1px solid rgba(14, 69, 126, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.5rem;
    outline: none;
    background: rgba(255, 255, 255, 0.5);
}

.site-table-wrapper .dataTables_length select:focus,
.site-table-wrapper .dataTables_filter input:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.site-table-wrapper .dataTables_paginate .paginate_button {
    border-radius: var(--radius-sm) !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: var(--text-main) !important;
    transition: all 0.2s;
}

.site-table-wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(14, 69, 126, 0.1) !important;
    color: var(--primary-blue-dark) !important;
    border: 1px solid rgba(14, 69, 126, 0.2) !important;
}

.site-table-wrapper .dataTables_paginate .paginate_button.current,
.site-table-wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-blue) !important;
    color: white !important;
    border: none !important;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Publicacoes
   ========================================================================== */
.pub-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue-dark);
    box-shadow: var(--shadow-soft);
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.pub-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(14, 69, 126, 0.2);
}

.pub-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.pub-title {
    color: var(--primary-blue-dark);
    font-weight: 700;
    border-bottom: 2px solid rgba(14, 69, 126, 0.1);
    padding-bottom: 1rem;
}

.pub-list {
    color: var(--text-main);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.pub-list li {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
}

.pub-list li:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.pub-list li strong {
    color: var(--primary-blue-dark);
}

/* ==========================================================================
   Eventos
   ========================================================================== */
.eventos-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.eventos-tab-btn {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 69, 126, 0.2);
    color: var(--primary-blue-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.eventos-tab-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}
.eventos-tab-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(14, 69, 126, 0.3);
}
.eventos-tab-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}
.eventos-tab-content.active {
    display: block;
}
.evento-card {
    display: block;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.evento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.evento-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
}
.evento-title a {
    color: inherit;
    text-decoration: none;
}
.evento-title a:hover {
    color: var(--primary-blue);
}
.evento-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
}
.eventos-group-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    border-bottom: 2px solid rgba(14, 69, 126, 0.1);
    padding-bottom: 0.5rem;
}
.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 69, 126, 0.1);
    color: var(--primary-blue-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 0.5rem;
}
.cert-link:hover {
    background: rgba(14, 69, 126, 0.2);
    color: var(--primary-blue);
}
@media (max-width: 768px) {
    .eventos-tabs {
        flex-direction: column;
    }
    .evento-card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
}

/* ==========================================================================
   Extensão (Projetos)
   ========================================================================== */
.extensao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.extensao-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.extensao-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
}

.extensao-card-img {
    width: 100%;
    height: 180px;
    background-color: #fff; /* Fallback for transparent images */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.extensao-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.extensao-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.extensao-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.extensao-card-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 2rem;
}

.extensao-card-footer {
    margin-top: auto;
}

.extensao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.extensao-btn:hover {
    background: var(--primary-blue-dark);
    color: white;
}

/* ==========================================================================
   Documentos
   ========================================================================== */
.doc-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.doc-card-alert {
    background: rgba(254, 242, 242, 0.7);
    border-color: rgba(239, 68, 68, 0.2);
}

.doc-card-title {
    color: var(--primary-blue-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(14, 69, 126, 0.1);
}

.doc-card-alert .doc-card-title {
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.doc-list-steps {
    padding-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
}

.doc-list-steps li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.doc-list-bullets {
    padding-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
}

.doc-list-bullets li {
    margin-bottom: 1rem;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    background: rgba(14, 69, 126, 0.05);
    transition: all 0.2s;
}

.doc-link:hover {
    background: rgba(14, 69, 126, 0.15);
    color: var(--primary-blue-dark);
}

/* ==========================================================================
   Aulas (Turmas e Grade)
   ========================================================================== */
.aulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.aulas-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.aulas-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(14, 69, 126, 0.2);
}

.aulas-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(14, 69, 126, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aulas-card-content {
    flex: 1;
}

.aulas-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 0.25rem;
}

.aulas-card-sub {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
}

.aulas-card-footer {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.aulas-card-arrow {
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.aulas-card:hover .aulas-card-arrow {
    transform: translateX(5px);
}
/* ==========================================================================
   Concursos Section Styles
   ========================================================================== */
.contest-detail-section {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contest-detail-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contest-header {
    margin-bottom: 2rem;
}

.contest-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
}

.title-accent {
    width: 80px;
    height: 4px;
    background: var(--secondary-accent);
    border-radius: 2px;
}

.doc-column h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.list-item-link:hover {
    background: var(--white);
    transform: translateX(5px);
    border-color: var(--primary-blue-light);
}

.item-text {
    font-weight: 500;
    color: var(--text-main);
    flex: 1;
}

.item-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    background: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    border-radius: 100px;
    white-space: nowrap;
    margin-left: 1rem;
}

.item-badge.anun {
    background: rgba(240, 146, 0, 0.1);
    color: var(--secondary-accent);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.status-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: rgba(0, 68, 136, 0.08);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status-text {
    font-weight: 600;
    color: var(--text-main);
}

.styled-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.styled-info-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.styled-info-list li i {
    color: #10b981; /* Success green */
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-footer {
    text-align: center;
    padding: 3rem;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
}

.contact-footer p {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: #ffffff !important; /* Force white text visibility */
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 280px;
}

.contact-email i {
    color: #ffffff !important;
}

.contact-email:hover {
    background: var(--primary-blue-dark);
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   Color Variants & Utilities
   ========================================================================== */
.card-accent-emerald { border-top: 4px solid #10b981 !important; }
.card-accent-amber   { border-top: 4px solid #f59e0b !important; background: rgba(245, 158, 11, 0.06) !important; }
.card-accent-rose    { border-top: 4px solid #f43f5e !important; background: rgba(244, 63, 94, 0.06) !important; }
.card-accent-indigo  { border-top: 4px solid #6366f1 !important; }

.glass-card.bg-emerald { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
.glass-card.bg-amber   { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.2); }
.glass-card.bg-rose    { background: rgba(244, 63, 94, 0.1); border-color: rgba(244, 63, 94, 0.2); }

.notice-block {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-blue);
    background: rgba(0, 68, 136, 0.05);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-block i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.notice-block.warning { border-left-color: #f59e0b; background: rgba(245, 158, 11, 0.05); }
.notice-block.warning i { color: #f59e0b; }

.notice-block.danger { border-left-color: #f43f5e; background: rgba(244, 63, 94, 0.05); }
.notice-block.danger i { color: #f43f5e; }

.notice-block.success { border-left-color: #10b981; background: rgba(10, 185, 129, 0.05); }
.notice-block.success i { color: #10b981; }
.notice-block h4 { margin-bottom: 0.25rem; font-size: 1rem; }

/* ==========================================================================
   Expanded Component Library Styles
   ========================================================================== */

/* 1. Stat Cards */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. Timeline */
.custom-timeline {
    position: relative;
    padding-left: 2rem;
}

.custom-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 68, 136, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 68, 136, 0.1);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-accent);
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* 3. Accordions */
.accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: var(--glass-bg);
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(0, 68, 136, 0.03);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1rem;
}

.accordion-content {
    padding: 1.25rem;
    display: none;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.3);
}

/* 4. Hero Section Variants */
.hero-showcase {
    position: relative;
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--primary-blue-dark);
    color: var(--white);
    text-align: center;
}

.hero-showcase .hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 5. Data Tables (Clean) */
.data-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: rgba(0, 68, 136, 0.05);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue-dark);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.data-table tr:last-child td { border-bottom: none; }

/* 6. Tags & Chips */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 68, 136, 0.05);
    color: var(--primary-blue);
    border: 1px solid transparent;
    transition: all 0.2s;
    cursor: default;
}

.chip.interactive:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* 7. Avatar Groups */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar-item:first-child { margin-left: 0; }

/* ==========================================================================
   Phase 3: Advanced Component Library Styles
   ========================================================================== */

/* 1. Interactive Tabs (CSS-only basic state) */
.tab-container {
    margin-bottom: 2rem;
}

.tab-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    padding-bottom: 2px;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all 0.3s;
    border: 1px solid transparent;
    border-bottom: none;
}

.tab-btn.active {
    color: var(--primary-blue);
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: 0 -4px 12px rgba(0, 68, 136, 0.05);
}

.tab-btn:hover:not(.active) {
    color: var(--primary-blue-dark);
    background: rgba(0, 68, 136, 0.03);
}

/* 2. Premium Forms & Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue-dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 68, 136, 0.1);
}

.search-field {
    position: relative;
}

.search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-field .form-input {
    padding-left: 2.75rem;
}

/* 3. Progress Bars */
.progress-container {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    height: 8px;
    background: rgba(0, 68, 136, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 100px;
    transition: width 1s ease-in-out;
}

/* 6. Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-blue); }
.breadcrumb i { font-size: 1rem; opacity: 0.5; }
.breadcrumb span { color: var(--primary-blue-dark); font-weight: 600; }

/* ==========================================================================
   Phase 4: UFPR UI Kit (Bootstrap-inspired Premium Elements)
   ========================================================================== */

/* 1. Extended Button System */
.btn-primary, .btn-secondary, .btn-outline, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-secondary {
    background: var(--secondary-accent);
    color: var(--white);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); opacity: 0.9; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover { background: var(--primary-blue); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--primary-blue);
}
.btn-ghost:hover { background: rgba(0, 68, 136, 0.05); transform: translateY(-2px); }

/* Button Sizes */
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

/* 2. Advanced Form Elements */
.custom-check, .custom-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.custom-check input, .custom-radio input { display: none; }

.checkmark, .radmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.radmark { border-radius: 50%; }

.custom-check input:checked + .checkmark,
.custom-radio input:checked + .radmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkmark::after {
    content: '\eb7a'; /* remixicon check */
    font-family: 'remixicon';
    color: var(--white);
    font-size: 12px;
    display: none;
}

.radmark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    display: none;
}

.custom-check input:checked + .checkmark::after,
.custom-radio input:checked + .radmark::after { display: block; }

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(0,0,0,0.1);
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider { background: var(--primary-blue); }
input:checked + .slider:before { transform: translateX(24px); }

/* 3. Indicators & Loaders */
.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 68, 136, 0.1);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.skeleton-box {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* 4. Tooltips */
.tooltip-trigger {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: var(--primary-blue-dark);
}

.tooltip-trigger:hover .tooltip-content { visibility: visible; opacity: 1; }

/* 5. Color Palette Showcase Classes */
.bg-primary   { background-color: var(--primary-blue) !important; color: white; }
.bg-secondary { background-color: var(--secondary-accent) !important; color: white; }
.bg-dark      { background-color: var(--primary-blue-dark) !important; color: white; }
.bg-success   { background-color: #10b981 !important; color: white; }
.bg-warning   { background-color: #f59e0b !important; color: white; }
.bg-danger    { background-color: #f43f5e !important; color: white; }

/* ==========================================================================
   Code Block (componentes.html)
   ========================================================================== */
.code-block-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.code-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: var(--font-sans);
}

.code-block-copy {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.code-block-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.3);
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 0;
    padding: 1.75rem;
    overflow-x: auto;
    font-family: 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.75;
    margin: 0;
    border: none;
}

.code-block code {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    padding: 0;
}

/* ==========================================================================
   Screen Split / Grid Layouts (componentes.html)
   ========================================================================== */
.split-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.split-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.split-sidebar {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
}

.split-sidebar-right {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .split-2col,
    .split-3col,
    .split-sidebar,
    .split-sidebar-right {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Info Containers (componentes.html)
   ========================================================================== */
.info-container {
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.75rem;
    background: rgba(0, 68, 136, 0.05);
}

.info-container.primary {
    background: rgba(0, 68, 136, 0.06);
    border-color: var(--primary-blue);
}

.info-container.accent {
    background: rgba(240, 146, 0, 0.07);
    border-color: var(--secondary-accent);
}

.info-container.success {
    background: rgba(16, 185, 129, 0.07);
    border-color: #10b981;
}

.info-container.danger {
    background: rgba(239, 68, 68, 0.07);
    border-color: #ef4444;
}

.info-container.muted {
    background: rgba(71, 85, 105, 0.05);
    border-color: #94a3b8;
}

.info-container-title {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.info-container p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ==========================================================================
   Utilitários — Tipografia
   ========================================================================== */

/* Cores */
.txt-main     { color: var(--text-main); }
.txt-muted    { color: var(--text-muted); }
.txt-primary  { color: var(--primary-blue); }
.txt-dark     { color: var(--primary-blue-dark); }
.txt-danger   { color: #b91c1c; }
.txt-success  { color: #10b981; }
.txt-warning  { color: #856404; }

/* Pesos */
.txt-regular  { font-weight: 400; }
.txt-medium   { font-weight: 500; }
.txt-semibold { font-weight: 600; }
.txt-bold     { font-weight: 700; }

/* Tamanhos */
.txt-xs   { font-size: 0.8rem; }
.txt-sm   { font-size: 0.85rem; }
.txt-base { font-size: 0.95rem; }
.txt-md   { font-size: 1.05rem; }
.txt-lg   { font-size: 1.1rem; }
.txt-xl   { font-size: 1.15rem; }

/* Combinações frequentes */
.txt-label {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.txt-sublabel {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.txt-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}
.txt-link {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
}
.txt-link:hover { text-decoration: underline; }

/* ==========================================================================
   Utilitários — Espaçamento
   ========================================================================== */

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.5rem !important; }
.ml-2 { margin-left: 1rem !important; }
.ml-3 { margin-left: 1.5rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 2.5rem !important; }

/* ==========================================================================
   Utilitários — Layout Flex / Grid
   ========================================================================== */

.flex-start   { display: flex; align-items: flex-start; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }

.flex-wrap  { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Grid automático responsivo */
.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ==========================================================================
   Utilitários — Componentes Recorrentes
   ========================================================================== */

/* Cabeçalho de seção centralizado */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Ícone circular com fundo azul claro */
.icon-circle {
    background: rgba(0, 68, 136, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.icon-circle:hover { transform: scale(1.1); }

/* Linha de informação: ícone + conteúdo lado a lado */
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Destaque inline com borda esquerda azul */
.info-highlight {
    display: block;
    margin-top: 0.5rem;
    background: rgba(14, 69, 126, 0.05);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-blue);
}

/* Iframe responsivo (mapas, calendários) */
.iframe-embed {
    border: 0;
    width: 100%;
    min-height: 350px;
    border-radius: var(--radius-sm);
}

/* Painel com efeito glass completo (blur + borda) */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

/* Container de ícones de redes sociais */
.social-row {
    display: flex;
    gap: 16px;
    font-size: 1.5rem;
    align-items: center;
}

/* Fundo glass leve para demos e caixas de destaque */
.glass-box {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

/* Card branco com sombra e borda (ex: wrappers de calendário) */
.white-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    background: white;
}

/* Ícone inline com cor primária e margem direita */
.icon-inline {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Cores de redes sociais */
.social-facebook  { color: #1877F2; transition: transform 0.2s; }
.social-instagram { color: #E1306C; transition: transform 0.2s; }
.social-youtube   { color: #E60023; transition: transform 0.2s; }
.social-facebook:hover, .social-instagram:hover, .social-youtube:hover { transform: scale(1.2); }

/* Line-height utilitário */
.lh-relaxed { line-height: 1.6; }

/* Alinhamento de texto */
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* Padding intermediário */
.p-2-5 { padding: 1.25rem !important; }

/* Título hero/destaque de página */
.txt-hero { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }

/* Margem extra-pequena */
.mb-xs { margin-bottom: 0.25rem !important; }

/* =============================================
   EASTER EGG: Cubo caindo
   ============================================= */
@keyframes cubeFall {
    0%   { transform: translateY(0) rotateZ(0deg); opacity: 1; }
    10%  { transform: translateY(-28px) rotateZ(-10deg); opacity: 1; }
    100% { transform: translateY(160vh) rotateZ(660deg); opacity: 0; }
}

@keyframes cuboReturn {
    from { transform: translateY(-80px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Overlay que envolve o cubo durante a queda — não interfere com preserve-3d */
.cubo-fall-overlay {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    animation: cubeFall 3.5s cubic-bezier(0.45, 0, 1, 1) forwards;
}

.cubo.returning {
    animation: cuboReturn 0.55s cubic-bezier(0.2, 0, 0.4, 1) forwards;
}
