﻿:root {
    /*Las numeros romanos simbolizan del mas claro al mas oscuro, ejemplo Azul(I): es el mas claro*/
    --primaryColor: #90A4AE; /*Gris (II)*/
    --color1: #0159BB; /*Azul (II)*/
    --color2: #0070C0; /*Azul (I)*/
    --color3: #002B71; /*Azul (IV)*/
    --color4: #003366; /*Azul (V)*/
    --color5: #03399B; /*Azul (III)*/
    --color6: #999999; /*Gris (I)*/
    --bg-de: linear-gradient(to right, var(--color3), var(--color4), var(--color5), var(--color1), var(--color2));
    --titulos: 'Bebas Neue';
    --subtitulos: 'Poppins';
    --parrafos: 'Inter';
}

h1, h2 {
    font-family: var(--titulos);
    color: var(--color1);
}

h3, h4 {
    font-family: var(--parrafos);
    /*font-weight: 900;*/
    color: var(--primaryColor);
}

.navbar-container {
    /*background: var(--bg-de);*/
    box-shadow: 0px 0px 10px 0px var(--color2);
    position: sticky;
    top: 0px;
    border: none;
}

.div-general {
    width: 100%; /* Ajusta el ancho según sea necesario */
    position: relative; /* Ajusta la posición izquierda según sea necesario */
    top: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.formContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 70%;
    max-width: 800px;
}

.menu-container {
    display: flex;
    gap: 20px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.menu-icon {
    display: none; /* Ocultar icono por defecto */
}

.navbar-buttom {
    font-family: var(--parrafos);
    /*font-weight: 900;*/
    color: var(--primaryColor);
}

    .navbar-buttom:hover {
        background-color: var(--primaryColor);
        color: white;
        transition: all ease-in 300ms;
    }

.active-menu {
    font-family: var(--parrafos);
    /*font-weight: 900;*/
    color: var(--color2);
    border-bottom: 6px solid var(--color2);
    transition: all ease-in 300ms;
}

 /*DISPOSITIVOS MOVILES*/
.navbar-buttom2 {
    font-family: var(--subtitulos);
    /*font-weight: 900;*/
    color: var(--color2);
}

    .navbar-buttom2:hover {
        background-color: var(--color2);
        color: white;
        transition: all ease-in 300ms;
    }
/**/

/*Estilo de tabla */
.estiloTabla {
    box-shadow: 0px 0px 10px 0px var(--color6);
    width: 80%;
}

.contenedorTabla {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.headerTabla {
    background: var(--bg-de);
    color: white;
}

    .headerTabla th {
        text-align: center;
        color: white;
    }

.rowTabla {
    text-align: center;
    border-bottom: 1px solid rgba(30,70,130,0.1);
}

    .rowTabla td {
        text-align: center;
        border: none;
    }

/*Home*/
.home {
    padding: 100px;
    text-align: center;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.div-filas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.div-componentes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.containerButton {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

/* */
.cardSubtitulo {
    border: 1px solid rgba(128, 128, 128, 0.4);
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

.encContable {
    width: auto;
    font-size: 14px;
    margin-top: -20px;
    margin-left: 20px;
    background: white;
    padding-left: 15px;
    padding-right: 15px;
}

/* Etiqueta */
.etiqueta {
    position: fixed;
    height: 25px;
    color: white;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 1);
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 1s ease-in-out;
    cursor: pointer;
    text-align: left;
    padding: 0px 10px;
    width: max-content;
    height: max-content;
    right: -5px;
}

.primeraEtiqueta {
    background-color: rgba(190, 20, 20, 1);
}

.segundaEtiqueta {
    background-color: rgba(255, 200, 5, 1);
}

/*CARTA IMAGEN*/
.blur {
    backdrop-filter: blur(10px);
}

.cartaImagen {
    background-color: transparent;
}

.cartaImagen-title {
    background: rgb(from var(--mud-palette-info-lighten) r g b / 50%);
    color: var(--mud-palette-white);
}

.cartaImagen-surface {
    background: rgb(from var(--mud-palette-surface) r g b / 75%);
}

.imagenMostrar {
    width: 100%;
    height: 100%;
}

/*ESLOGAN*/
.eslogan-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    background: var(--bg-de);
    color: white;
    padding: 2px 0;
    overflow: hidden;
    z-index: 1000;
}

.eslogan-text {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

/*Login*/
.Login {
    /*background-image: url("https://localhost:7004/Iconos/Fondo.png");*/
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.LoginContainer {
    width: 50%;
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: -10%;
    left: 10%;
}

.imgLogin {
    width: 60%;
}

.LoginForm {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.formLoginInput {
    width: 100%;
    background: rgba(255,255,255,0.4);
}

.LoginContainerButton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Marca de agua*/
.Marca {
    background-color: transparent;
    position: fixed;
    bottom: 20px; /* Ajusta según sea necesario */
    left: 20px; /* Ajusta según sea necesario */
    width: 150px; /* Ajusta el tamaño de la imagen */
    opacity: 0.5; /* Nivel de transparencia para el efecto de marca de agua */
    pointer-events: none; /* Evita que la imagen interfiera con clics */
}

@keyframes marquee {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@media (max-width: 1200px) {
    .menu-icon {
        display: inline-flex; /* Muestra el icono solo en pantallas pequeñas */
    }

    .menu-container {
        display: none; /* Oculta el menú en pantallas pequeñas */
    }
}

@media (max-width: 900px) {

    .formContainer {
        width: 90%;
    }

    .estiloTabla {
        width: 90%;
    }

    .div-filas{
        flex-direction: column;
    }

    .div-componentes{
        width: 100% !important;
    }

    .cartaImagen{
        width: 95%;
    }

    .LoginContainer {
        width: 90%;
        left: 5%;
        gap: 30px;
    }
}
