/* ——— SERVICES ——— */
.services {
    padding: 120px 0;
    background: var(--fondo);
    position: relative;
}
.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.services-header p {
    color: var(--gris-acero);
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gris-linea);
    border: 1px solid var(--gris-linea);
}
.service-card {
    background: var(--blanco);
    padding: 52px 44px;
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--naranja);
    transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--azul); }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--blanco); }
.service-card:hover .service-num { color: var(--naranja); }
.service-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(148, 163, 184, 0.2);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.4s;
}
.service-icon {
    width: 40px; height: 40px;
    margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 12px;
    font-weight: 500;
    transition: color 0.4s;
}
.service-desc {
    font-size: 0.88rem;
    color: var(--gris-acero);
    line-height: 1.6;
    font-weight: 300;
    transition: color 0.4s;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}
