@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
@import url('https://fonts.cdnfonts.com/css/gilroy-medium');

.sem-acesso-a-pagina-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.sem-acesso-a-pagina-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sem-acesso-a-pagina-container {
    background-color: #0b0b00;
    border: 1px solid #43410c;
    border-radius: 20px;
    overflow-y: auto;
    max-height: 95vh;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sem-acesso-a-pagina-overlay.is-visible .sem-acesso-a-pagina-container {
    transform: scale(1);
}

.sem-acesso-a-pagina-menu {
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: #ffffff;
    font-family: 'Gilroy-Bold', sans-serif;
    position: relative;
}

.sem-acesso-a-pagina-header {
    position: relative;
    display: flex;
    align-items: center;
}

.sem-acesso-a-pagina-logo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.sem-acesso-a-pagina-logo img {
    width: 105px;
}

.sem-acesso-a-pagina-closebtn {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 34px;
    display: flex;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}

.sem-acesso-a-pagina-closebtn img {
    width: 10px;
}

.sem-acesso-a-pagina-content-container {
    text-align: center;
}

.sem-acesso-a-pagina-content-message {
    text-align: center;
    font-family: 'Gilroy-Bold', sans-serif;
    font-weight: bold;
    line-height: 1.2;
    font-size: 20px;
    margin-top: 10px;
}

.sem-acesso-a-pagina-subtitle-message {
    font-size: 1rem;
    font-family: 'Gilroy-Medium', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.1;
    margin-top: 9px;
}

.sem-acesso-a-pagina-actions {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.sem-acesso-a-pagina-actions a {
    flex: 1;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-radius: 10px;
    text-align: center;
}

.sem-acesso-a-pagina-btn-login {
    color: #fff;
    background-color: #2F2F01;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.sem-acesso-a-pagina-btn-yellow-effect,
.sem-acesso-a-pagina-btn-register {
    color: #0b0b00;
    background-color: #f3eb1a;
    box-shadow: 0px 0px 20px 0px rgba(243, 235, 26, 0.6);
}

.sem-acesso-a-pagina-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.sem-acesso-a-pagina-actions a:hover {
    text-decoration: none;
}

.sem-acesso-a-pagina-btn-login:hover {
    color: #fff;
}

.sem-acesso-a-pagina-btn-yellow-effect:hover,
.sem-acesso-a-pagina-btn-register:hover {
    color: #0b0b00;
}