/* MODAL GERAL */
.modal.hidden {
    display: none;
}


.modal-content {
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    border: 1px solid var(--primary);

    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* evita estouro */
}



/* CONTEÚDO DO MODAL */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background-color: var(--primary);
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    background-color: var(--background);
    padding: 10px;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #ddd;
    text-align: right;
}

/* TÍTULO */
.modal-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: white;
}

/* BOTÃO FECHAR */
.close-modal {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background-color: var(--secondary);
    border-radius: 4px;
}


/*Cards Vehicle*/
.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}