:root {
    --danger-red: #d81c1c;
    --danger-dark: #a01010;
    --danger-light: #ffebeb;
}

body {
    background-color: var(--danger-light);
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-denied-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(216, 28, 28, 0.2);
    max-width: 90%;
    width: 420px;
    border-top: 8px solid var(--danger-red);
    margin: 20px auto;
}

.logo-container {
    text-align: center;
    padding: 20px 20px 15px 20px;
    background-color: transparent;
}

.logo-container img {
    max-width: 80%;
    height: auto;
    /* Removido qualquer fundo */
}

.separator {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    margin: 0 auto 0;
    width: 80%;
}

.card-header {
    background-color: var(--danger-red);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.card-header h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.animation-container {
    display: flex;
    justify-content: center;
    margin: -10px 0;
}

.message {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
}

.btn-return {
    background-color: var(--danger-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-return:hover {
    background-color: var(--danger-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.lock-icon {
    margin-right: 8px;
}

.card-footer {
    background-color: #f8f8f8;
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eee;
}

@media (max-width: 480px) {
    .access-denied-card {
        width: 95%;
    }
    
    .card-header h1 {
        font-size: 1.5rem;
    }
    
    .animation-container dotlottie-player {
        width: 180px !important;
        height: 180px !important;
    }
}