


/* <style> */



/* --- SECCIÓN ECOSISTEMA SIFACON UNIQUE --- */
.sfc-eco-section {
    /* padding: 80px 20px; */
    /*background: #ffffff; /* O fondo muy claro para contraste si el hero es oscuro */
    background: #ffffff; /* O fondo muy claro para contraste si el hero es oscuro */
    font-family: 'Segoe UI', Roboto, sans-serif;


    
    margin: 0px;
    padding: 0px;

    padding-bottom: 2rem ;

}

.sfc-eco-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sfc-eco-header {
    text-align: center;
    margin-bottom: 50px;
}

.sfc-eco-badge {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sfc-eco-main-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin: 15px 0;
    font-weight: 800;
}

.sfc-eco-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Tarjetas */
.sfc-eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Tarjeta Individual */
.sfc-eco-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sfc-eco-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

/* Iconos Decorativos */
.sfc-eco-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    margin: 0 auto 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.sfc-eco-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.sfc-eco-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Botón Detalle - Estilo SIFACON IA */
.sfc-eco-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.sfc-eco-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .sfc-eco-main-title { font-size: 2rem; }
    .sfc-eco-grid { gap: 20px; }
}


    /* </style> */


