

body {
    font-family: sans-serif;
}
.services-header {
    background: linear-gradient(to right,rgb(245, 221, 5),rgb(238, 208, 11));
    color: white;
    padding: 2rem 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}


.service-icon {
width: 80px;
height: 80px;
background: rgb(236, 199, 13);
border-radius: 50%;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}

.icon-image {
width: 40px;
height: 40px;
object-fit: contain;
filter: brightness(0) invert(1); 
}

/* Efecto hover opcional */
.service-icon:hover {
transform: scale(1.1);
background: rgb(229, 197, 18);
}

.features-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.features-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    color:rgb(225, 195, 25);
    position: absolute;
    left: 0;
}


