/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-heading .highlight {
    color: #4141A1;
}

.section-subheading {
    font-size: 1.125rem; /* 18px */
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.icon-multi-empresa {
    background: linear-gradient(to bottom right, #4141A1, #6565b8);
}

.icon-punto-venta {
    background: linear-gradient(to bottom right, #2d2d7a, #4141A1);
}

.icon-facturacion {
    background: linear-gradient(to bottom right, #23236a, #2d2d7a);
}

.icon-inventario {
    background: linear-gradient(to bottom right, #1a1a55, #23236a);
}

.icon-multi-sucursal {
    background: linear-gradient(to bottom right, #4141A1, #9B9BCD);
}

.icon-seguridad {
    background: linear-gradient(to bottom right, #2d2d7a, #6565b8);
}

.feature-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem; /* 16px */
    color: #6b7280;
    line-height: 1.6;
}
