/* ==========================================================================
   FONTES E VARIÁVEIS
   ========================================================================== */
@font-face {
    font-family: 'Venice Classic';
    src: url('/Assets/fonts/VeniceClassic.ttf');
}

:root {
    --bg-page: #faf8f2;
    --bg-container: #fffefc;
    --block-border: #d7c0b0;
    --soft-shadow: #ece0d8;
    --dusty-rose: #eac8c8;
    --text-title: #8a6e64;
    --text-main: #6b5e57;
    --font-title: 'Venice Classic', serif;
}

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

body {
    background-color: var(--bg-page);
    background-image: url('/Assets/background.png');
    background-repeat: repeat;
    background-size: auto;
    color: var(--text-main);
    
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;     
    font-family: sans-serif; 
}

/* ==========================================================================
   CONTAINER DA MENSAGEM
   ========================================================================== */
.conteiner {
    background: var(--bg-container);
    width: 90%;            
    max-width: 450px;     
    padding: 40px;
    
    border: 3px dashed var(--dusty-rose);
    border-radius: 15px;
    box-shadow: 8px 8px 0px var(--soft-shadow);
    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-family: var(--font-title);
    font-size: 2.5rem; 
    color: var(--text-title);
    line-height: 1.1;
}

p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-family: var(--font-title);
}

img {
    width: 120px;
    height: auto;
    image-rendering: pixelated;
    margin-bottom: 10px;
}

/* ==========================================================================
   BOTÃO / LINK
   ========================================================================== */
a {
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-title);
    
    padding: 8px 15px;
    border: 1px solid var(--block-border);
    border-radius: 8px;
    background-color: #fff;
    border-bottom: 3px solid var(--block-border);
    transition: all 0.2s;
}

a:hover {
    background-color: var(--dusty-rose);
    color: #fff;
    border-color: var(--text-title);
    transform: translateY(2px); 
    border-bottom-width: 1px;
}

/* Animação suave de flutuar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}