@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* HEADER*/

header {
  background-color: #bdc3a9;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  width: 250px;
}
nav ul {
  list-style-type: none;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  text-decoration: none;
  color: white;
  margin: 20px;
}

nav ul li a:hover {
  color: #536050;
}

/* BANNER*/

#Banner {
  background-image: url(./Img/Banner1.png);
  background-color: #a3b18a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

#Banner .texto {
  width: 40%;
  min-width: 280px;
  margin-left: 120px;
}

#Banner div {
  width: 40%;
}

#Banner h1 {
  margin-bottom: 30px;
  color: white;
  letter-spacing: 1.5px;
}

#Banner p {
  margin-bottom: 30px;
  line-height: 1.5;
  color: white;
}

#Banner button {
  padding: 10px 20px;
  background-color: #bdc3a9;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  color: white;
}
#Banner button:hover {
  background-color: #edf1dc;
  color: #536050;
}

#Banner img {
  margin-top: 150px;
  width: 500px;
  max-width: 100%;
}

/* SECCION CARACTERISTICAS*/

#secCaracteristica {
  padding: 40px 0;
  text-align: center;
  background-color: #edf1dc;
}

#secCaracteristica .contenedor {
  width: 1280px;
  margin: 0 auto;
  width: 80%;
  min-width: 700px;
}

#secCaracteristica .seccionTitle {
  margin-bottom: 50px;
}
#secCaracteristica .seccionTitle h2 {
  padding: 5px;
}
#secCaracteristica .seccionTitle p {
  padding: 5px;
}

#secCaracteristica article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.boxCar img:hover {
  transform: scale(1.1);
}

#secCaracteristica .columnas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#secCaracteristica .columnas div {
  display: flex;
  text-align: left;
  margin-bottom: 40px;
  max-width: 350px;
}

#secCaracteristica .columnas div div {
  display: flex;
  flex-direction: column;
}

#secCaracteristica .columnas img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

#secCaracteristica .columnas div h3 {
  margin-bottom: 15px;
}

#secCaracteristica figure img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
}

/* SECCION SUCURSALES*/

#secTiendas {
  padding: 40px 0;
  text-align: center;
  background-color: #bdc3a9;
}

#secTiendas .contenedor {
  width: 1280px;
  margin: 0 auto;
  width: 80%;
  min-width: 700px;
}

#secTiendas .seccionTitle {
  margin-bottom: 50px;
}

#secTiendas .seccionTitle h2 {
  padding: 5px;
}
#secTiendas .seccionTitle p {
  padding: 5px;
}

.tablaYimg {
  display: flex;
  justify-content: space-between;
  height: 250px;
}

.tablaYimg img {
  width: 35%;
  border-radius: 8px;
}

#secTiendas table {
  width: 55%;
  border: 2px solid black;
  border-radius: 8px;
  text-align: center;
  border-spacing: 0px;
  overflow: hidden;
}

#secTiendas table thead tr {
  background-color: #536050;
  height: 40px;
  color: #edf1dc;
}

/* SECCION OPINIONES*/

#secOpiniones {
  padding: 40px 0;
  text-align: center;
  background-color: #edf1dc;
}
#secOpiniones .seccionTitle {
  margin-bottom: 50px;
}

#secOpiniones .seccionTitle h2 {
  padding: 5px;
}
#secOpiniones .seccionTitle p {
  padding: 5px;
}

#secOpiniones .contenedor {
  width: 1280px;
  margin: 0 auto;
  width: 80%;
  min-width: 700px;
}

.opinionConteiner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cardOpinion {
  background-color: #bdc3a9;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cardOpinion img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.cardOpinion p {
  margin-bottom: 15px;
}
.cardOpinion:hover {
  transform: scale(1.05);
}
/* SECCION UNIRME*/

#secContacto {
  padding: 40px 0;
  text-align: center;
  background-color: #bdc3a9;
}
#secContacto .seccionTitle {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: center;
}

#secContacto .seccionTitle h2 {
  padding: 5px;
}
#secContacto .seccionTitle p {
  padding: 5px;
  width: 600px;
  line-height: 1.4;
}

#secContacto .contenedor {
  width: 1280px;
  margin: 0 auto;
  width: 80%;
  min-width: 700px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fila1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  min-width: 150px;
}
.fila2 {
  display: flex;
  justify-content: space-between;
  min-width: 150px;
}

.inputClass {
  width: 200px;
  padding: 8px;
  border: 2px solid #536050;
  border-radius: 6px;
}

.inputSubmit {
  width: 200px;
  padding: 8px;
  border-radius: 6px;
  background-color: #536050;
  font-weight: bold;
  color: white;
  border: none;
}

.inputSubmit:hover {
  background-color: #edf1dc;
  color: #536050;
}

.inputCheck {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  accent-color: #536050;
}
.inputClass:focus {
  outline: none;
}
.fila2 div {
  display: flex;
}

#secContacto label {
  font-weight: bold;
  margin-right: 5px;
}

/* FOOTER*/

footer {
  background-color: #536050;
  height: 150px;
  padding: 5px;
}
footer .contenedor {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 80%;
  min-width: 700px;
}
.iconGroup {
  display: flex;
  gap: 15px;
  padding: 20px;
}

footer hr {
  width: 100%;
  border: 2px solid #bdc3a9;
}

footer h4 {
  padding: 20px;
  color: #bdc3a9;
  letter-spacing: 1.5px;
}
