/* Recuadro hover personalizado */
.recuadro {
    background-color: #f5f5f5;
    /* gris clarito */
    padding: 15px;
    transition: all 0.3s ease;
}

.recuadro:hover {
    border: 2px solid #1976d2;
    /* azul Materialize */
    background-color: #eeeeee;
    /* un gris un poco más fuerte al hover */
}

/* Ajuste de títulos en móviles para baja.html */
@media only screen and (max-width: 600px) {
    h4 {
        font-size: 1.4rem;
        /* más chico para "Placa: baja" */
    }

    .card-title {
        font-size: 1.2rem;
        /* más chico para "Homenaje al Primer Campeonato Sudamericano" */
    }
}

/* Estilos generales (PC / escritorio) */
h4 {
    font-size: 1.6rem;
}

.card-title {
    font-size: 1.4rem;
}

/* Tablets (pantallas entre 600px y 992px) */
@media only screen and (min-width: 600px) and (max-width: 992px) {
    h4 {
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* Móviles (pantallas hasta 600px) */
@media only screen and (max-width: 600px) {
    h4 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .card-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
}