/* Sección de Servicios */
.services-section {
    background-color: #f8f9fa; /* Fondo ligeramente gris para contraste */
    padding: 100px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 25px;
    color: #2196F3; /* Icono azul */
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1; /* Para que todos los párrafos tengan altura similar */
}

.learn-more {
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1976D2;
}

/* Responsividad */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    .services-grid {
        margin-top: 40px;
    }
}