* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background: #0b1020;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.20), transparent 30%),
        linear-gradient(135deg, #0b1020, #111827 60%, #0f172a);
    z-index: -1;
    pointer-events: none;
}

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

.admin-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s ease;
}

.admin-btn:hover {
    background: rgba(255,255,255,0.15);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.hero-card {
    width: 100%;
    max-width: 950px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

h1 {
    font-size: 52px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 620px;
    margin-bottom: 28px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn {
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
}

.info-box {
    margin-top: 10px;
}

.info-box h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.horario-card {
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid transparent;
}

.horario-card .hora {
    font-size: 22px;
    font-weight: bold;
}

.horario-card .status {
    font-size: 14px;
    opacity: 0.95;
}

.horario-card.livre {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

@media (max-width: 768px) {
    .hero-card {
        padding: 28px 20px;
    }

    h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 16px;
    }

    .topbar {
        padding: 18px 20px;
    }
}











:root {
    --primary: #38bdf8;
    --bg: #0f172a;
    --card: #1e293b;
    --text-muted: #94a3b8;
}

.highlight { color: var(--primary); }

/* Grid de Barbearias Reais */
.barbearias-section {
    margin: 40px 0;
    text-align: left;
}

.section-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.barbearias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.barbearia-item {
    background: var(--card);
    border: 1px solid #334155;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.barbearia-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Botões */
.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-outline {
    border: 1px solid #334155;
    color: white;
}

.btn:hover { opacity: 0.9; transform: scale(1.02); }