        /* Ocultar el dropdown por defecto */
        .dropdown-content {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease-in-out;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 1;
        }

        .logo_web{
            border-radius: 40%;
        }

        /* Mostrar el dropdown con animación */
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Estilo de los enlaces en el dropdown */
        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #f1f1f1;
            border-radius: 8px;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f9f9f9;
            color: #007acc;
        }

        #popup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        #overlay {
            display: none;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5); /* Fondo gris semitransparente */
            z-index: 1000;
            cursor: not-allowed; /* Cambia el cursor a no permitido */
        }
        
        /* From Uiverse.io by mrhyddenn */ 
.shadow__btn {
    padding: 10px 20px;
    border: none;
    font-size: 17px;
    color: #fff;
    border-radius: 7px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
  }
  
  .shadow__btn {
    background: rgb(15, 47, 189);
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.285);
  }
  
  .shadow__btn:hover {
    box-shadow: 0 0 5px rgba(0, 140, 255, 0.285),
                0 0 25px rgba(0, 140, 255, 0.285),
                0 0 50px rgba(0, 140, 255, 0.285),
                0 0 100px rgba(0, 140, 255, 0.285);
  }

 


