@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bluee: #11055f;
    --blue: #0606aa;
    --background: #F9F8FE;
    --verde: rgb(4, 174, 21);
    --hover: #15c0c3;
    --shadow: 0 15px 40px 0 rgba(91, 106, 149, 0.1);
    --padding-container: 10px 0;
}

section {
    padding: 30px 10%;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    list-style: none;
}

.features-item {
    position: relative;
    transition: 0.5s ease;
}

.features-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40%;
    background-color: #f5f3f6;
    border-radius: 10px;
    z-index: -1;
}

.features-item:hover {
    transform: translateY(-10px);
}

.features-card {
    background-color: #ffffff;
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.05);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.features-card .card-title {
    margin-block: 18px 15px;
}

.features-card h3 {
    margin-top: 15px;
    font-size: 1.2em;
    color: var(--bluee);
}

.features-card p {
    font-size: 0.8em;
}

.features-card img {
    margin-top: 20px;
}

.btn-s {
    display: inline-block;
    margin-top: 10px;
    color: var(--verde);
    text-decoration: none;
    padding: 5px 10px;
    font-weight: 500;
    border-top-left-radius: 15px;
}

.btn-s:hover {
    color: #15c0c3;
}

/* RESPONSIVO */
@media only screen and (max-width:875px) {

    .presentacion img {
        display: none;
    }

    #features .title {
        padding-top: 30px;
    }
}

@media only screen and (max-width:480px) {

    #features .features-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #features .features-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #features .features-list .features-item {
        width: 80%;
    }
}