/* Logo Plateado con Relieve - Global */
.logo {
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.silver-relief {
    background: linear-gradient(to bottom, 
        #ffffff 0%, 
        #e8e8e8 30%, 
        #c0c0c0 50%, 
        #a8a8a8 51%, 
        #c8c8c8 60%, 
        #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.3),
        2px 2px 4px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.8);
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.3));
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header común */
.header {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    color: #343a40;
    padding: 15px 20px;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
