/* --- PÁGINA EM CONSTRUÇÃO (COMING SOON) --- */

.maintenance-screen {
    position: relative;
    height: 100vh; /* Ocupa a tela inteira */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundo com Imagem e Filtro Escuro */
.maintenance-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Substitua pela foto mais bonita que tiverem (ex: uma paisagem da Serra ou um detalhe de madeira) */
    background-image: url('https://images.unsplash.com/photo-1445964047600-cdbdb873673d?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Camada escura sobre a foto para destacar o texto */
.maintenance-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 36, 27, 0.4); /* Tom Café transparente */
}

/* O Cartão Central Branco */
.maintenance-card {
    position: relative;
    z-index: 2; /* Fica acima do fundo */
    background-color: rgba(249, 247, 242, 0.95); /* Cor de fundo do site (creme) com leve transparência */
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-top: 5px solid var(--cor-destaque); /* Detalhe Terracota no topo */
}

.logo-img-large {
    max-height: 80px;
    margin-bottom: 30px;
}

.maintenance-card h1 {
    font-size: 2.2rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
    line-height: 1.2;
}

.maintenance-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.separator-small {
    width: 40px;
    height: 2px;
    background-color: var(--cor-secundaria);
    border: none;
    margin: 0 auto 30px auto;
}

.maintenance-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

/* Botão Full Width para esta página */
.btn-full {
    width: 100%;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .maintenance-card { padding: 40px 20px; }
    .maintenance-card h1 { font-size: 1.8rem; }
}
