/*
Theme Name: Declasse Imóveis Coming Soon
Theme URI: https://declasseimoveis.com.br
Author: Manus AI
Description: Página de aguarde elegante para Declasse Imóveis.
Version: 1.0
Text Domain: declasse-cs
*/

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

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/img/bg-coming-soon.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 40px;
}

.logo img {
    width: 100%;
    height: auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #D4AF37; /* Gold */
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtext {
    font-size: 1.2rem;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: #D4AF37;
}

.contact-item i {
    margin-right: 10px;
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    color: #D4AF37;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    .logo { max-width: 180px; }
}
