* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f7f6;
    color: #2f2f2f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 720px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

h1 {
    color: #0b6b3a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-text {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsivo */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 20px;
    }

    .logo {
        width: 110px;
    }
}
