*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #26110D;
}

header {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background-color: #F1ECD9;
  border-bottom: 3px solid #26110D;
  overflow: hidden;
}

.logo img {
  display: block;
  height: 100px;
  object-fit: contain;
  margin: 0; /* elimina espacio fantasma */
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  text-decoration: none;
  color: #153E1E;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #26110D;
}


h1, h2 {
  font-family: 'Montserrat', sans-serif;
  color: #153E1E;
  font-weight: 700; /* Añadido */
}


.carousel img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}




.manifest {
 
  text-align: center;
  padding: 4rem 2rem;
  line-height: 1.8;
  color: #26110D;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;

  background-image: url('images/PNG/Texture_Mesa de trabajo 1 copia.png');
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
 
  background-blend-mode: lighten;
  background-color: rgba(255, 255, 255, 0.92);



}



.manifest h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.manifest ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.manifest ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 1rem;
  text-align: center; /* mejora la legibilidad de las listas */
  line-height: 1.6;
}

footer {
  background-color: #F1ECD9;
  border-top: 3px solid #26110D;
  text-align: center;
  padding: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  position: relative;
  line-height: 1.5;
  color: #26110D;
}

footer .copyright-footer {
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  color: #5C5C5C;
  text-align: right;
  margin-top: 2rem;
  position: absolute;
  right: 20px;
  bottom: 10px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0 0;
  margin-top: 1rem;
}

.social-icons a {
  color: #26110D;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b28f6a;
}






.carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden; /* ← Cambio importante */
  gap: 10px;
  padding: 20px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}


.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-item {
  flex: 0 0 auto; /* solo una imagen visible */
  width: 100%;
  scroll-snap-align: start;
  max-width: 500px;
  margin-right: 10px;
  position: relative;
}

.carousel-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}

.buy-button {
  background-color: #A9CBB7;
  color: #1B3B2E;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}


.buy-button:hover {
  background-color: #94bda8;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(241, 236, 217, 0.7);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  color: #26110D;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #153E1E;
  color: #F1ECD9;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}


.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 60px 40px;
  flex-wrap: nowrap;
  background-color: #fff;
  margin-bottom: 3rem;
}

.about-text, .about-image {
  flex: 1 1 50%;
}

.about-text {
  padding-right: 2rem;
  max-width: 600px;
  flex: 1;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex: 1;
}

.logo-image {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .about-section .about-image {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .about-section .about-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-section .about-text {
    padding: 0 1.5rem;
    max-width: 600px;
    margin-top: 0;
    margin-bottom: 2rem; /* espacio inferior para separar del contenido siguiente */
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 60px 0;
  background-color: #faf8f5; /* suave crema opcional */
  flex-wrap: nowrap;
  margin-top: 2.5rem;
}

.product-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  padding: 0 40px;
}
.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  color: #26110D;
}

.product-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #20512E;
  margin-bottom: 1rem;
}

.product-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-text button {
  background-color: #4a5d3c;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-text button:hover {
  background-color: #3b4e2f;
}
.buy-button.static {
  position: static;
  transform: none;
  margin-top: 1rem; /* Espacio arriba si deseas */
}

@media (max-width: 768px) {
  .product-section {
    padding: 2rem 1.5rem;
  }

  .product-content {
    flex-direction: column; /* 👈 Esto invierte el orden */
    align-items: center;
    text-align: center;
  }

  .product-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .product-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
  }

  .product-text {
    width: 100%;
    max-width: 500px;
    padding: 0 1rem;
  }

  .product-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .product-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-text button {
    margin-top: 1rem;
  }
}




.manifest-logo {
  margin-top: 3rem;
  width: 160px; /* Aumentá este valor como prefieras */
  height: auto;
  opacity: 0.9;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer {
  background-color: #F1ECD9;
  border-top: 3px solid #26110D;
  text-align: center;
  padding: 2rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

footer .copyright-footer {
  font-size: 0.85rem;
  color: #5C5C5C;
  text-align: right;
  margin-top: 2rem;
  position: absolute;
  right: 20px;
  bottom: 10px;
  opacity: 0.8;
}

.our-story-section {
  background-color: #fff;
  padding: 60px 40px;
  font-family: 'Poppins', sans-serif;
  color: #26110D;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.story-text {
  flex: 1 1 45%;
  font-size: 1rem;
  line-height: 1.8;
}

.story-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #153E1E;
}

.story-images {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #26110d;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b28f6a;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    text-align: center;
  }

  .logo img {
    height: 100px;
  }

  .menu ul {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0 0;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }

  footer .copyright-footer {
    text-align: center;
    position: static;
    margin-top: 1.5rem;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .story-container {
    flex-direction: column-reverse;
  }
}
.section-title {
  text-align: center;
  font-family: 'Type Machine', serif; /* o la fuente que uses para títulos */
  font-size: 2.5rem;
  color: #26110D;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .carousel {
    overflow-x: auto; /* ← Permite swipe en móviles */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* suaviza el swipe en iOS */
  }

  .carousel-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 100%; /* que ocupen el ancho del dispositivo */
  }

  .carousel::-webkit-scrollbar {
    display: none; /* ocultar barra en móviles */
  }

  .carousel-btn {
    display: none; /* ocultar flechas en móviles */
  }
}




