/* Estilo Aero Glass */
.glass {
    background: rgba(255, 192, 203, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(255, 105, 180, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Footer con datos personales - siempre visible */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 8px 20px;
    text-align: center;
}

.footer p {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 2px 0;
}

.footer strong {
    color: #ff1493;
    font-weight: 700;
}

.footer a {
    color: #4dabf7;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #74c0fc;
    text-shadow: 0 0 10px rgba(77, 171, 247, 0.8);
}
