@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 20px 0;
}

.logo-1 {
  width: 120px;
  margin-bottom: 15px;
}

.navbar ul {
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #080808;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #b60000;
}

.info-txt {
  margin-top: 20px;
}

.info-txt h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #b60000;
}

.info-txt p {
  font-size: 16px;
  color: #050505;
}

.horario-info {
  margin-top: 40px;
}

.horario-txt .txt {
  margin-bottom: 40px;
}

.horario-txt h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #b60000;
}

.horario-txt p {
  font-size: 16px;
  color: #050505;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 30px 0;
}

.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer p {
  color: #000000;
  font-size: 14px;
}
