﻿.modal-convite {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    width: 90%;
    max-width: 400px;
    z-index: 10001;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-family: var(--font-family-montserrat);
    text-align: center;
}

.modal-convite-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-convite-fechar {
    background: none;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.logo-modal-convite {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #f8f8f8;
    padding: 10px;
}

.modal-convite-textos h2 {
    font-size: 20px;
    color: var(--cor_principal);
    margin-bottom: 10px;
}

.modal-convite-textos p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    padding: 0 10px;
}

.botao-cadastro-modal {
    width: 100%;
    background-color: var(--cor_principal);
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-family-montserrat);
    margin-bottom: 10px;
    display: inline-block;
}

    .botao-cadastro-modal:hover {
        background-color: #e60073; /* cor mais escura no hover */
    }

.separador-ou {
    margin: 10px 0;
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    position: relative;
}

    .separador-ou::before,
    .separador-ou::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #ccc;
        margin: 0 10px;
    }

.botao-login-modal {
    width: 100%;
    background-color: #555; /* cinza para diferenciar */
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-family-montserrat);
    display: inline-block;
}

    .botao-login-modal:hover {
        background-color: #444;
    }

.fundo-escuro-cadastro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
}

/* Travar o scroll do body quando a modal abrir */
.scroll-bloqueado {
    overflow: hidden;
    height: 100%;
}
