/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 07 2026 | 04:11:54 */
/* ===== Features Section ===== */

.features-section {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e8edf3;
    margin-top: 15px;
}

.features-section .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: left;
}

/* Lista */
.features-section .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Cada elemento */
.features-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

/* Último elemento sin línea */
.features-section .feature-list li:last-child {
    border-bottom: none;
}

/* Check moderno */
.features-section .feature-list li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Hover elegante */
.features-section .feature-list li:hover {
    color: #0f172a;
    transform: translateX(3px);
    transition: all 0.2s ease;
}