/* Contenedor de cada ítem */
.item-porque {
    text-align: center;
}

.icono-circulo {
    width: 160px;
    height: 160px;
    background-color: #8DD88A;   /* Verde planta un poco más oscuro 🌿 */
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
/* Imagen interna del icono */
.icono-img {
    width: 90px;
    height: 90px;
    animation: pulse 2.2s ease-in-out infinite;
}



/* Pulso suave */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}
