/* monitoramento_kids.css */

/* BASE CSS (CYBER-LUX) */
:root { 
    --gold-primary: #bf953f; 
    --gold-light: #fcf6ba; 
    --gold-dark: #8a6e2f; 
    --bg-dark: #0a0a0a; 
}

body { 
    background-color: var(--bg-dark); 
    background-image: radial-gradient(circle at 10% 20%, rgba(191, 149, 63, 0.05) 0%, transparent 40%); 
    color: #fff; 
    font-family: 'Montserrat', sans-serif; 
    min-height: 100vh; 
    padding-bottom: 50px; 
}

.app-header { 
    padding: 40px 20px; 
    text-align: center; 
}

.app-title { 
    font-family: 'Exo 2', sans-serif; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-primary)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-size: 1.8rem; 
    margin-bottom: 5px; 
}

.subtitle { 
    color: #666; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

/* CARD DE EVENTO */
.event-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px; 
    padding: 0 20px; 
}

.kids-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kids-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold-primary); 
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.15); 
}

.kids-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 4px; 
    height: 100%; 
    background: linear-gradient(to bottom, var(--gold-primary), transparent); 
}

.card-header-kids { 
    display: flex; 
    justify-content: space-between; 
    align-items: start; 
    margin-bottom: 20px; 
}

.event-date { 
    text-align: center; 
    background: rgba(255, 255, 255, 0.05); 
    padding: 10px 15px; 
    border-radius: 12px; 
    border: 1px solid #333; 
}

.date-day { 
    font-size: 1.4rem; 
    font-weight: 800; 
    color: #fff; 
    line-height: 1; 
    font-family: 'Exo 2', sans-serif; 
}

.date-month { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    color: var(--gold-primary); 
    letter-spacing: 1px; 
    font-weight: 700; 
    margin-top: 3px; 
}

.event-type { 
    text-align: right; 
}

.type-badge { 
    display: inline-block; 
    padding: 5px 12px; 
    background: rgba(191, 149, 63, 0.15); 
    color: var(--gold-primary); 
    border-radius: 50px; 
    font-size: 0.7rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    border: 1px solid rgba(191, 149, 63, 0.3); 
}

.event-time { 
    font-size: 0.85rem; 
    color: #888; 
    margin-top: 5px; 
    display: block; 
}

.client-info { 
    margin-bottom: 20px; 
}

.client-name { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 2px; 
}

.client-phone { 
    font-size: 0.9rem; 
    color: #666; 
    display: flex; 
    align-items: center; 
}

.client-phone i { 
    margin-right: 6px; 
    color: #25D366; 
}

.stats-row { 
    display: flex; 
    gap: 15px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 15px; 
}

.stat-item { 
    flex: 1; 
}

.stat-label { 
    font-size: 0.7rem; 
    color: #666; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 2px; 
}

.stat-value { 
    font-size: 0.95rem; 
    font-weight: 600; 
    color: #ccc; 
}

.stat-icon { 
    color: var(--gold-dark); 
    margin-right: 5px; 
}

/* ESTILOS DA MODAL DE LOGIN */
.login-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.95); 
    z-index: 9999;
    display: flex; 
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(10px);
}

.login-card {
    background: #111; 
    border: 1px solid var(--gold-dark);
    padding: 40px; 
    border-radius: 20px; 
    width: 100%; 
    max-width: 400px;
    box-shadow: 0 0 50px rgba(191, 149, 63, 0.2);
    text-align: center;
}

.login-input {
    width: 100%; 
    background: #222; 
    border: 1px solid #333;
    color: #fff; 
    padding: 15px; 
    margin-bottom: 15px; 
    border-radius: 8px;
    outline: none; 
    transition: 0.3s;
}

.login-input:focus { 
    border-color: var(--gold-primary); 
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.2); 
}

.btn-login {
    width: 100%; 
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    border: none; 
    padding: 15px; 
    color: #000; 
    font-weight: 800;
    text-transform: uppercase; 
    border-radius: 8px; 
    letter-spacing: 1px;
    cursor: pointer; 
    transition: 0.3s;
}

.btn-login:hover { 
    transform: scale(1.02); 
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4); 
}

.swal2-container {
    z-index: 20000 !important;
}

/* Botão Dourado (Padrão) */
.btn-gold {
    width: 100%;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}
.btn-gold:hover { transform: scale(1.02); color: #fff; }

/* Botão Verde (Já estou) */
.btn-success {
    width: 100%;
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid #25D366;
    color: #25D366;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    cursor: default;
}

/* Botão Cinza (Lotado) */
.btn-secondary {
    width: 100%;
    background: #333;
    color: #777;
    border: 1px solid #444;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    cursor: not-allowed;
}