/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    line-height: 1.6;
}

/* Container principal */
.container {
    text-align: center;
    max-width: 500px;
    width: 90%;
    padding: 2rem 1rem;
    animation: fadeIn 1.2s ease-out;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Logo */
.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 3rem;
    opacity: 0.9;
    filter: grayscale(0.1);
}

/* Tipografia */
h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.status {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.message {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 3rem;
    font-weight: 300;
}


/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.footer p {
    font-size: 0.85rem;
    color: #999999;
    font-weight: 300;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 250px;
        width: 70%;
        margin-bottom: 2rem;
    }
    
    .status {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .message {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.8rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .logo {
        max-width: 200px;
        width: 60%;
        margin-bottom: 1.5rem;
    }
    
    .status {
        font-size: 0.85rem;
    }
    
    .message {
        font-size: 0.95rem;
    }
}

/* Modo escuro (opcional) */
@media (prefers-color-scheme: dark) {
    body {
        background: #ffffff;
        color: #333333;
    }
    
    h1 {
        color: #2c2c2c;
    }
    
    .status {
        color: #666666;
    }
    
    .message {
        color: #444444;
    }
    
    .footer {
        border-top-color: #f0f0f0;
    }
    
    .footer p {
        color: #999999;
    }
}

/* Efeitos sutis de hover */
.logo {
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Foco para acessibilidade */
*:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}