/* Cabecera verde con texto blanco */
.custom-header {
    background-color: #1a963a;
    color: white;
    padding: 15px 20px;
    border-bottom: none;
}



.custom-header .modal-title {
    font-size: 1.25rem;
    margin: 0;
}

.custom-header .close {
    color: white;
    opacity: 1;
    font-size: 1.5rem;
}

/* Cuerpo del modal */
.modal-body {
    padding: 40px!important;
}

/* Botones de bancos alineados en desktop */
.bank-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* permite que en móviles caigan hacia abajo */
}

.bank-buttons a img {
    max-width: 150px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.bank-buttons a img:hover {
    transform: scale(1.05);
}

.close{
	margin-right:10px;
}

#ficha .mb-0 {
	margin-bottom:20px;
}

/* Ajuste para móviles */
@media (max-width: 576px) {
    .bank-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .bank-buttons a img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 600px) {
  
	#ficha p {
		margin-top: 0px;
	}
}