/* Tipografía base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #7a9e7e;
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
}

.nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-item.left {
  justify-content: flex-end;
}

.nav-item.right {
  justify-content: flex-start;
}

.logo-link img.logo-nav {
  height: 100px;
  width: auto;
  display: block;
}

.navbar a {
  color: #f9f7f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: border-bottom 0.3s ease;
}

.navbar a:hover {
  border-bottom: 2px solid #a7866f;
}

/* Hero section */
.hero {
  text-align: center;
  background-color: #fff;
  padding: 3rem 1rem 1rem;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.hero-text-container p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Sección Nosotros */
.contact {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.contact h2 {
  color: #a7866f;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1rem auto;
  color: #555;
  max-width: 800px;
}

.contact ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact ul li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}

.contact ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7a9e7e;
  font-weight: bold;
}

/* Botón CTA */
.hero-button-container {
  position: static;
  text-align: center;
  margin-bottom: 4rem;
}

.cta-button {
  display: inline-block;
  background-color: #7a9e7e;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #5f8162;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f1f1f1;
  font-size: 0.95rem;
  color: #777;
}

footer a {
  color: #7a9e7e;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  /* navbar se mantiene horizontal */
  .nav-item {
    justify-content: center;
  }

  .logo-link img.logo-nav {
    height: 50px;
  }

  .hero-logo {
    width: 140px;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact p,
  .contact ul li {
    font-size: 1rem;
  }
}
