/* =========================
   CINTILLO REPSE
========================= */

.repse-strip {
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #f1f5f9 50%,
    #e2e8f0 100%
  );
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 5px 5px;
}

.repse-container {
  max-width: 1100px;
  margin: 0 auto;
}

.repse-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.repse-logo img {
  height: 85px;
  width: auto;
}

.repse-text {
  max-width: 600px;
}

.repse-text h3 {
  font-size: 18px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.repse-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

/* Responsive */
@media (max-width: 768px) {

  .repse-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .repse-logo img {
    height: 70px;
  }

}