/* <style> */



/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fa;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
}

/* ===== PROBLEMA Y SOLUCIÓN ===== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* ===== ECOSISTEMA ===== */

.ecosistema {
    background: #ffffff;
}

.module {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.module h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.module p {
    margin-bottom: 20px;
}

.btn-secondary {
    background: #0f172a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #1e293b;
}

/* ===== MÉTRICAS ===== */

.metrics {
    background: #0f172a;
    color: white;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.metric h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* ===== CLIENTES ===== */

.clientes {
    background: #f8fafc;
    text-align: center;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.logo {
    background: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: bold;
}

/* ===== CTA FINAL ===== */

.cta {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* </style> */






/*  ABR ======*/




.sfc-ai-highlight {
    margin-top: 50px;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 35px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Efecto de brillo tecnológico de fondo */
.sfc-ai-highlight::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.15);
    filter: blur(80px);
    border-radius: 50%;
}

.sfc-ai-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.sfc-ai-icon i {
    font-size: 3.5rem;
    color: #38bdf8;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.sfc-ai-text h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #38bdf8;
    font-weight: 700;
}

.sfc-ai-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
    max-width: 700px;
}

.sfc-btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
    white-space: nowrap;
}

.sfc-btn-outline:hover {
    background: #38bdf8;
    color: #0f172a;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .sfc-ai-content {
        flex-direction: column;
        text-align: center;
    }
    .sfc-ai-text p {
        margin-bottom: 20px;
    }
}













