/* 💠 CABECERA FIJA */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(50, 50, 50, 0.8); /* Fondo oscuro semitransparente */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

/* 💠 LOGO EN LA CABECERA */
.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.logo a {
    text-decoration: none; /* Evita el subrayado */
}

.logo span:first-child {
    color: darkturquoise;
}

.logo span:last-child {
    color: chartreuse;
}

/* 💠 NAVEGACIÓN */
.navegar {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 💠 BOTONES DE LA CABECERA */
.navegar a {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.navegar a:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* 💠 ICONOS (IMÁGENES) EN BOTONES */
.navegar img {
    width: 25px;
    height: 25px;
    transition: 0.3s;
}

.navegar a:hover img {
    transform: scale(1.1);
}

