﻿
.features {
    text-align: center;
    margin: 40px 0px 0px 0px;
}

    .features h2 {
        margin-bottom: 10px;
    }

    .features .underline {
        display: inline-block;
        width: 200px;
        height: 2px;
        background-color: #5AF151;
        margin-bottom: 10px;
    }
.centered-recuadro {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
}
.recuadro {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    padding: 20px;
    max-width: 1200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contenido {
    flex: 2;
    padding-right: 20px;
}

    .contenido h5 {
        margin-top: 0;
        color: #666;
    }

    .contenido h4 {
        margin-top: 0;
        color: #666;
    }

    .contenido h2 {
        margin-top: 5px;
    }

    .contenido p {
        color: #666;
    }

    .contenido ul {
        list-style: none;
        padding: 0;
    }

        .contenido ul li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

            .contenido ul li::before {
                content: "✔️";
                margin-right: 10px;
                color: #5AF151;
            }

    .contenido button {
        background-color: #256A21;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

.imagenes {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    margin: auto;
    /* grid-template-rows: repeat(3, 1fr); */
    grid-gap: 10px;
}

    .imagenes img {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
    }

.enlace {
    margin-top: 20px;
    background-color: #256A21;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}
