.banner-section {
    width: 100%;
    height: 625px;
}
.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*info*/
.info-card {
    background: #f8f9fc;
    border: 1px solid #dce3f1;
    border-radius: 8px;
    padding: 30px;
}
.info-title {
    display: block;
    font-weight: bold;
    color: #0bbaff;
    font-size: 18px;
}
.info-value {
    display: block;
    font-size: 16px;
    color: #004a8b;
    font-weight: bold;
}
.img-info{
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-info img{
    width: 60%;
    border-radius: 10px;
}
/*New*/
.img-racing-person{
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.title-design{
    background-color: #004a8b;
    border-radius: 20px;
    padding: 5px 25px;
    font-size: 24px;
}
.title-racing{
    font-size: 70px;
    font-weight: bold;
}
.description-racing{
    font-size: 16px;
    text-align: justify;
    margin-bottom: 40px;
}
.pl-50{
    padding-left: 50px;
}
.icon-box {
    width: 60px;
    height: 60px;
    background-color: #0BBAFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-box img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
/*Profile*/
.title-profile{
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-weight: 700;
}
.title-profile::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        250deg,
        rgba(11, 186, 255, 1) 60%,
        rgba(255, 255, 255, 1) 90%
    );
    border-radius: 6px;
}
.title-profile span{
    font-size: 70px;
}
.my-8{
    margin-top: 8rem;
    margin-bottom: 8rem;
}
.list-check{
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-check li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
.list-check li::before{
    content: "✓";
    width: 20px;
    height: 20px;
    background-color: #0bbaff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}
/*convenios*/
.alter-bg-gradient::after{
    background: linear-gradient(
        250deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(11, 186, 255, 1) 50%,
        rgba(255, 255, 255, 1) 100%
    );
}
.card-convenio {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.25s ease-in-out;
    border: 1px solid #e5e8f0;
}
.card-convenio img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 15px;
    background: #f6f8fc;
}
.card-convenio:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
/*Sede*/
.sede-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 6px solid #004a8b;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    transition: all .3s ease;
}
.sede-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.sede-title {
    font-weight: 800;
    color: #004a8b;
    margin-bottom: .3rem;
}
.sede-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #004a8b;
    margin-bottom: 1rem;
}
.sede-address {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.sede-address img{
    filter: brightness(0) saturate(100%) invert(76%) sepia(55%) saturate(5846%) hue-rotate(163deg) brightness(100%) contrast(103%);
}
.icon-location {
    width: 28px;
}
.btn-loayza-location {
    background: #004a8b;
    border: none;
    border-radius: .7rem;
    padding: .75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background .3s ease;
    color: white;
}
.btn-loayza-location:hover {
    color: white;
}
.btn-loayza-location:hover {
    background: #004a8b;
}
@media (max-width: 768px) {
    .banner-section {
        height: 350px;
    }
    .banner-section img {
        object-fit: fill;
    }
    .img-racing-person{
        width: 80% !important;
        margin-bottom: 40px;
    }
    .sede-card{
        margin-bottom: 20px;
    }
}
@media (max-width: 425px) {
    .banner-section {
        height: 200px;
    }
    .img-desk{
        display: none;
    }
    .img-mobile{
        display: block;
    }
    .title-design{
        font-size: 18px;
    }
    .title-racing{
        font-size: 50px;
    }
    .title-profile span{
        font-size: 60px;
    }
}