#paginasWeb {
    display: flex;
}

#paginasWeb a{
    text-decoration: none;
    color: rgba(0, 4, 255, 0.4);
    font-weight: bolder;
}

#paginasWeb a p {
    margin: 0;
    padding: 0;
}

.webs a {
    display: block;
    width: 100%;
}


.webs{
    display: flex;
    text-align: center;
    margin: 20px;
    border: 2px solid cyan;
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
    background-color: rgba(0,255,255,0.1);
    width: 230px;
}

.webs:hover{
    border: 2px solid rgb(184, 28, 187);
    text-decoration: none;
    transition: background-color 0.5s ease;
    font-weight: bold;
    font-size: 0.98em;
    padding: 10px 9px;
}

.webs a:hover {
    color: rgba(215, 125, 15, 0.8);
    text-shadow: 1px 1px 1px cyan;
}

/* RESPONSIVE DESIGN - Solo cambios para móvil */
@media (max-width: 768px) {
    #fondoHeader {
        display: none;
    }

    #fondoHeader02 {
        width: 100%;
    }

    #fondoHeader02 img {
        width: 50px;
        border-radius: 80px;
        margin-left: 5px;
    }

    header {
        justify-content: space-around;
    }

    /* Añadir funcionalidad hamburguesa al logo */
    #logoDiv {
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    #logoDiv:hover {
        transform: scale(1.05);
    }

    #logoDiv.active {
        transform: scale(0.95);
    }

    /* MENÚ MÓVIL DESLIZANTE DESDE LA IZQUIERDA */
    #menuDiv {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(106, 24, 188, 0.9) 0%,
            rgba(217, 20, 20, 0.8) 50%,
            rgba(167, 189, 193, 0.9) 100%);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }

    #menuDiv.menu-open {
        left: 0;
    }

    #buttonDiv {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 20px;
        height: auto;
        grid-template-columns: none;
    }

    .buttonMenu {
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        text-align: center;
        font-size: 1.1em;
        height: auto;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }

    .buttonMenu:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .buttonMenu a {
        color: white;
        font-weight: 500;
    }

    /* Ocultar los elementos <p> vacíos en móvil */
    #buttonDiv p {
        display: none;
    }
}

/* Breakpoint adicional para móviles muy pequeños */
@media (max-width: 480px) {
    #menuDiv {
        width: 250px;
    }
    
    #buttonDiv {
        padding: 70px 15px 15px;
    }
    
    .buttonMenu {
        padding: 12px 15px;
        font-size: 1em;
    }
}


/* #wordPressDiv{
    display: flex;
    text-align: center;
    margin: 20px;
    border: 2px solid cyan;
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
    background-color: rgba(0,255,255,0.1);
    width: 210px;
}

#wordPressDiv:hover{
    border: 2px solid rgb(184, 28, 187);
    text-decoration: none;
    transition: background-color 0.5s ease;
    font-weight: bold;
    font-size: 0.98em;
    padding: 10px 9px;
}

#wordPressDiv a:hover {
    color: rgba(215, 125, 15, 0.8);
    text-shadow: 1px 1px 1px cyan;
}
 */




