/* Vana V19 UI - v2.4.2 Fix */

:root {
    --saffron: #F4C95D;
    --dark: #1a1a1a;
    --light: #f9f9f9;
}

/* --- HUB HERO FIX --- */
.v19-hub-wrapper {
    position: relative;
    width: 100%;
    height: 60vh; /* Ocupa 60% da tela, não 100% para não esconder conteúdo */
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 40px;
    /* Correção de Z-Index para não cobrir menu do Astra */
    z-index: 1; 
}

.hub-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.hub-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que preencha sem distorcer */
}

.hub-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    z-index: 0;
}

.hub-content-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hub-content-layer h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-follow {
    background: var(--saffron);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}
.btn-follow:hover { transform: scale(1.05); }
.btn-follow:disabled { opacity: 0.7; cursor: wait; }

/* --- RADAR GRID --- */
.v19-radar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.v19-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.v19-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.v19-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}
.card-body { padding: 20px; }
.card-body h4 { margin: 0 0 10px; font-size: 1.1rem; line-height: 1.4; }
.card-body span { color: var(--saffron); font-weight: bold; font-size: 0.9rem; }

/* --- MENSAGENS --- */
.v19-msg {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
}

/* --- PASSAGES --- */
.v19-passage {
    border-left: 4px solid var(--saffron);
    background: #fafafa;
    padding: 20px;
    margin: 30px 0;
}
.passage-actions { margin-top: 15px; display: flex; gap: 10px; }
.btn-react {
    background: #fff; border: 1px solid #ddd;
    padding: 6px 12px; border-radius: 20px; cursor: pointer;
}
.btn-react.active { background: var(--saffron); border-color: var(--saffron); }