
  .main-containerHome { font-family: 'Poppins', sans-serif !important; box-sizing: border-box; width: 100%; margin: 0; padding: 0; }
  .main-containerHome * { font-family: 'Poppins', sans-serif !important; box-sizing: border-box !important; margin: 0; padding: 0; }

  .tmx-creative-layout { background-color: #000000 !important; color: #ffffff; padding: 100px 20px; overflow: hidden; }
  .tmx-inner-wrapper { width: 100%; max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 120px; }

  /* TÍTULOS H2 AJUSTADOS (MÁS PEQUEÑOS) */
  .styleH2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 4vw, 2.2rem); 
    font-weight: 900; 
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    text-align: left;
  }

  .styleH2::before {
    content: ""; position: absolute; left: -35px; top: 5px; bottom: 5px; width: 5px;
    background-color: #d61c1c; border-radius: 4px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  }

  .tmx-text-accent { color: #d61c1c; font-weight: 900; }

  /* TÍTULOS H3 AJUSTADOS (MÁS PEQUEÑOS) */
  .styleH3 {
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .styleP { color: #cecece; font-size: clamp(0.9rem, 2vw, 1.05rem); font-weight: 200; line-height: 1.8; max-width: 750px; text-align: left; }
  .tmx-intro-p { font-weight: 300; color: #ffffff; margin-bottom: 50px; }
  .tmx-highlight { color: #ffffff; font-weight: 600; }

  .tmx-stores-flex { display: flex; gap: 40px; width: 100%; }
  .tmx-store-card { flex: 1; background-color: #0b0b0b; border: 1px solid #141414; padding: 40px 30px; position: relative; transition: transform 0.4s ease; }
  .tmx-clickable-card { text-decoration: none !important; display: block; }
  .tmx-card-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background-color: #d61c1c; }

  .styleList { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; width: 100%; }
  .styleList li { display: flex; align-items: flex-start; gap: 20px; }
  .tmx-icon-bullet { width: 12px; height: 12px; margin-top: 6px; background-color: #d61c1c; flex-shrink: 0; clip-path: polygon(100% 50%, 0 0, 30% 50%, 0 100%); }
  .styleList li p { color: #cecece; font-size: clamp(0.9rem, 2vw, 1rem); font-weight: 200; line-height: 1.7; }
  .styleList li p span { color: #ffffff; font-weight: 600; display: block; margin-bottom: 3px; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .tmx-creative-layout { padding: 50px 16px; }
    .tmx-stores-flex { flex-direction: column; gap: 20px; }
    .styleList { grid-template-columns: 1fr; }
    .styleH2::before { left: -15px; }
  }
