#auspiciantes-section{
    padding:60px 20px;
    background:#f5f7fa;
}

.aus-header{
    text-align:center;
    margin-bottom:35px;
}

.aus-header h2{
    font-size:34px;
    margin:0;
    color:#222;
}

.aus-header p{
    margin-top:8px;
    color:#666;
}

.sponsorsSwiper{
    width:100%;
    padding:15px 5px 60px;
}

.swiper-slide{
    height:auto;
    display:flex;
}

.aus-card{
    width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.aus-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.aus-cover{
    height:180px;
    overflow:hidden;
}

.aus-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.aus-card:hover .aus-cover img{
    transform:scale(1.08);
}

.aus-logo{
    width:120px;
    height:120px;
    margin:-60px auto 0;
    background:#fff;
    border-radius:50%;
    padding:6px;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
    position:relative;
    z-index:5;
}

.aus-logo img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}

.aus-content{
    padding:20px;
    text-align:center;
    flex:1;
}

.aus-content h3{
    margin:10px 0 8px;
    font-size:24px;
}

.aus-content p{
    color:#666;
    margin-bottom:20px;
}

.aus-data{
    margin-bottom:15px;
    font-size:14px;
    color:#555;
    line-height:1.6;
}

.aus-data a{
    color:#1976d2;
    text-decoration:none;
}

.aus-socials{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:20px;
}

.aus-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#444;
    transition:.3s;
    text-decoration:none;
}

.aus-socials a:hover{
    background:#1976d2;
    color:#fff;
    transform:scale(1.1);
}

.swiper-button-next,
.swiper-button-prev{
    color:#1976d2;
}

.swiper-pagination-bullet-active{
    background:#1976d2;
}

@media(max-width:768px){

#auspiciantes-section{
    padding:40px 12px;
}

.aus-header h2{
    font-size:28px;
}

.aus-cover{
    height:160px;
}

.aus-logo{
    width:100px;
    height:100px;
    margin-top:-50px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}