﻿:root {
    /*--bg-de: linear-gradient(to right, rgb(1, 9, 32), rgb(6, 22, 56), rgb(22, 70, 140), rgb(25,76,153));*/
    --bg-de: linear-gradient(to right, rgba(38,166,154,1) 0%, rgba(38,166,154,1) 24%, rgba(20,50,150,1) 100%);
}

.navbar-container {
    box-shadow: 0px 0px 10px 3px rgba(38,166,154, 0.2);
    position: sticky;
    /*top: 25px;*/
    border: none;

}

.menu-icon {
    display: none; /* Ocultar icono por defecto */
}

.navbar-buttom {
    font-weight: normal;
    color: #26A69A;
}

.navbar-buttom:hover {
    background-color: #26A69A;
    color: white;
    transition: all ease-in 300ms;
}

.active-menu {
    font-weight: bold;
    color: #26A69A;
    border-bottom: 6px solid #26A69A;
    transition: all ease-in 300ms;
}

.menu-container {
    display: flex;
    gap: 20px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.div-general {
    width: 100%; /* Ajusta el ancho según sea necesario */
    /*justify-content: center;*/
    position: relative; /* Ajusta la posición izquierda según sea necesario */
    top: 30px;
    align-items: center;
    /*text-align: center;*/
    display: flex;
    flex-direction: column;
}

.formContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 70%;
    max-width: 800px;
}

/*Estilo de tabla */
.estiloTabla {
    box-shadow: 0px 0px 10px 0px rgba(38,166,154,0.5);
    width: 70%;
}

.contenedorTabla {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.headerTabla {
    background: #26A69A;
    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;
}

.div-componentes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.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);
}

/*ESLOGAN*/
.eslogan-div {
    position: fixed;
    height: 25px;
    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("../fondo.jpg");
    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;
}

@keyframes marquee {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}
/*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%;
}

/*Carta  Tabla Imagen*/
.div-tablaImagen {
    width: 100%;
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
}
@media (max-width: 960px) {
    .menu-icon {
        display: inline-flex; /* Muestra el icono solo en pantallas pequeñas */
    }

    .menu-container {
        display: none; /* Oculta el menú en pantallas pequeñas */
    }

    .LoginContainer {
        width: 90%;
        left: 5%;
        gap: 30px;
    }

    .estiloTabla {
        width: 90%;
    }

    .div-filas {
        flex-direction: column;
        gap: 5px;
    }

    .div-componentes {
        width: 100% !important;
    }

    .formContainer{
        width: 90%;
    }

    .cartaImagen {
        width: 95%;
    }
}
