/*Importando Gogle fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
} */

.swi-container {
    padding: 2%;
    /* margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;  */
    background: linear-gradient(#eceffe,#ced6fb);

}

.card-list, .card-item {
    list-style: none;
}


.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:hover {
    border-color: #5372f0;
}

.card-list .card-link .card-image  {
    width: 100%;
    /* aspect-ratio: 16/9; */
    object-fit: cover;
    border-radius: 10px;

}

.card-list .card-link .badge  {
    color: #5372f0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight:500;
    margin: 16px 0 18px;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;

}

.card-list .card-link .badge.secury  {
    color: #205c20;
    background: #d6f8d6;
}

.card-list .card-link .badge.service  {
    color: #121fdb;
    background: #7186ff;
}

.card-list .card-link .badge.educacion  {
    color: #e06410;
    background: #ffc49d;
}

.card-list .card-link .card-title  {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;

}

.card-list .card-link .card-button  {
    
    height: 35px;
    width: 35px;
    color: #5372f0;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #5372f0;
    transform: rotate(-45deg);
}

.card-list .card-link:hover .card-button  {
    color: #fff;
    background: #5372f0;
}