body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f0efeb;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background-color: #eeece8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #264646;
}

.icono {
  width: 40px;
  height: 40px;
  background-color: #264646;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4f5d5d;
  font-weight: 500;
}

.nav-links a:hover {
  color: #264646;
}

.ubicacion-btn {
  background-color: #264646;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.ubicacion-btn:hover {
  opacity: 0.9;
}







.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 6rem;
  background-color: #edece8;
  flex-wrap: wrap;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  grid-template-rows: repeat(2, 220px);
  gap: 1.5rem;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-content {
  max-width: 480px;
  color: #264646;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: #4f5d5d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #264646;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: #f7f6f3;
  color: #264646;
  border: 1px solid #c9c9c7;
}

.btn-secondary:hover {
  background-color: #e7e6e3;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 2rem;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 160px);
    grid-template-rows: repeat(2, 160px);
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}






.about {
  background-color: #ffffff;
  padding: 5rem 6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.about-content {
  max-width: 600px;
  color: #264646;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5d5d;
}

@media (max-width: 900px) {
  .about {
    padding: 3rem 2rem;
  }

  .about h2 {
    font-size: 1.8rem;
  }
}






.flavors {
  background-color: #edece8;
  text-align: center;
  padding: 5rem 6rem;
}

.flavors h2 {
  font-size: 2.4rem;
  color: #264646;
  font-weight: 500;
  margin-bottom: 3rem;
}

.flavors-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.flavor-card {
  background-color: #edece8;
  max-width: 480px;
  text-align: center;
}

.flavor-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.flavor-card h3 {
  color: #264646;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.flavor-card p {
  color: #4f5d5d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 1rem 2rem;
}

.flavor-card .btn {
  background-color: #264646;
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.flavor-card .btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .flavors {
    padding: 3rem 2rem;
  }

  .flavors h2 {
    font-size: 2rem;
  }

  .flavors-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .flavor-card img {
    height: 220px;
  }
}








.stories {
  background-color: #f4f2ed;
  padding: 5rem 6rem;
}

.stories h2 {
  color: #264646;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.stories-main {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stories-main img {
  width: 100%;
  max-width: 600px;
  border-radius: 6px;
  object-fit: cover;
}

.main-text {
  flex: 1;
  color: #264646;
}

.main-text .tag {
  display: inline-block;
  font-size: 0.9rem;
  color: #4f5d5d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.main-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.main-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4f5d5d;
  margin-bottom: 1.5rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author .name {
  font-weight: 600;
  margin: 0;
}

.author .date {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7a7a;
}

/* Grid de historias pequeñas */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background-color: #f4f2ed;
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.story-card .tag {
  display: block;
  font-size: 0.85rem;
  color: #6b7a7a;
  margin-bottom: 0.5rem;
}

.story-card h4 {
  font-size: 1.2rem;
  color: #264646;
  margin-bottom: 0.5rem;
}

.story-card p {
  color: #4f5d5d;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stories {
    padding: 3rem 2rem;
  }

  .stories-main {
    flex-direction: column;
  }

  .stories-main img {
    max-width: 100%;
  }
}



.voices {
  background-color: #edece8;
  text-align: center;
  padding: 5rem 6rem;
}

.voices h2 {
  font-size: 2.2rem;
  color: #264646;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.voices .subtitle {
  color: #4f5d5d;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.voices-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: left;
}

.voice-card {
  background-color: #edece8;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quote {
  font-style: italic;
  color: #264646;
  font-size: 1rem;
  line-height: 1.6;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.voice-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-author h4 {
  margin: 0;
  font-size: 1rem;
  color: #264646;
}

.voice-author p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7a7a;
}

.voice-logo {
  width: 90px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .voices {
    padding: 3rem 2rem;
  }

  .voices-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .voice-card {
    align-items: center;
  }

  .voice-author {
    justify-content: center;
  }
}







.faq {
  background-color: #f3f2ee;
  padding: 5rem 6rem;
  color: #264646;
}

.faq-subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #6a7979;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-description {
  max-width: 700px;
  color: #5d6a6a;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #264646;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.faq-item p {
  color: #4e5a5a;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .faq {
    padding: 3rem 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}














.footer {
  background-color: #1e3a34; /* Verde oscuro elegante */
  color: #f3f3f0;
  padding: 4rem 6rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.5rem;
  color: #f8f8f6;
  margin-bottom: 0.8rem;
}

.footer h4 {
  font-size: 1.1rem;
  color: #dbe3de;
  margin-bottom: 1rem;
}

.footer p {
  color: #cdd6d1;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer a {
  text-decoration: none;
  color: #cdd6d1;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #264e45;
  color: #f3f3f0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #3a6b5d;
}

.footer-bottom {
  border-top: 1px solid #355b50;
  text-align: center;
  padding-top: 1rem;
  color: #aab7b0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer {
    padding: 3rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }
}
