/* ==========================================================================
   SOMOS ACON IMÓVEIS - SITE EM CONSTRUÇÃO
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --primary-orange: #ff8c00;
    --primary-glow: rgba(255, 140, 0, 0.25);
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-white);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(180deg, rgba(7, 9, 14, 0.82) 0%, rgba(7, 9, 14, 0.94) 100%),
        url('./bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.construction-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 480px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(14, 19, 31, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-logo {
    max-width: 220px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 140, 0, 0.3));
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-white);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 0.2rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    margin: 1.8rem 0;
}

.status-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.status-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

.creci-badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(255, 140, 0, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-orange);
}

@media (max-width: 480px) {
    .construction-container {
        padding: 2rem 1.2rem;
    }
    .main-logo {
        max-width: 170px;
    }
    .brand-title {
        font-size: 1.8rem;
    }
}
