@import url(style.css);

body {
    background-color: var(--cinza-fundo);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: var(--azul-escuro);
}

.container {
    text-align: center;
    padding: 40px;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 90%;
}

.logo-box img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--azul-via);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--laranja);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.social-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
}

.social-contact a {
    color: var(--laranja);
    text-decoration: none;
    font-weight: bold;
}

.social-contact a:hover {
    text-decoration: underline;
}