/* =======================================================
   BARBEARIA ALTO TALENTO - STYLE.CSS (V10 - INTEGRAÇÃO TOTAL)
   Conteúdo:
   1. Estilos Originais (Home, Login, Checkout Detalhado)
   2. Novos Estilos (Painel Admin, Painel Usuário, Fidelidade)
   ======================================================= */

/* --- 1. VARIÁVEIS (CORES GLOBAIS) --- */
:root {
    --primary: #000000;      /* Fundo Principal */
    --secondary: #111111;    /* Fundo Secundário (Barras/Rodapé) */
    --card-bg: #1a1a1a;      /* Fundo Cards */
    --accent: #d4af37;       /* Dourado Principal */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --success: #28a745;      /* Verde */
    --danger: #dc3545;       /* Vermelho */
    --gray: #888888;
    --border: #333333;
}

/* --- 2. BASE (RESET) --- */
* {
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }

body {
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }


/* --- 3. LAYOUT GLOBAL (TOPO, HEADER) --- */

/* Barra Superior (Top Bar) */
.top-bar {
    background-color: var(--secondary);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem; 
    border-bottom: 1px solid #222;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 20px; /* Mais espaço entre o botão de horário e o endereço */
}

/* Status do Horário */
.status-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.status-indicador { 
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; 
    background-color: currentColor; animation: pulse 2s infinite; 
}
.status-fechado { color: var(--danger); font-weight: 600; display: flex; align-items: center; }
.status-aberto { color: var(--success); font-weight: 600; display: flex; align-items: center; }

.separador { 
    color: #444; font-weight: 300; line-height: 1; margin: 0 5px;
}

/* Links do Topo */
.top-bar a { 
    color: var(--text-secondary); 
    display: inline-flex; 
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto em si (Ex: [Icon] Rua...) */
    transition: color 0.3s ease;
}
.top-bar a:hover { color: var(--accent); cursor: pointer; }

.social-links { 
    display: flex; 
    gap: 25px; /* Aumentar o espaço entre os botões das redes sociais */
    align-items: center; 
}


