/* Estilos para el header y el menú */

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 20px;
    z-index: 1000;
}

#header.alt {
    background-color: #333;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

.logo span {
    color: #f00; /* Color para 'Scarlet' */
}

/* Botón de menú */
#menuToggle {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
}

#menuToggle:hover {
    color: #f00;
}

/* Menú principal */
#menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#menu.active {
    display: block;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    position: relative;
    margin-bottom: 10px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: #444;
}

/* Submenús */
.menu ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.menu ul.mostrar {
  display: block;
  position: relative; /* cambia a relative o static */
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.menu li:hover > ul {
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #menu {
        width: 100%;
        top: 60px;
    }

    .menu ul {
        position: static;
        display: none;
        padding-left: 20px;
    }

    .menu li:hover > ul {
        display: none;
    }

    .menu li.active > ul {
        display: block;
    }
}

/* Iconos de redes sociales */
.menu .icon::before {
    margin-right: 5px;
    font-family: FontAwesome;
}

.menu .icon.fa-twitter::before { content: "\f099"; }
.menu .icon.fa-facebook::before { content: "\f09a"; }
.menu .icon.fa-instagram::before { content: "\f16d"; }
.menu .icon.fa-envelope-o::before { content: "\f003"; }