* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
   background-color: #e6e6e6;
  color: #111;
}


.top-bar {
  background-color: #00AEEF;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.redes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.redes img {
  width: 24px;
  height: 24px;
}

.logo img {
  width: 80px;
  height: auto;
  justify-content: center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.menu {
  display: none;
  width: 100%;
  background-color: #00AEEF;
  text-align: right;
  padding-top: 10px;
}

.menu.activo {
  display: block;
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 10px 0;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.bienvenida {
  background-image: url('Img/Recurso 21.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.bienvenida h1 {
  font-size: 40px;
    text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black,
    0px -2px 0 black,
    0px  2px 0 black,
    -2px 0px 0 black,
     2px 0px 0 black;

}



.noticias {
  padding: 30px 15px;
  background-color: #e6e6e6;
}

.noticias .titulo {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}

.noticias .titulo p {
    font-size: 20px;
    padding-bottom: 15px;
}
 .noticias .titulo h4 {
    font-size: 22px;
 }

 .boton-reservar {
  text-align: center;
  margin: 30px 0;
  padding-top: 10px;
}

.boton-reservar .boton {
  background-color: #00AEEF;
  color: white;
  padding: 10px 30px;
  font-size: 30px;
  border-radius: 30px;
  text-decoration: none;
}

.boton-reservar .boton:hover {
  background-color: white;
  color: #00AEEF;
}


.noticias-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noticias article img {
  width: 100%;
  border-radius: 5px;
}

.sin-subrayado {
  text-decoration: none;
}

.footer {
  background-color: #00AEEF;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 20px;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col p,
.footer-col li {
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  margin-bottom: 8px;
}
.footer-col h4 {
   padding-bottom: 10px;
   color: black;
}

.footer-col p:last-child,
.footer-col li:last-child {
  border-bottom: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom .redes {
        border-top: 1px solid black;
  padding-top: 5px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
  flex-direction: row;
}

.footer-bottom img {
  width: 24px;
}

.menu-izquierda, .menu-derecha {
  display: none;
}

@media (min-width: 800px) {
 .top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .redes {
    grid-column: 1;
    flex-direction: column;
    gap: 5px;
  }

  .menu-izquierda {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .logo {
    grid-column: 3;
    justify-self: center;
  }

  .logo img {
    width: 80px;
  }

  .menu-derecha {
    display: block;
    grid-column: 4;
    justify-self: start;
  }

  .menu-izquierda ul, .menu-derecha ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }

  .menu-izquierda li, .menu-derecha li {
    margin: 0;
  }

  .menu-izquierda a, .menu-derecha a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
  }

  .menu-izquierda a:hover, .menu-derecha a:hover {
    color: #00AEEF;
    background-color: white;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    display: none;
  }

  .noticias-grid {
    flex-direction: row;
  }

  .noticias-grid {
    flex-direction: row;
    width: 100%;
    display: flex;
  }
}
