.image-text-title-module {
  position: relative;
  display: flex;
  align-items: center;
}

/* Cajita izquierda */
.left-box {
  position: relative;
  z-index: 2;
  background-color: #000;
  border-radius: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.left-box img {
  max-width: 60%;
  max-height: 60%;
  border-radius: 8px;
}

.left-box .placeholder {
  color: #666;
  font-size: 14px;
}

/* Cajita derecha inclinada */
.right-box {
  position: relative;
  z-index: 1;
  margin-left: -1%;
  transform: skewX(-13deg);
  background: linear-gradient(135deg, #800020 0%, #FF0000 100%);
  padding: 15px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.right-box .text-inner h2, .right-box .text-inner > * {
  transform: skewX(10deg);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
  font-family: "Ropa Sans Pro", sans-serif !important;
  word-wrap: break-word;
  padding: 0px;
}

/* ------------ Media Queries ------------ */

/* Tablets (<= 768px) */
@media screen and (max-width: 821px) {
  .image-text-title-module {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
  .left-box {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }
  .right-box {
    margin-left: 0;
    transform: skewX(-8deg);
    padding: 16px 16px;
    width: 90%;
  }
  .right-box .text-inner {
  width: 100%;
  }
  .right-box .text-inner h2, .right-box .text-inner > * {
    transform: skewX(8deg);
    font-size: 1.25rem;
    white-space: normal;
    text-align: center;  /* centra el texto */
    
    max-width: calc(100%);
}

/* Móviles (<= 480px) */
@media screen and (max-width: 480px) {
  .image-text-title-module {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .left-box {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .right-box {
    margin-left: 0;
    transform: skewX(-5deg);
    padding: 12px 20px;
    width: 90%;
  }
  .right-box .text-inner h2, .right-box .text-inner > * {
    transform: skewX(5deg);
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
}
