/* ===== Sección presentación (cafe-experiencia) ===== */
.cafe-experiencia {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4a5430;
    color: white;
    padding: 20px 40px;
    gap: 10px;
}

.cafe-texto {
    flex: 1;
    max-width: 50%;
    padding: 0 20px;
    text-align: right;
}





.cafe-texto h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cafe-imagen {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: left;
    padding: 0 20px;
}

.cafe-imagen img {
    width: 150%;
    max-width: 380px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* Responsivo */
@media (max-width: 768px) {
    .cafe-experiencia {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .cafe-texto, .cafe-imagen {
        max-width: 100%;
    }
    .cafe-imagen img {
        max-width: 180px;
        width: 100%;
    }
}

/* ===== Sección de productos ===== */
.productos-vendidos {
  text-align: center;
  padding: 40px 20px 80px;
  background-color: #faf6f3;
}

.titulo-pequeno {
  font-size: 12px;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}

.productos-vendidos h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

/* Botón de "Ver más productos" si se usa */
.btn-mas-productos {
  display: inline-block;
  background-color: #4a5430;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.btn-mas-productos:hover {
  color: #f1c72d;
}

/* Grid para productos */
.lista-productos {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 40px;
  justify-content: center;
}

.producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.producto img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.btn-productos {
  background-color: #4a5430;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.btn-productos:hover {
  color: #f1c72d;
}

/* Móviles pequeños */
@media (max-width: 400px) {
  .lista-productos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}




@media only screen and (min-width: 250px) and (max-width: 450px) {

  header h1 {
    font-size: 25px;
  }
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
  header h1 {
    font-size: 27px;
  }
}


@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header h1 {
    font-size: 38px;
  }
}

