﻿.erro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: transparent;
    padding: 16px;
}

.erro-card {
    text-align: center;
    padding: 48px 36px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 420px;
    width: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

.erro-titulo {
    margin-top: 20px;
    font-weight: 700;
    color: #111111;
}

.erro-descricao {
    color: #555;
    margin: 16px 0 32px 0;
    line-height: 1.6;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .erro-card {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .erro-titulo {
        font-size: 1.4rem;
    }
}
