/*
Theme Name: DGO Incorporadora - Aviso
Theme URI: https://dgoengenharia.com.br
Author: Higor Naves
Author URI: https://www.higornaves.com
Description: Tema de aviso de transição - DGO Incorporadora agora é DGO Engenharia & Incorporação.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dgo-incorporadora
*/

:root {
    --cor-primaria: #101820;
    --cor-secundaria: #3f2021;
    --cor-clara: #dddae8;
    --branco: #ffffff;
    --preto: #000000;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-primaria);
    color: var(--branco);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    z-index: 3500;
    background-color: var(--cor-primaria);
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0;
    transition: opacity 0.5s ease;
}

.preloader .preloader-inner {
    text-align: center;
}

.preloader .preloader-logo {
    width: 180px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

.preloader .preloader-text {
    color: var(--branco);
    font-size: 0.9em;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== SEÇÃO PRINCIPAL - AVISO ===== */
.aviso-section {
    background-image: linear-gradient(rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.88)), url('images/arch-1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aviso-container {
    text-align: center;
    padding: 60px 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo */
.aviso-logo {
    margin-bottom: 50px;
}

.aviso-logo img {
    max-width: 250px;
    height: auto;
}

/* Linha decorativa */
.aviso-linha {
    width: 60px;
    height: 1px;
    background-color: var(--cor-clara);
    margin: 0 auto 35px;
}

/* Subtitulo "Comunicado" */
.aviso-subtitulo-top {
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cor-clara);
    margin-bottom: 25px;
}

/* Mensagem principal */
.aviso-mensagem {
    font-size: 3em;
    font-weight: 300;
    line-height: 1.3em;
    margin-bottom: 15px;
    color: var(--branco);
}

.aviso-mensagem span {
    color: var(--cor-clara);
    font-weight: 300;
}

/* Subtitulo abaixo da mensagem */
.aviso-subtitulo {
    font-size: 1em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    line-height: 1.8em;
}

/* Botao */
.aviso-botao {
    display: inline-block;
    border: 1px solid var(--branco);
    color: var(--branco);
    text-decoration: none;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 1s;
    font-family: 'Poppins', sans-serif;
}

.aviso-botao:hover {
    background-color: var(--branco);
    color: var(--cor-primaria);
    transform: translate(-5px, -5px);
}

/* Rodape */
.aviso-rodape {
    margin-top: 70px;
    font-size: 0.75em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.aviso-rodape a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.aviso-rodape a:hover {
    color: var(--cor-clara);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 991px) {
    .aviso-mensagem {
        font-size: 2.5em;
    }
}

@media (max-width: 767px) {
    .aviso-mensagem {
        font-size: 2em;
    }

    .aviso-subtitulo {
        font-size: 0.9em;
    }

    .aviso-container {
        padding: 40px 20px;
    }

    .aviso-logo img {
        max-width: 180px;
    }

    .aviso-section {
        background-attachment: scroll;
    }
}

@media (max-width: 479px) {
    .aviso-mensagem {
        font-size: 1.6em;
    }

    .aviso-botao {
        padding: 12px 30px;
        font-size: 11px;
    }
}
