.about-section {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0,0,0,.2), rgba(0,0,0,.2)),
    url('https://caosgrowth.com/storage/img/caos-background.webp') 
    no-repeat center / cover;
padding: clamp(40px, 6vw, 80px) 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: clamp(40px, 6vw, 90px);
}

.about-left { flex: 1; }
.about-right { flex: 2; }

.main-logo {
  max-width: 360px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* Base títulos */
.about-right h2 {
  font-family: "Poppins", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

/* Transformamos marcas */
.main-title {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #E67E22;
}

/* con ideas que funcionan */
.submain-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
}

/* en marketing y comunicación */
.text-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
}

/* Texto */
.banner-subtext {
  position: relative;
  z-index: 2;
  max-width: 680px;
  font-family: "Aminute", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 40px 0;
}

/* Imagen secundaria */
.secondary-image {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: -1rem;
}

/* Botón */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg,#E67E22,#ff9f43);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .5px;
  box-shadow: 0 10px 25px rgba(230,126,34,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230,126,34,.5);
}

/* Mobile */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .banner-subtext {
    margin: 30px auto;
  }
}