html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f1f3f6;
  color: #2f3e36;
  line-height: 1.6;
}

a {
  color: #295b5c;
  text-decoration: none;
}

h1, h2 {
  color: #295b5c;
}

/* Neomorfismo */
.neomorph {
  background: #f1f3f6;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
  border-radius: 12px;
  padding: 1rem 2rem;
}

.neomorph-in {
  background: #f1f3f6;
  box-shadow: inset 6px 6px 12px #d1d9e6, inset -6px -6px 12px #ffffff;
  border-radius: 20px;
  padding: 2rem;
}

/* Navbar */
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #f1f3f6;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.navbar li {
  margin: 0.5rem;
}

.navbar a {
  text-decoration: none;
  color: #295b5c;
  font-weight: bold;
  white-space: nowrap;
}


.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  gap: 0.5rem;
}

.logo-img {
  height: 62px;
  width: 62px;
}
/* Hero */
.hero {
  background: linear-gradient(to bottom right, #d6e4e5, #f1f3f6);
  text-align: center;
  padding: 4rem 1rem;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #6e945d;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #527347;
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: auto;
}

/* Galería */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 6px 6px 12px #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}


.menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  color: #295b5c;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  color: #295b5c;
  cursor: pointer;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  #nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
  }

  #nav-menu ul.show {
    display: flex;
  }

  #nav-menu li {
    width: 100%;
    padding: 0.5rem 0;
  }
}


