    #contacto .ci-icon{
        font-size: 18px;
    }
    .banner-image-2 {
        right: -181px;
        bottom: 81px;
        position: relative;
    }
    .banner-image-1 {
        width: 49.3%;
        margin: -30px 0px 0 38px;
    }    

    
    /* 🔥 contenedor logo */
    .anunciante {
        width: 56%;
        aspect-ratio: 4 / 3; /* mantiene proporción */
        
        background-size: contain;   /* 👈 clave para logos */
        background-position: center;
        background-repeat: no-repeat;
        margin: auto;

        background-color: #fff;
        border-radius: 10px;
        padding: 15px;

        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    /* hover bonito */
    .anunciante:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    /* spacing */
    .section {
        padding: 60px 0;
    }

    /*  Alineación de th y td en tablaJugadores  */
    #tablaJugadores th {        
        text-align: left !important;
    }    
    #tablaJugadores {
        table-layout: fixed;
        width: 100%;
    }

    #tablaJugadores th:nth-child(2),
    #tablaJugadores td:nth-child(2) {
        width: 50%;
    }

    #tablaJugadores th:nth-child(3),
    #tablaJugadores td:nth-child(3) {
        width: 15%;
    }

    #tablaJugadores th:nth-child(4),
    #tablaJugadores td:nth-child(4) {
        width: 15%;
    }

    #tablaJugadores th:nth-child(5),
    #tablaJugadores td:nth-child(5) {
        width: 20%;
    }    