@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}
h2 {
  font-size: 42px;
  padding-bottom: 10px;
}

/* Header Section */
#backgroundHeader {
  background-color: gainsboro;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 50px;
  width: 80%;
  max-width: 1280px;
  min-width: 300px;
  margin: 0 auto;
}
header img {
  width: 30px;
}
nav ul {
  list-style: none;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  text-decoration: none;
  color: black;
  padding: 10px;
  margin: 10px;
  transition: 0.5s;
}
nav ul li a:hover {
  background-color: black;
  color: white;
}

section {
  width: 80%;
  max-width: 1280px;
  min-width: 300px;
  height: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 100px;
  flex-direction: column;
  padding: 50px;
}

/* Hero Section */
#heroBackground {
  height: 900px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(imagenes/R238.jpg) no-repeat center center;
  background-size: cover;
}

#hero {
  flex-direction: row;
  justify-content: space-between;
  color: white;
}
#hero div h1 {
  font-size: 70px;
}
#hero div p {
  padding: 10px 0 30px 0;
  max-width: 500px;
}
#hero img {
  width: 500px;
}
#hero div a {
  background-color: gray;
  border: none;
  border-radius: 12px;
  color: white;
  padding: 10px 50px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
#hero div a:hover {
  background-color: #716058;
}

/* Caracteristicas Section */
#caracteristicas div {
  display: flex;
}
#caracteristicas div img {
  width: 550px;
  height: auto;
}
#caracteristicas div div img {
  width: 40px;
}
#caracteristicas div div {
  flex-direction: column;
}
#caracteristicas .caracteristicaContainer {
  flex-direction: row;
  align-items: start;
  gap: 30px;
  padding-top: 100px;
  height: 180px;
  max-width: 550px;
}

/* Tiendas Section */
#backgroundTienda {
  background-color: rgb(17, 17, 17);
}

#tiendas {
  color: white;
  justify-content: center;
}
#tiendas p {
  margin-bottom: 50px;
}
#tiendas div {
  display: flex;
  gap: 50px;
}
#tiendas img {
  height: 400px;
}
#tiendas table {
  border: 1px solid white;
  border-spacing: 0;
  border-radius: 12px;
  min-width: 600px;
  overflow: hidden;
}
#tiendas table thead {
  background-color: #716058;
}
#tiendas table td,
#tiendas table th {
  height: 50px;
  width: 250px;
  padding-left: 20px;
  text-align: left;
}

/* Opiniones Section */
#opiniones {
  justify-content: center;
}
#opiniones p {
  padding-bottom: 80px;
}
#opiniones blockquote {
  padding-bottom: 20px;
}
#opiniones div {
  display: flex;
}
#opiniones div article {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 500px;
}
#opiniones img {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
}

/* Unirme Section */
#backgroundUnirme {
  background-color: rgb(17, 17, 17);
}
#unirme {
  justify-content: center;
  background-color: rgb(17, 17, 17);
  height: 500px;
  color: white;
}
#unirme p {
  margin-bottom: 50px;
}
form {
  max-width: 1280px;
}
form fieldset {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  margin-bottom: 20px;
  border: none;
}
form fieldset div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
}
form fieldset div input,
form fieldset div select {
  height: 50px;
  border-radius: 6px;
  border: none;
  background-color: white;
  padding-left: 10px;
  font-size: 18px;
}
#checkboxContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
input[type="checkbox"] {
  width: 30px;
}
input[type="checkbox"]:checked {
  accent-color: white;
}
input[type="submit"] {
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}

/* Footer */
footer {
  height: 200px;
  background-color: white;
}
footer div {
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer hr {
  width: 80%;
  margin: 0 auto;
}
footer p {
  text-align: center;
  padding-top: 20px;
}
footer img {
  width: 50px;
  margin: 0 10px;
}
