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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.message {
    font-size: 1.8rem;
    font-weight: 300;
    color: #4a4a4a;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.email:hover {
    opacity: 0.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .logo {
        max-width: 500px;
        margin-bottom: 70px;
    }
    
    .message {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    
    .email {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 350px;
        margin-bottom: 50px;
    }
    
    .message {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .email {
        font-size: 1.3rem;
    }
}