/*=========================================
=      SUCURSALES - INDEX PRINCIPAL       =
=========================================*/

.index-sucursal-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.10);

    transition:.30s;

    height:100%;

}

.index-sucursal-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.index-sucursal-img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

    background:#f5f5f5;

}

.index-sucursal-body{

    padding:25px;

    text-align:center;

}

.index-sucursal-body h4{

    font-weight:800;

    margin-bottom:12px;

    color:#222;

}

.index-sucursal-body p{

    color:#666;

    min-height:48px;

    margin-bottom:20px;

}

.index-btn{

    display:inline-block;

    background:#fbaf32;

    color:#fff;

    padding:12px 26px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.index-btn:hover{

    background:#e59d22;

    color:#fff;

    transform:translateY(-2px);

}

@media(max-width:768px){

.index-sucursal-card{

    margin-bottom:25px;

}

.index-sucursal-img{

    height:180px;

}

}

