

    
body {
    position: relative;
    /* Aseguramos que el body tenga una posición relativa para que el ::after funcione correctamente */
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    /*Ajustartransparenciadelaimagendefondo*/
    z-index: -1;
    filter: brightness(30%);
    -webkit-filter: brightness(30%);

}

.navbar {
    background-color: #3E3E3F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2vw;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;

}

.navbar-buttons {
    display: flex;
    gap: 1.5vw;
}

.navbar-img-left {
    width: 8vw;
    height: auto;
}

.navbar-img-right {
    max-width: 4vw;
    height: auto;
}

.btn-primary {
    background-color: #3E3E3F !important;
    color: #fff;
    border-color: #3E3E3F !important;
    font-size: 1.3vw;
    font-family: sans-serif !important;
}

.btn-primary:hover {
    background-color: #3E3E3F !important;
    border-color: #3E3E3F !important;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #3E3E3F !important;
    border-color: #3E3E3F !important;
}


    
    .dropdown-menu .dropdown-item:hover {
        background-color: #3E3E3F !important;
        border-color: #3E3E3F !important;
        border: none;
        text-shadow: 0 0 5px  #2bb9e5;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(224, 228, 236, 0.274) !important;
        /* Cambia el color de fondo al pasar el cursor sobre las opciones del menú */
    }
    
    .dropdown-item:hover {
        color: #2bb9e5 !important;
    }

    .dropdown-menu {
        background-color: #3E3E3F !important;
        border-color: #73a3b6 !important;
    }

 .dropdown-menu .dropdown-item {
    color: #2bb9e5 !important;
    background-color: #3E3E3F !important;
    border-color: #2bb9e5 !important;
}

    .dropdown-menu .dropdown-divider {
        border-top: 1px solid #2bb9e5;
    }

    .vertical-line {
        position: fixed;
        bottom: 0;
        width: 60px;
        display: flex;
        flex-direction: column;
        /* Alinea los elementos verticalmente */
        justify-content: center;
        /* Centra los elementos verticalmente */
        align-items: center;
        /* Centra los elementos horizontalmente */
    }
    
    .left-line {
        top: 0;
        left: 0;
    }
    
    .right-line {
        top: 0;
        right: 0;
    }
    
    .vertical-line hr {
        margin: 5px 0;
        /* Ancho de las líneas */
        height: 60px;
        /* Altura de las líneas */
        border-radius: 6px;
        /* Agrega este estilo para redondear los bordes */
    }
    
    .linea1 {
        border: none;
        border-right: 3px solid #a2bee0;
        /* Agrega una unidad de medida (px) */
    }
    
    .linea2 {
        border: none;
        border-left: 3px solid #f80008;
        /* Agrega una unidad de medida (px) */
    }
    
    .vertical-line.left-line i {
        color: #BCCCE0;
        /* Color para los íconos de la izquierda */
    }
    
    .vertical-line.right-line i {
        color: #ff0008;
        /* Color para los íconos de la derecha */
    }
    