/* Tooltip de Horários (Flutuante) */
.tooltip-horarios {
    visibility: hidden; width: 220px; background-color: #222; color: #fff; text-align: center;
    border-radius: 8px; padding: 15px; position: absolute; z-index: 9999; top: 150%; left: 0;
    border: 1px solid var(--accent); box-shadow: 0 5px 20px rgba(0,0,0,1);
    opacity: 0; transition: all 0.3s ease; transform: translateY(-10px); font-size: 0.85rem; line-height: 1.6;
}
.status-wrapper:hover .tooltip-horarios { visibility: visible; opacity: 1; transform: translateY(0); }
.tooltip-horarios strong { display: block; color: var(--accent); margin-bottom: 5px; border-bottom: 1px solid #444; padding-bottom: 5px; }
/* Cabeçalho (Header) - Redesign Premium */
header {
    background-color: #000;
    padding: 15px 5%;
    position: sticky; top: 0; z-index: 1000;
    display: flex; 
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

header.scrolled {
    padding: 8px 5%;
    background-color: rgba(0, 0, 0, 0.95);
}

.logo-container { 
    margin-bottom: 0; 
    transition: transform 0.3s ease;
}
.logo-container:hover { transform: scale(1.05); }

.logo-img { 
    max-height: 85px; 
    width: auto; 
    display: block;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

nav { width: auto; }
nav ul { 
    display: flex; gap: 15px; align-items: center; flex-wrap: nowrap; justify-content: flex-end; margin-top: 0;
}

/* Grupo de Saudação + Perfil (logado) */
.greeting-wrapper {
    display: flex; 
    align-items: center; 
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.greeting-text {
    color: #fff; font-size: 0.95rem; cursor: default; white-space: nowrap;
}

/* Botões do Menu */
.btn-menu.destaque {
    border: 1px solid rgba(212, 175, 55, 0.3); 
    padding: 10px 22px; 
    border-radius: 50px; 
    color: #fff; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.btn-menu.destaque:hover { 
    background-color: var(--accent); 
    color: #000; 
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    .logo-img { max-height: 65px; }
    nav ul { justify-content: center; flex-wrap: wrap; }
}


/* --- 4. SEÇÕES DA HOME --- */

/* Hero (Banner Principal) */
.hero {
    height: 45vh; min-height: 350px;
    /* Tenta carregar local, se não tiver, carrega da internet */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/banner.jpg');
    background-size: cover; background-position: center;
    display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 20px;
    border-bottom: 1px solid var(--accent);
}
/* Fallback se a imagem local falhar (backup) */
.hero { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop'); }

.hero-content h1 { font-size: 2.8rem; color: var(--accent); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.hero-content p { color: var(--text-secondary); margin-bottom: 25px; max-width: 600px; font-size: 1.1rem; }

.btn-destaque {
    background-color: var(--accent); color: #000; padding: 12px 30px; border-radius: 5px; border: 2px solid var(--accent);
    font-weight: bold; text-transform: uppercase; display: inline-block; cursor: pointer; transition: 0.3s;
}
.btn-destaque:hover { 
    background-color: #fff; 
    border-color: #fff; 
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); 
    transform: translateY(-3px) scale(1.02); 
}

.btn-outline {
    border: 1px solid var(--accent); color: var(--accent); padding: 10px 25px; border-radius: 5px; border: 2px solid var(--accent);
    text-transform: uppercase; background: transparent; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.btn-outline:hover { background-color: var(--accent); color: #000; }


/* Serviços */
.servicos-section { padding: 60px 5%; text-align: center; background-color: var(--primary); }
.section-title { 
    font-size: 2rem; color: var(--accent); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; 
    position: relative; display: inline-block; border-bottom: 3px solid var(--accent); padding-bottom: 10px;
}

.cards-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.service-card {
    background-color: var(--card-bg); padding: 40px 25px; border-radius: 10px; 
    width: 300px; border: 1px solid #333; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; overflow: hidden;
}
.service-card:hover { 
    border-color: var(--accent); 
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15); 
    transform: translateY(-8px);
}
.icon-card { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.service-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.service-price { display: block; font-size: 1.5rem; color: var(--accent); font-weight: bold; margin-bottom: 20px; }

/* Botão dentro do card (Transparente com borda) */
.btn-card { 
    display: inline-block; padding: 10px 30px; background-color: transparent;
    border: 1px solid var(--accent); color: var(--accent); 
    text-decoration: none; border-radius: 4px; transition: 0.3s; 
    text-transform: uppercase; font-size: 0.8rem; font-weight: 600; cursor: pointer;
}
.btn-card:hover { background-color: var(--accent); color: #000; border-color: var(--accent); }

.service-card.destaque-card { border: 1px solid var(--accent); transform: scale(1.05); }


/* Sobre */
.about-section { padding: 60px 5%; background-color: var(--secondary); text-align: center; border-top: 1px solid #222; }
.about-content { max-width: 800px; margin: 0 auto; color: #ccc; line-height: 1.8; }


/* Rodapé Geral - Redesign Premium */
.footer-premium {
    background: #050505;
    border-top: 2px solid var(--accent);
    padding: 80px 5% 40px;
    margin-top: 60px;
    position: relative;
    z-index: 10; /* Garante que fique acima de overlays indesejados */
}

.developer-credit { margin-top: 30px; padding-top: 20px; border-top: 1px solid #222; font-size: 0.8rem; color: #666; }
.developer-credit strong { color: var(--accent); }


/* --- 5. TELA DE LOGIN / CADASTRO (ESTILO DETALHADO) --- */
.auth-container {
    min-height: calc(100vh - 150px); display: flex; justify-content: center; align-items: center; 
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/login-bg.jpg');
    background-repeat: no-repeat; background-position: center; background-size: cover;
}
/* Fallback Login Online */
.auth-container { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1512690459411-b9245aed8ad5?q=80&w=2070&auto=format&fit=crop'); }

.auth-card {
    background-color: #0a0a0a; width: 100%; max-width: 450px;
    border-radius: 12px; border: 1px solid #222; box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15); 
    overflow: hidden; position: relative;
}
/* Linha dourada charmosa no topo do card */
.auth-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.auth-tabs { display: flex; border-bottom: 1px solid #333; }
.tab-btn {
    flex: 1; padding: 15px; background: transparent; border: none;
    color: var(--text-secondary); font-size: 1rem; font-weight: 600; cursor: pointer; 
    transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.tab-btn:hover { color: var(--accent); background-color: rgba(255,255,255,0.02); }
.tab-btn.active { color: #000; background-color: var(--accent); }

.auth-form { padding: 30px; display: none; }
.auth-form.active { display: block; animation: fadeIn 0.5s ease; }
.auth-form h2 { color: var(--accent); text-align: center; font-size: 1.8rem; margin-bottom: 10px; }
.auth-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 30px; font-size: 0.9rem; }

.input-group { margin-bottom: 20px; width: 100%; }
.input-group label { display: block; color: var(--text-primary); margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.input-group label i { color: var(--accent); margin-right: 8px; width: 15px; text-align: center;}

.input-group input {
    width: 100%; padding: 12px 15px; background-color: #000; border: 1px solid #333; 
    border-radius: 6px; color: #fff; font-size: 1rem; transition: 0.3s;
}
.input-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }

.forgot-pass { text-align: right; margin-bottom: 20px; }
.forgot-pass a { color: var(--text-secondary); font-size: 0.85rem; }
.forgot-pass a:hover { color: var(--accent); text-decoration: underline; }

.btn-auth {
    width: 100%; padding: 15px; background-color: var(--accent); color: #000; 
    border: none; border-radius: 6px; font-size: 1.1rem; font-weight: bold; 
    text-transform: uppercase; cursor: pointer; transition: 0.3s; margin-top: 10px;
}
.btn-auth:hover { background-color: #fff; box-shadow: 0 0 15px var(--accent); }
.two-col { display: flex; gap: 15px; }


/* --- 6. MODAIS (CHECKOUT E LOGIN) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(5px);
}
.modal-overlay.open { display: flex; }

/* Modal de Solicitação de Login (Substitui o Alert) */
.modal-login-prompt {
    background-color: #111; width: 90%; max-width: 400px; border-radius: 12px; border: 1px solid #333;
    text-align: center; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: slideUp 0.3s ease; position: relative;
}
.modal-login-prompt .icon-prompt {
    font-size: 3rem; color: var(--accent); margin-bottom: 15px;
}
.modal-login-prompt h3 {
    color: #fff; font-size: 1.4rem; margin-bottom: 10px;
}
.modal-login-prompt p {
    color: var(--text-secondary); margin-bottom: 25px; font-size: 0.95rem; line-height: 1.5;
}
.modal-login-prompt .botoes-login {
    display: flex; flex-direction: column; gap: 10px;
}
.btn-login-modal {
    width: 100%; padding: 12px; background-color: var(--accent); color: #000; font-weight: bold;
    border: none; border-radius: 6px; cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 0.9rem;
}
.btn-login-modal:hover { background-color: #fff; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.btn-cancel-modal {
    background: transparent; border: 1px solid #444; color: #aaa; padding: 10px; width: 100%;
    border-radius: 6px; cursor: pointer; transition: 0.3s;
}
.btn-cancel-modal:hover { border-color: #fff; color: #fff; }


.modal-checkout {
    background-color: #111; width: 90%; max-width: 450px; border-radius: 12px; border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); overflow: hidden; position: relative; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-header { background-color: #000; padding: 20px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { color: #fff; font-size: 1.1rem; }
.btn-close-modal { background: none; border: none; color: #666; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-close-modal:hover { color: var(--danger); }

.payment-tabs { display: flex; background: #000; }
.pay-tab { flex: 1; padding: 15px; background: transparent; border: none; border-bottom: 2px solid #333; color: #888; font-weight: 600; cursor: pointer; transition: 0.3s; }
.pay-tab:hover { background-color: #1a1a1a; }
.pay-tab.active { border-bottom-color: var(--accent); color: var(--accent); background-color: #111; }

.payment-body { padding: 25px; }
.pay-method { display: none; }
.pay-method.active { display: block; animation: fadeIn 0.3s; }

/* Visual do Cartão de Crédito */
.card-preview { 
    background: linear-gradient(135deg, #222, #000); border: 1px solid #333; 
    border-radius: 10px; padding: 20px; margin-bottom: 20px; color: #fff; position: relative; 
}
.card-brand { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; color: #fff; }
.card-number-display { font-size: 1.2rem; letter-spacing: 2px; margin: 30px 0 10px; font-family: monospace; }
.card-details-display { display: flex; justify-content: space-between; font-size: 0.8rem; color: #aaa; }

.checkout-input {
    width: 100%; padding: 12px; background-color: #000; border: 1px solid #333; 
    border-radius: 6px; color: #fff; font-size: 1rem; transition: 0.3s; margin-bottom: 10px;
}
.checkout-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }

.row-inputs { display: flex; gap: 10px; }

.btn-pay-confirm { 
    width: 100%; padding: 15px; background-color: var(--success); color: #fff; 
    border: none; border-radius: 5px; font-weight: bold; font-size: 1rem; 
    cursor: pointer; transition: 0.3s; margin-top: 10px; 
}
.btn-pay-confirm:hover { background-color: #218838; box-shadow: 0 0 15px rgba(40, 167, 69, 0.4); }

/* PIX Visual */
.pix-container { text-align: center; }
.qr-code-box { background: #fff; padding: 10px; display: inline-block; border-radius: 8px; margin: 15px 0; }
.qr-code-box img { width: 150px; height: 150px; }
.pix-copy-box { background: #000; border: 1px dashed #444; padding: 10px; border-radius: 5px; font-family: monospace; color: var(--accent); font-size: 0.8rem; word-break: break-all; margin-bottom: 10px; }
.pix-timer { color: var(--danger); font-size: 0.9rem; margin-top: 10px; font-weight: bold; }


/* =======================================================
   7. NOVOS ESTILOS: ADMIN DASHBOARD E ÁREA DO USUÁRIO
   ======================================================= */

/* Container Geral dos Painéis */
.admin-container { 
    max-width: 1200px; margin: 30px auto; padding: 0 20px; 
    display: grid; gap: 20px; 
}

/* Header Específico do Usuário/Admin */
.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    
    background: #000000; 
    
    border-bottom: 1px solid #333;
}

.logo-img {
    max-height: 60px; 
    width: auto;
    display: block;
}
.user-nav a, .user-nav button { color: #fff; margin-left: 20px; font-size: 0.9rem; background: none; border: none; cursor: pointer; transition: 0.3s; }
.user-nav a:hover, .user-nav button:hover { color: var(--accent); }
.btn-sair { color: var(--danger) !important; border: 1px solid var(--danger) !important; padding: 5px 15px; border-radius: 4px; }
.btn-sair:hover { background: var(--danger); color: #fff !important; }

/* 7.1 Cartão Fidelidade (Usuário) */
.loyalty-section { 
    background: linear-gradient(135deg, #000, #111); border: 1px solid var(--accent); 
    border-radius: 12px; padding: 25px; margin-bottom: 30px; text-align: center; 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); 
}
.loyalty-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
.loyalty-header h3 { color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.loyalty-count { background: var(--accent); color: #000; padding: 2px 10px; border-radius: 20px; font-weight: bold; }

.loyalty-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin: 20px 0; }
.stamp-box { 
    width: 50px; height: 50px; border-radius: 50%; background: #222; border: 2px dashed #444; 
    display: flex; align-items: center; justify-content: center; color: #444; transition: 0.3s; font-size: 1.2rem;
}
.stamp-box.active { 
    background: var(--accent); border: 2px solid var(--accent); color: #000; 
    transform: scale(1.1); box-shadow: 0 0 10px var(--accent); 
}
.stamp-box.reward.active { background: #fff; color: #000; border-color: #fff; }


/* 7.2 Cards de Estatísticas (Admin Premium) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 30px; }
.stat-card { 
    background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(0,0,0,0.95));
    border: 1px solid rgba(212, 175, 55, 0.3); padding: 25px; 
    border-radius: 16px; display: flex; align-items: center; gap: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden;
    backdrop-filter: blur(10px); transition: 0.3s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15); border-color: var(--accent); }
.stat-card::after { 
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%); pointer-events: none;
}
.stat-icon { 
    font-size: 2.2rem; color: var(--accent); background: rgba(212, 175, 55, 0.1); 
    width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; border-radius: 12px; 
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.stat-info { display: flex; flex-direction: column; z-index: 2;}
.stat-info h3 { font-size: 2.2rem; color: #fff; margin: 0; line-height: 1; font-weight: 600; letter-spacing: -1px;}
.stat-info p { color: #aaa; margin: 5px 0 0 0; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;}


/* 7.3 Área Central Admin (Validação + Feed) */
.main-dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.validation-box { 
    background: #111; border: 1px solid var(--accent); padding: 30px; 
    border-radius: 8px; text-align: center; display: flex; flex-direction: column; justify-content: center;
}
.validation-box h2 { color: #fff; margin-bottom: 20px; }

.input-admin { 
    width: 100%; padding: 15px; background: #000; border: 1px solid #444; 
    color: #fff; font-size: 1.5rem; text-align: center; border-radius: 4px; 
    margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px;
}
.input-admin:focus { outline: none; border-color: var(--accent); }

/* Feed de Atividades */
.feed-box { 
    background: #111; border: 1px solid #333; padding: 20px; 
    border-radius: 8px; max-height: 350px; overflow-y: auto; 
}
.activity-item { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 12px 0; border-bottom: 1px solid #222; 
}
.activity-time { font-size: 0.8rem; color: #666; display: block; margin-top: 5px; }
.activity-desc strong { color: var(--accent); }


/* 7.4 Tabela de Vendas (Admin Premium) */
.table-container { 
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #222; border-radius: 12px; 
    padding: 25px; overflow-x: auto; box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.table-container h3 { color: #fff; margin-bottom: 20px; font-weight: 500; font-size: 1.3rem; border-left: 3px solid var(--accent); padding-left: 10px; }

.full-table { width: 100%; border-collapse: collapse; color: #ccc; min-width: 600px; font-size: 0.95rem; }
.full-table th { text-align: left; padding: 15px; border-bottom: 2px solid #333; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;}
.full-table td { padding: 18px 15px; border-bottom: 1px solid #1a1a1a; transition: 0.2s; }
.full-table tbody tr:hover { background: rgba(255,255,255,0.02); }


/* 7.5 Card de VOUCHER (Lista do Usuário) */
.vouchers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* 7.6 Filtros do Dashboard */
.filter-group { display: flex; gap: 10px; background: rgba(0,0,0,0.5); padding: 5px; border-radius: 8px; border: 1px solid #333; }
.filter-btn { 
    background: transparent; border: none; color: #888; padding: 8px 15px; border-radius: 6px; 
    cursor: pointer; font-weight: 500; font-size: 0.85rem; transition: 0.3s;
}
.filter-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.filter-btn.active { color: #000; background: var(--accent); box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }

/* Password Toggle Styles */
.input-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: color 0.3s;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--accent);
}

.input-group input {
    padding-right: 45px !important;
}


.voucher-card { 
    background: #000; border: 1px dashed var(--accent); padding: 20px; 
    border-radius: 8px; transition: 0.3s; position: relative;
}
.voucher-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }

.voucher-header { display: flex; justify-content: space-between; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 15px; }
.voucher-id { 
    font-family: monospace; background: #222; padding: 5px 10px; 
    border-radius: 4px; color: #fff; border: 1px solid #444; font-weight: bold;
}

.status-badge { font-size: 0.8rem; font-weight: bold; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; }
.status-badge.ativo { background: rgba(40,167,69,0.2); color: var(--success); }
.status-badge.usado { background: rgba(108,117,125,0.2); color: #888; text-decoration: line-through; }

.voucher-body h3 { font-size: 1.1rem; color: #fff; margin-bottom: 5px; }
.voucher-body p { font-size: 1.2rem; color: var(--accent); font-weight: bold; }

.voucher-footer { 
    border-top: 1px dashed #333; padding-top: 10px; display: flex; 
    justify-content: space-between; color: #666; font-size: 0.8rem; 
}

/* Card Usado (Estilo apagado) */
.card-usado { opacity: 0.5; border-color: #333; background-color: #0a0a0a; border-style: solid; }
.card-usado:hover { transform: none; box-shadow: none; }


/* --- 8. UTILITÁRIOS E ANIMAÇÕES --- */
.dado-sensivel { transition: filter 0.3s ease; }
.dado-sensivel.borrado { filter: blur(10px); user-select: none; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@-webkit-keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@-webkit-keyframes fadeIn { from { opacity: 0; -webkit-transform: translateY(10px); } to { opacity: 1; -webkit-transform: translateY(0); } }

@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@-webkit-keyframes slideUp { from { -webkit-transform: translateY(30px); opacity: 0; } to { -webkit-transform: translateY(0); opacity: 1; } }

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

/* Aplicação de FadeIn em seções - Removido para usar Framer Motion (melhor performance mobile) */
/* .servicos-section, .portfolio-section, .about-section, section { animation: fadeIn 0.8s ease-out; } */


/* --- 9. MOBILE RESPONSIVO --- */
@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .top-bar { flex-direction: column; gap: 10px; text-align: center; }
    .info-left { justify-content: center; width: 100%; }
    
    /* Header Compacto Mobile */
    header { padding: 6px 3%; text-align: center; }
    .logo-container { margin-bottom: 2px; }
    .logo-img { max-height: 40px; }
    .greeting-text { display: block; text-align: center; margin-top: 4px; font-size: 0.8rem; }
    
    nav ul { 
        gap: 6px; margin-top: 5px;
    }
    .btn-menu.destaque { font-size: 0.7rem; padding: 5px 10px; }
    
    /* Perfil Mobile */
    .admin-container { padding: 0 10px !important; }
    
    .main-dashboard-grid { grid-template-columns: 1fr; }
    .user-header { flex-direction: column; gap: 10px; padding: 15px; }
    .user-nav { width: 100%; justify-content: center; }
    
    .two-col { flex-direction: column; gap: 0; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-destaque, .hero-btns .btn-outline { width: 100%; margin-bottom: 10px; }

    /* Perfil: empilhar cards no mobile */
    .perfil-grid { flex-direction: column !important; }
}

/* --- 6. COMPONENTS (TOASTS) --- */
.toast-container {
    position: fixed; bottom: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast {
    min-width: 250px; padding: 15px 20px; border-radius: 8px;
    background: #111; color: #fff; font-size: 0.95rem; font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex; align-items: center; gap: 12px;
    transform: translateX(120%); opacity: 0; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--accent);
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast i { font-size: 1.2rem; }
.toast.success { border-color: var(--success); }
.toast.success i { color: var(--success); }
.toast.error { border-color: var(--danger); }
.toast.error i { color: var(--danger); }
.toast.warning { border-color: var(--accent); }
.toast.warning i { color: var(--accent); }


/* =======================================================
   10. CRUD ADMIN STYLES
   ======================================================= */

/* Admin Navigation */
.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.admin-nav-links {
    display: flex;
    gap: 8px;
}
.admin-nav-link {
    color: #888;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}
.admin-nav-link:hover {
    color: var(--accent);
    background: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.2);
}
.admin-nav-link.active {
    color: #000;
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
}

/* CRUD Modal */
.crud-modal {
    background: #111;
    width: 90%;
    max-width: 550px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}
.crud-modal-header {
    background: #0a0a0a;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}
.crud-modal-header h3 {
    color: var(--accent);
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.crud-modal-body {
    padding: 25px;
}
.crud-modal-footer {
    background: #0a0a0a;
    padding: 15px 25px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #333;
}

/* CRUD Form */
.crud-form .input-group {
    margin-bottom: 18px;
}
.crud-form .input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}
.crud-form .input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(212,175,55,0.2);
}

/* Icon Selector */
.icone-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.icone-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icone-option:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212,175,55,0.05);
}
.icone-option.selected {
    border-color: var(--accent);
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* CRUD Checkbox */
.crud-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #ccc;
    font-size: 0.95rem;
    padding: 10px 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 6px;
    transition: 0.3s;
    flex: 1;
}
.crud-checkbox:hover {
    border-color: var(--accent);
}
.crud-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.crud-checkbox span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CRUD Action Buttons */
.btn-crud {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid #333;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.btn-edit {
    color: var(--accent);
}
.btn-edit:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.btn-delete {
    color: var(--danger);
}
.btn-delete:hover {
    background: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

/* CRUD Status Badge */
.crud-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s ease;
}
.crud-status-badge.ativo {
    color: var(--success);
    border-color: var(--success);
}
.crud-status-badge.ativo:hover {
    background: rgba(40,167,69,0.15);
}
.crud-status-badge.inativo {
    color: #888;
    border-color: #555;
}
.crud-status-badge.inativo:hover {
    background: rgba(255,255,255,0.05);
}

/* Admin Search Bar */
.admin-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.admin-search-bar:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212,175,55,0.1);
}
.admin-search-bar i {
    color: #555;
    font-size: 1rem;
}
.admin-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.admin-search-bar input::placeholder {
    color: #555;
}
.search-clear {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}
.search-clear:hover {
    color: var(--danger);
}

/* Mobile for CRUD */
@media (max-width: 768px) {
    .admin-nav {
        flex-direction: column;
        text-align: center;
    }
    .admin-nav-links {
        width: 100%;
        justify-content: center;
    }
    .crud-modal {
        width: 95%;
        max-width: none;
    }
    .crud-modal-body {
        padding: 15px;
    }
    .crud-modal-footer {
        flex-direction: column-reverse;
    }
    .crud-modal-footer button {
        width: 100%;
        justify-content: center;
    }
    .icone-selector {
        justify-content: center;
    }
}

/* =======================================================
   11. SKELETON LOADERS
   ======================================================= */
.skeleton {
    animation: skeleton-loading 1.2s infinite alternate;
    border-radius: 8px;
    opacity: 0.7;
}

.skeleton-text {
    width: 100%;
    height: 1.2rem;
    margin-bottom: 0.6rem;
    border-radius: 4px;
}
.skeleton-text.short { width: 50%; }
.skeleton-text.medium { width: 75%; }

.skeleton-box {
    width: 100%;
    height: 100px;
    border-radius: 8px;
}

.skeleton-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

@keyframes skeleton-loading {
    0% { background-color: #222; }
    100% { background-color: #333; }
}

/* --- ENHANCED HOME PAGE STYLES --- */
.service-card {
   background: #1a1a1a;
   border: 1px solid #333;
   border-radius: 10px;
   padding: 40px 20px;
   text-align: center;
   transition: all 0.3s ease;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.destaque-card {
   position: relative;
   border: 1px solid var(--accent) !important;
   box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
   transform: scale(1.03); 
   z-index: 2;
   overflow: visible !important;
}

.destaque-card:hover {
   box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.badge-minimalista {
   position: absolute;
   top: -12px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--accent);
   color: #000;
   padding: 4px 16px;
   border-radius: 20px;
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
   display: flex;
   align-items: center;
   gap: 6px;
   z-index: 5;
   white-space: nowrap;
   overflow: hidden;
   border: 1px solid rgba(255,255,255,0.4);
}

.badge-minimalista::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: badgeShine 3s infinite;
}

.oferta-card {
   position: relative;
   border: 1px solid #ff4757 !important;
   box-shadow: 0 8px 24px rgba(255, 71, 87, 0.15);
   transform: scale(1.03); 
   z-index: 2;
   overflow: visible !important;
}

.oferta-card:hover {
   box-shadow: 0 12px 32px rgba(255, 71, 87, 0.3);
}

.badge-oferta {
   position: absolute;
   top: -12px;
   left: 50%;
   transform: translateX(-50%);
   background: #ff4757;
   color: #fff;
   padding: 4px 16px;
   border-radius: 20px;
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
   display: flex;
   align-items: center;
   gap: 6px;
   z-index: 5;
   white-space: nowrap;
   overflow: hidden;
   border: 1px solid rgba(255,255,255,0.4);
}

.badge-oferta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: badgeShine 2.5s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@media(max-width: 768px) {
   .destaque-card { transform: scale(1.02); }
}
/* --- PORTFOLIO --- */
.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px; /* Aumentado para fotos de celular (portait) */
    border: 1px solid #222;
    transition: all 0.4s ease;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Foca na cabeça do cliente/barbeiro */
    transition: transform 0.6s ease;
}
.portfolio-item:hover img {
    transform: scale(1.08); /* Reduzi o zoom levemente para não cortar ao passar o mouse */
}
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    padding: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-overlay h4 {
    color: var(--accent);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.portfolio-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

/* --- 11. BADGES DE FIDELIDADE (GAMIFICAÇÃO) --- */
.badge-fidelidade {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.badge-bronze {
    background-color: #cd7f32;
    color: #fff;
    box-shadow: 0 0 5px rgba(205, 127, 50, 0.3);
}

.badge-vip {
    background-color: #c0c0c0;
    color: #000;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.badge-platinum {
    background-color: #d4af37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.badge-black {
    background: linear-gradient(45deg, #000, #444);
    color: #00b7eb;
    border: 1px solid #00b7eb;
    box-shadow: 0 0 20px rgba(0, 183, 235, 0.6);
    animation: blackGlow 2s infinite alternate;
}

@keyframes blackGlow {
    from { box-shadow: 0 0 10px rgba(0, 183, 235, 0.3); }
    to { box-shadow: 0 0 20px rgba(0, 183, 235, 0.8); }
}

.greeting-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 15px;
}

@media (max-width: 1024px) {
    .header-left {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .greeting-wrapper {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 0.8rem;
        background: rgba(255,255,255,0.05);
        padding: 5px 12px;
    }
    .badge-fidelidade {
        font-size: 0.65rem;
        padding: 2px 8px;
        animation-duration: 1.5s; 
    }
}

@media (max-width: 480px) {
    header { padding: 10px 3%; }
    .logo-img { max-height: 55px; }
    .header-left { gap: 5px; }
    .greeting-wrapper { padding: 4px 10px; font-size: 0.75rem; }
    nav ul { gap: 8px; }
    .btn-menu.destaque { padding: 8px 15px; font-size: 0.75rem; }
}

/* Forçar renderização de animação em dispositivos móveis */
@media (prefers-reduced-motion: no-preference) {
    .badge-black {
        animation: blackGlow 2s infinite alternate !important;
    }
}

/* =======================================================
   FOOTER PREMIUM - OPÇÃO 1
   ======================================================= */
.footer-premium {
    background: #050505;
    border-top: 1px solid #151515;
    padding: 80px 5% 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    padding-bottom: 60px;
}

/* Coluna Barbearia */
.barber-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-logo h3 span {
    color: var(--accent);
}

.footer-about {
    color: #777;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.footer-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
}

.info-item span, .hours-text span {
    color: #bbb;
    font-size: 0.95rem;
    display: block;
}

.hours-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.barber-socials {
    display: flex;
    gap: 15px;
}

.barber-socials a {
    width: 42px;
    height: 42px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.barber-socials a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* Coluna Developer - Destaque Comercial */
.dev-highlight {
    display: flex;
    align-items: center;
}

.dev-box {
    background: linear-gradient(145deg, #0a0a0a, #0d0d0d);
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    transition: 0.3s;
}

.dev-box:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.dev-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dev-header i {
    color: var(--accent);
    font-size: 1.3rem;
}

.dev-header h4 {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
}

.dev-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-dev-cta {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 25px;
}

.btn-dev-cta:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.dev-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.dev-by {
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    font-weight: 700;
}

.dev-profile a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.dev-profile strong {
    color: #fff;
    font-weight: 600;
}

.dev-profile a:hover {
    color: var(--accent);
}

.dev-profile a i {
    font-size: 1.1rem;
}

/* Rodapé Inferior */
.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #444;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #444;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .barber-info {
        align-items: center;
        text-align: center;
    }
    .footer-about {
        margin-left: auto;
        margin-right: auto;
    }
    .info-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-premium {
        padding: 60px 20px 80px; /* Aumentado o padding inferior (era 30px) para fugir das barras dos navegadores */
    }
    .footer-logo h3 {
        font-size: 1.4rem;
    }
    .dev-box {
        padding: 30px 20px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

