@import url("https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600&display=swap");
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Chewy", cursive;
  background-color: #dfffe1;
  color: #1c1c1c;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  background-color: #198754;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}
header img {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}
header img:hover {
  transform: scale(1.05);
}
header nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}
header nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
header nav ul li a:hover {
  color: hsl(122, 90%, 12%);
}

/* HERO */
.hero {
  background: url("../assets/img/hero.png") no-repeat center center/cover;
  padding: 3rem 1rem;
  min-height: 300px;
  max-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.hero .hero-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  border-radius: 12px;
  color: #ffffff;
}
.hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero .hero-text p {
  font-size: 1.2rem;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* BOTTONS */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  background-color: #145c32;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #198754;
}

/* PRODUCTO */
.producto {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.producto:hover {
  transform: scale(1.02);
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* MAP */
iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* FOOTER */
footer {
  width: 100%;
  background-color: #198754;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
    padding: 1rem;
  }
  header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/*# sourceMappingURL=style.css.map */
