/*la notificacion */

.notificacion {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

#btnMas {
    display: block;
    margin: 0 auto;
}

.notificacion.mostrar {
    opacity: 1;
    transform: translateY(0);
}

.oculto {
    display: none;
}

/*mostrar más de proyectos */

.btntoggle {
    background: none;
    border: none;
    padding: 0;

    color: #007bff; /* azul tipo link */
    font-size: 0.9rem;
    font-weight: 500;

    cursor: pointer;

    text-decoration: underline;
    transition: 0.2s ease;
}

.btntoggle:hover {
    color: #0056b3;
    text-decoration: none;
}

.acciones {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}
