.swiper-button-next svg,
.swiper-button-prev svg{
    display:none;
}

/*Para Modal 23-07-2026*/
 /* Fondo oscuro */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

    align-items: center;
    justify-content: center;
}

/* Caja del modal */
.modal-contenido {
    background: #none;
    width: 90%;
    max-width: 700px;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    text-align: center;

    animation: aparecer 0.3s ease;
}

/* Botón cerrar */
.cerrar-modal {
    position: absolute;
    right: -15px;
    top: -30px;
color: white;
    border: none;
    background: transparent;
    font-size: 40px;
    cursor: pointer;
}

/* Botón */
.btn-modal {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #005baa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


/* Animación */
@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/**//**//**//**/