/*--------------------------------------------------*/
/* Galería */
/*--------------------------------------------------*/
/* Galería de Invernaderos */
.gallery h2 {
    color: #228B22;
    text-align: center;
    margin-bottom: 0px;
}

.gallery-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
}

.gallery-item {
    width: 20%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}
/*--------------------------------------------------*/
/* Sección de Beneficios */
/*--------------------------------------------------*/
/* Beneficios de Nuestros Invernaderos */
.benefits h2 {
    color: #228B22;
    text-align: center;
    padding: 20px;
    margin-top: 0;
}

.benefit-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: #228B22;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #555;
}