body{
  margin:0;
  font-family: Arial, sans-serif;
  background:#f4f4f4;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#c00000;
  padding:10px 20px;
  color:white;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:20px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

/* BUSCADOR */
.search-box{
  text-align:center;
  margin:30px auto;
}

#searchInput{
  width:80%;
  max-width:400px;
  padding:10px;
  font-size:16px;
}

#searchBtn{
  padding:10px 15px;
  background:#c00000;
  color:white;
  border:none;
  cursor:pointer;
}

/* BOTONES */
.btn-prom{
  background:#ffcc29;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
  color:#000;
  font-weight:bold;
}

/* MODAL */
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:999;
}

.modal-content{
  background:#fff;
  width:90%;
  max-width:900px;
  margin:5% auto;
  padding:20px;
  border-radius:10px;
}/* CSS Document */

