.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; 
}

.row {
    display: flex;
    max-width: 1064px;
    align-items: center;
}

.card {
    border-radius: 5px;
    box-shadow: 7px 7px 7px 0px #242c5934;
    padding: 5px;
    margin: 5px;
    width: 30%;
    transition: all 0.3s ease-out;
}

.card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.card p {
    color: #393a3e;
    font-size: 14px;
}

.image-video {
    border-radius: 5px;
    width: 1064px;
    height: 1064px;
}

.compartilhamento {
    border-left: 3px solid #f5a11a;
    background-color: #6CC26C10;
}

.receber {
    border-left: 3px solid #6CC26C;
    background-color: #6CC26C10;
}


.btn-outline-success {
    background-color: #fff;
    color: #474aa4;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-success:hover {
    background-color: #474aa4;
    color: #fff;
}

.modal {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

.conteudo-modal {
    margin: 0 auto;
    margin-top: 8px;
    max-width: 60%;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 60px;
}

.conteudo-video {
    width: 100%;
    aspect-ratio: 16/9;
    vertical-align: center;
}

.cabecalho-modal {
    padding: 1px 8px;
    display: flex;
    border-bottom: solid #eee 1px;
}

.cabecalho-modal .cabecalho-titulo-modal {
    font-weight: bold;
    margin: 10px;
}

.cabecalho-modal .cabecalho-modal-fechar {
    padding: 20px 10px;
    cursor: pointer;
}

.corpo-modal {
    padding: 30px 60px 8px 60px;
    overflow: auto;
    max-height: 85vh;
}

.link-modal {
    font-size: 14px;
}

.corpo-modal .corpo-modal-title {
    display: grid;
    grid-auto-flow: column;
}

.corpo-modal-title h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.corpo-modal-subtitle {
    margin-top: 0px;
    word-break: break-word;
    font-size: 14px;
}

.rodape-modal {
    border-top: solid #eee 1px;
    padding: 8px;
}