:root {
    --cor-primaria: #2c3e50;
    --cor-secundaria: #3498db;
    --cor-texto-claro: #ffffff;
    --fonte-titulo: 'Poppins', sans-serif;
    --fonte-corpo: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: var(--fonte-corpo);
    background-color: var(--cor-primaria);
}

.tela-cheia {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: var(--cor-texto-claro);
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.conteudo {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeIn 1.2s ease-out;
}

.tag-status {
    display: inline-block;
    font-family: var(--fonte-titulo);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cor-secundaria);
    margin-bottom: 20px;
    opacity: 0.8;
}

h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.divisor {
    width: 60px;
    height: 4px;
    background-color: var(--cor-secundaria);
    margin: 0 auto 30px;
    border-radius: 2px;
}

p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

p strong {
    color: #fff;
    font-weight: 400;
}

.detalhe-decorativo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
}

.detalhe-decorativo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--cor-secundaria);
    box-shadow: 0 0 15px var(--cor-secundaria);
    animation: carregar 3s infinite ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes carregar {
    0% { left: -30%; }
    100% { left: 100%; }
}

@media (max-width: 480px) {
    .conteudo {
        padding: 0 10px;
    }
    h1 {
        margin-bottom: 20px;
    }
}