/* Reutilizamos la base de la cuadrícula de 3 columnas de nosotros */
.servicios { 
    padding: 40px 15px; 
}

.servicios__main-title {
    text-align: center;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.servicios__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* HEADER DEL CONTENIDO CENTRAL */
.content-header { text-align: center; margin-bottom: 40px; }
.content-header__title { color: var(--color-secondary); margin-bottom: 15px; }
.content-header__text { font-size: 16px; color: #555; line-height: 1.6; }

/* GRID DE LOS 6 PUNTOS */
.servicios__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.s-feature {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 3px solid var(--color-primary);
}

.s-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.s-feature__icon {
    font-size: 35px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.s-feature__title { font-size: 17px; margin-bottom: 10px; color: #333; }
.s-feature__text { font-size: 14px; color: #666; }

/* BANNER DE GARANTÍA */
.warranty-badge {
    margin-top: 40px;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-radius: 50px;
}

.warranty-badge i { font-size: 30px; }


/* RESPONSIVIDAD ESCRITORIO */
@media (min-width: 992px) {
    .servicios__grid {
        grid-template-columns: 220px 1fr 220px;
        align-items: start;
    }
}