* {
    margin: 0;
    padding: 0;

}

.row {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


header .container-fluid {
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
}


header .btn {
    background-color: #80b918;
    border-color: #80b918;
    border-radius: 50px;
}

.titulo1 {
    background-color: #5c378d;
    color: aliceblue;
    font-weight: 900;
    font-size: 25;
    
}

main .btn {

    background-color: #9a4b96;
    border-color: #9a4b96;
    border-radius: 50px;
}

.instructivo {
    color: #333333;
    font-weight: 700;
    text-align: center;
}

/* Clases de utilidad movidas desde el HTML */
.imageResponsive2 {
    display: none;
}

.imageResponsive1 {
    display: block;
}

/* Ajuste para que los banners no sean tan grandes */
.banner-container {
    max-width: 950px; /* Tamaño más contenido para escritorio */
    margin: 0 auto;
}

.banner-container img {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ImgRespon {
    transition: 0.3s;
    cursor: pointer;
}

.ImgRespon:hover {
    transform: scale(1.1);
}

.icono-info {
    color: #0248a2;
}

.icono-info i {
    font-size: 3.5rem;
}

table, td {
    text-align: center;
    font-size: 20px;
    max-width: 70%;
}

@media (max-width: 767px) {
    .imageResponsive1 {
        display: none;
    }
    .imageResponsive2 {
        display: block;
    }

    .banner-container {
        max-width: 100%; /* En móvil aprovechamos todo el ancho */
    }

    .ColDeco {
        padding: 10px 0 !important;
    }

    /* Ajuste de iconos e imágenes de info */
    .icono-info i, .ColDeco img {
        font-size: 2.5rem !important;
        max-width: 70px !important;
        height: auto;
    }

    /* Menos espacio entre icono y texto */
    .ColDeco .row {
        align-items: center;
    }

    /* Fecha */
    .ColDeco h2 {
        font-size: 2rem;
        line-height: 1;
    }

    /* Sedes */
    .ColDeco p {
        margin-bottom: 3px;
        font-size: .9rem;
        line-height: 1.3;
    }

    /* Botón */
    .btn-inscripcion,
    button {
        width: 80%;
        max-width: 260px;
        font-size: 1rem;
    }

    .ImgRespon {
        width: 85% !important;
    }
    table, td {
        max-width: 100% !important;
        font-size: 16px !important;
    }
}