/* 
 * Página de Site Temporariamente Indisponível
 * CSS modularizado com variáveis
 */

/* ===== VARIÁVEIS ===== */
:root {
    /* Cores */
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-contrast: #ffffff;
    --secondary: #e2e8f0;
    --secondary-hover: #cbd5e1;
    --secondary-contrast: #0f172a;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.05);
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Bordas e sombras */
    --radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: 200ms ease;
}

/* ===== RESET E ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TEMA ===== */
.theme-neutral {
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== CABEÇALHO ===== */
.site-header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: center;
}

.logo-container {
    max-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height:100px;
	margin-top:20px;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== ÍCONE ===== */
.icon-container {
    margin-bottom: var(--space-md);
}

.icon {
    width: 48px;
    height: 48px;
    stroke: var(--muted);
}

/* ===== TIPOGRAFIA ===== */
.title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.lead {
    color: var(--muted);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.help-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

/* ===== BOTÕES E AÇÕES ===== */
.actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    flex: 1;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-contrast);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
}

/* ===== LISTA DE AJUDA ===== */
.help-container {
    background-color: var(--bg);
    border-radius: var(--radius);
    padding: var(--space-md);
    width: 100%;
    text-align: left;
}

.help-list {
    list-style-position: inside;
    color: var(--muted);
    font-size: 0.9rem;
}

.help-list li {
    margin-bottom: var(--space-xs);
}

.help-list li:last-child {
    margin-bottom: 0;
}

/* ===== RODAPÉ ===== */
.site-footer {
    padding: var(--space-md);
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-link {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-link:hover, .footer-link:focus {
    color: var(--text);
    text-decoration: underline;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 640px) {
    .card {
        padding: var(--space-lg);
    }
    
    .title {
        font-size: 1.25rem;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .card {
        padding: var(--space-md);
    }
    
    .icon {
        width: 40px;
        height: 40px;
    }
    
    .help-container {
        padding: var(--space-sm);
    }
}
