:root {
    --amarelo-straw: #ffde66;
    --fundo-escuro: #1a1e23;
    --texto-claro: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--fundo-escuro);
    color: var(--texto-claro);
    overflow: hidden; 
    width: 100%;
    height: 100vh;
}

.container-tela {
    height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    padding: 40px 20px 0 20px; 
    text-align: center;
}

.bloco-logo {
    margin-bottom: 2vh;
}

.logo-principal {
    max-width: 140px; 
    height: auto;
}

.secao-informativa {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secao-informativa h1 {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.secao-informativa h1 span {
    color: var(--amarelo-straw);
}

.secao-informativa p {
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto 25px;
    opacity: 0.8;
}

.bloco-botao {
    margin-bottom: 25px;
}

.botao-destaque {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--amarelo-straw);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.redes-sociais {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.icone-link {
    color: var(--texto-claro);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.icone-link:hover {
    color: var(--amarelo-straw);
}


.ilustracao-rodape {
    width: 100%;
    max-width: 500px;
    margin-top: auto; 
    line-height: 0;  
}

.imagem-construcao {
    width: 100%;
    max-height: 35vh; 
    object-fit: contain;
}