@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

nav {
  min-width: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 1in;
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  width: 200px;
  justify-content: space-between;
}

.logo img {
  width: 50px;
}

.logo h1 {
  color: #e20a4b;
}

.url {
  display: flex;
  align-items: center;
}

.url ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn1 {
  background: none;
  width: 100px;
  width: 153px;
  height: 36px;
  border-radius: 8px;
  color: #e20a4b;
  border: 2px solid #e20a4b;
  cursor: pointer;
}

.btn2 {
  background: #e20a4b;
  width: 100px;
  width: 153px;
  height: 36px;
  border-radius: 8px;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 16px;
  width: 138px;
  height: 44px;
  background: #feecf1;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 145px;
  height: 44px;
  background: #e20a4b;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

main {
  margin-top: 1in;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1in;
  align-items: center;
}

main p {
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  color: #1a1a1a;
}

main p span {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #595959;
}

.category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.divCategory {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 0.5rem;
  cursor: pointer;
}

.input {
  width: 320px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.input input {
  outline: none;
  border: none;
  padding: 10px;
}

.input:focus-within {
  border: 2px solid #e20a4b;
}

.barraBusqueda {
  display: flex;
  align-items: center;
  gap: 1rem;
}
