/* CSS Base - Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #001826 0%, #588ad6 100%);
    min-height: 100vh;
    color: #001826;
}

.container {
    max-width: 800px;
    margin: 32px auto 0 auto;
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,24,38,0.10);
}

/* Header */
.site-header {
    background: linear-gradient(90deg, #001826 60%, #033159 100%);
    color: #f4f4f4;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0,24,38,0.08);
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 32px 18px 32px;
}

.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,24,38,0.10);
    padding: 4px;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    color: #f4f4f4;
    letter-spacing: 1px;
    font-weight: 700;
}

.site-subtitle {
    font-size: 1rem;
    color: #f4f4f4;
    opacity: 0.8;
    display: block;
}

.title-section {
    text-align: center;
    margin-bottom: 32px;
}

.title-section h1 {
    color: #032340;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.title-section p {
    color: #588ad6;
    font-size: 1.1rem;
}

/* Utilitários */
.hidden {
    display: none !important;
}