@import url(/lib/fontello/fontello.css);
@import url(header.css);
@import url(footer.css);
@import url(login.css);
@import url(/css/masterPage/modal.css);
@import url(/css/masterPage/tarjetas.css);
@import url(/css/masterPage/spinner.css);

/*Boton iniciar sesion*/
.btn-primary-login {
    margin-left: auto;
    background-color: #1557a3;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    outline: none;
}

.btn-primary-login:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-login:active {
    transform: translateY(0px);
}

.header-actions {
    display: flex;
    margin: 10px;
}


body {
    width: 100%;
}

#home {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

header {
    background: none;
    box-shadow: none;
    height: 80px;
}

.not-transparent {
    background: #c8d2dc;
}

.head {
    background: rgba(100,100,100,0.5);
    width: 100%;
    height: 160px;
    box-shadow: 0em 0.3em 0.5em #000;
}

#content p {
    font-size: 20pt;
    display: block;
    width: 100%;
    padding: 5%;
    text-align: justify;
}

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

h1 {
    margin: 27px 0;
    font-size: 1.7em;
}

.banner_main {
    display: flex;
    background-image: url(/images/Home/Stoken_Main_Image.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 80vh;
}

#div_main_text {
    width: 325px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: 5%;
    height: 60vh;
    background: rgb(1 16 30 / 93%);
    border-radius: 50px;
    padding: 10px;
    text-align: center;
}

/* Grid de 4 para informacion general*/
.features-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

    .feature-item img {
        width: auto;
        height: 80px;
        flex-shrink: 0;
    }

.feature-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #1a5a96;
}

.feature-text p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    text-align: justify;
    hyphens: auto;
    font-size: 16pt;
}

/* grid de 4 x 1 para ecosistema (otras apps)*/
#div_ContenedorApps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#div_App {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
}

    #div_App:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.IconoSistema {
    height: 60px !important;
    width: auto;
    margin-bottom: 10px;
}

#div_App h4 {
    margin: 10px 0 5px 0;
    font-weight: bold;
    color: #333;
}

#div_App p {
    font-size: 1em;
    color: #666;
    line-height: 1.4;
}
/*Reporte 1*/
.flex-reporte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px; /* Un poco más de espacio para que respire */
    max-width: 1300px; /* Ampliamos un poco el ancho total */
    margin: 0 auto;
}

/* LA IMAGEN: Le damos más peso (65% aprox) */
.contenedor-captura {
    flex: 2; /* Al ser 2 contra 1, ocupará el doble de espacio */
    min-width: 350px;
    max-width: 800px; /* Aumentamos el límite de ancho */
}

/* EL TEXTO: Lo dejamos más compacto (35% aprox) */
.texto-reporte {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.img-sistema-preview {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5); /* Sombra más dramática */
    border: 1px solid #1a2a3a;
    display: block;
}

/* Ajuste para que en móviles no se vea gigante la imagen sola */
@media (max-width: 768px) {
    .flex-reporte {
        display: flex;
        flex-direction: column !important; /* Fuerza el orden vertical */
        text-align: center;
    }

    .texto-reporte {
        order: 1; /* Texto arriba */
        margin-bottom: 20px;
    }

    .contenedor-captura {
        order: 2; /* Imagen abajo */
    }
}
/**/
.IconoSistema:hover {
    transform: scale(1.1);
}

footer {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#content {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    float: left;
}

@media (min-width: 320px) {
    h1 {
        display: block;
        color: #fff;
    }
}
/* (menos de 992px) */
@media (max-width: 992px) {
    #div_ContenedorApps {
        grid-template-columns: repeat(2, 1fr); /* Se acomodan de 2 en 2 */
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-text p {
        font-size: 12pt;
    }

    #div_ContenedorApps {
        grid-template-columns: 1fr;
    }

    #div_ecosistema h2 {
        font-size: 16pt !important;
    }
}
