.sistemas-page {
    min-height: 100vh;
    padding: 150px 5%;
    background-image: url("../img/fondo_suave.avif");
}

/* HERO */

.hero-sistemas {
    text-align: center;
    max-width: 1100px;
    margin: auto;
    animation: fadeUp 1s ease;
}

.hero-sistemas .badge {
    color: #0b3e90;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-sistemas h1 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 900;
    background: linear-gradient(90deg,
            #011d49,
            #19b1f2,
            #011d49);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    max-width: 800px;
    margin: 30px auto;
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* TITULOS */

.beneficios h2,
.incluye h2,
.ejemplos h2 {
    text-align:center;
    margin-bottom:50px;
    margin-top:90px;
    color: #0b3e90;
    font-size: clamp(1rem, 5vw, 3.5rem);
}

/* BENEFICIOS */
.beneficios{
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}
.beneficio-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease
}

.beneficio-card:hover {
    transform: translateY(-8px);
    border-color: #19b1f2;
}



.beneficio-card h3 {
    color: #011d49;
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.beneficio-card p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}





/* INCLUYE */
.incluye {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.incluye-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease
}

.incluye-card:hover {
    transform: translateY(-5px);
    border-color: #19b1f2;
}


.incluye-card .icono {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    color: #19b1f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}


.incluye-card .icono svg {
    width: 30px;
    height: 30px;
}


.incluye-card p {
    font-size: .99rem;
    color: #0b3e90;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* EJEMPLOS */
.ejemplos {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.ejemplos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ejemplo-card {
    background: #d0daff;
    padding: 30px;
    border-left: 4px solid #0b3e90;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ejemplo-card:hover {
    background: #ffffff;
    border-left-color: #0b3e90;
    transform: translateX(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ejemplo-card p {
    margin: 0;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 500;
}

/* CTA */

.cta-sistemas {
    margin-top: 100px;
    padding: 80px 20px;
    border-radius: 32px;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 600px;
}

.cta-sistemas h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: #19b1f2;
}

.cta-sistemas p {
    font-size: 1.3rem;
    color: #0b3e90;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Botón mejorado */
.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #016b98;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: rgb(160, 219, 246);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 170, 236, 0.4);
}

/* FOOTER */

.footer {
    background: #000;
    text-align: center;
    padding: 30px;
    border-top: 1px solid #007BFF;
}

/* ANIMACION */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* MOVIL */
@media(max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .sistemas-page {
        padding: 50px 15px;
    }

  
    .incluye-grid,
    .ejemplos-grid {
        display: grid;
        grid-template-columns: 1fr !important; 
        gap: 15px;
        width: 100%;
    }

    .incluye-card,
    .ejemplo-card {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-sistemas h1 {
        font-size: 2rem !important; 
    }
    

    .ejemplo-card p {
        font-size: 1rem !important;
        text-align: justify;
    }
   
    @media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
         width: 100%;
        box-sizing: border-box;
    }
    
    .beneficio-card {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        
    }
}
}