.destacado-secc {
  padding: 40px 20px;
}

.destacado-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- IMAGEN PRODUCTO ---------- */

.destacado-img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  margin-bottom: -24px; /* pequeño solape con la barra */
}


/* ---------- BARRA OSCURA ---------- */

.destacado-banner {
  width: 100%;
  background-color: #0e2818;
  border-radius: 24px;
  padding: 64px 24px 44px;
  z-index: 1;
}

.destacado-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.destacado-texto {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-variant: small-caps;
}

.destacado-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.destacado-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.destacado-banner hr {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    background-color: #2FAD39;
    margin-top: 20px;
  }

.valores-kohler{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.valores-kohler li{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.valores-kohler li i{
  color: #2FAD39;
}

@media (min-width: 768px) {
  .destacado-secc {
    padding: 120px 40px;
  }

  .destacado-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 980px;
  }

  .destacado-img {
    margin-bottom: 0;
    margin-right: -60px;
    flex-shrink: 0;
  }

  .destacado-banner {
    flex: 1;
    border-radius: 40px;
    padding: 34px 34px 34px 80px;
  }

  .destacado-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 32px;
  }

  .destacado-texto {
    font-size: 0.9rem;
    max-width: 260px;
    flex-shrink: 0;
  }

  
}


@media (min-width: 1024px) {
  .destacado-img {
    width: 30%;
    max-width: 380px;
  }

  .destacado-texto {
    font-size: 1rem;
    max-width: 280px;
  }

  .destacado-logos img {
    height: 42px;
  }
}