* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #000; /* Fondo negro */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Barra negra con transparencia */
  z-index: 1000;
}

.logo img {
  height: 80px; /* Ajusta el tamaño del logo */
}

.menu {
  display: flex;
  align-items: center;
}

.menu ul {
  display: none; /* Ocultar el menú por defecto */
  list-style: none;
  flex-direction: column;
  position: absolute;
  top: 60px; /* Debajo del header */
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px;
  border-radius: 5px;
}

.menu ul li {
  margin: 10px 0;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.menu-icon img {
  height: 50px; /* Ajusta el tamaño del icono de menú */
  cursor: pointer;
   filter: invert(100%)
}

.menu ul.show {
  display: flex; /* Mostrar el menú cuando se active */
}

/* Estilos para el selector de idiomas */
.language-selector {
  position: relative;
}

#current-language {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#current-flag {
  height: 25px;
}

#arrow {
  margin-left: 5px;
  font-size: 14px;
  color: white;
}

#language-options {
  position: absolute;
  top: 35px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
}

#language-options img {
  height: 25px;
  margin: 5px 0;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* facebook*/



   .social-section {
           
            text-align: center;
            padding: 20px;
        }
        .social-section h2 {
            color: #fff;
            letter-spacing: 1px;
            text-align: center;
        }
       
        .social-icons a {
          color: white;
            margin: 0 15px;
            display: inline-block;
        }
        .social-icons img {
            width: 60px;
            height: 60px;
            
        }
        .social-icons p {
          color: white;
  
        }



footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
