* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*PRODUCTO SUPERIOR*/
.producto-superior {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 130px 0px 0px 0px;
}

.producto-superior-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.producto-superior-contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.producto-superior-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.producto-superior-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.producto-superior-texto {
  flex: 1 1 45%;
  text-align: left;
}

.producto-superior-texto h2 {
  font-family: var(--font-principal-regular);
  font-size: 35px;
  color: var(--color-azul-navy);
  margin-bottom: 15px;
  line-height: 1;
}

.producto-superior-texto h3 {
  font-family: var(--font-principal-regular);
  font-size: 35px;
  color: var(--color-azul-navy);
  margin-bottom: 15px;
}

.producto-superior-texto p {
  font-family: var(--font-principal-regular);
  color: var(--color-rojo);
  font-size: 35px;
  margin-bottom: 20px;
}
/* Sección principal */
.productos-ingredientes {
    background-color: var(--color-cyan);
    padding: 60px 20px;
    margin: 0;
}

.ingredientes-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ingredientes-texto {
    flex: 1;
    color: white;
}

.ingredientes-texto h3 {
    font-family: var(--font-principal-regular);
    color: var(--color-dorado);
    font-size: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ingredientes-texto p {
    font-family: var(--font-secundario-regular);
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}
.ingredientes-imagen {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ingredientes-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 5px solid var(--dorado);
}

/* Responsive */
@media (max-width: 768px) {
    .ingredientes-contenido {
        flex-direction: column;
        text-align: center;
    }

    .ingredientes-texto h3 {
        font-size: 22px;
    }
    .producto-superior-texto h2 {
        font-size: 35px;
        text-align: center;
    }
    .producto-superior-texto h3 {
        font-size: 30px;
        text-align: center;
    }
    .producto-superior-texto p {
        font-size: 25px;
        text-align: center;
    }
    .ingredientes-texto p {
        font-size: 18px;
        text-align: center;
    }
}
.timon img{
  top: -300px!important;
}