/* Estilos comunes para todos los tamaños de pantalla */
body {
  background-color: white;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Roboto', sans-serif;

}

header {
  background-color: #333;
  padding: 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.nav-links li a:hover {
  color: #ff9900;
}

/* Estilos para pantallas de hasta 768px (tabletas y teléfonos en posición vertical) */
@media screen and (max-width: 768px) {
  header {
    padding: 5px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    display: none; /* Ocultar la barra de navegación cuando el ancho de pantalla sea menor a 768px */
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-links.active {
    display: flex; /* Mostrar la barra de navegación cuando se activa el menú */
  }

  .burger {
    display: block; /* Mostrar el ícono del menú hamburguesa */
    cursor: pointer;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
  }
}
.cookie-banner {
  background-color: #f0f0f0;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.cookie-buttons {
  margin-top: 10px;
}

.cookie-buttons button {
  padding: 8px 16px;
  margin: 5px;
  cursor: pointer;
}

.btn-accept {
  background-color: #4caf50;
  color: #fff;
  border: none;
}

.btn-reject {
  background-color: #f44336;
  color: #fff;
  border: none;
}

