.c-text-box{
  padding: clamp(48px, 6vw, 80px) 0;
}

.c-text-box__container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.c-text-box__inner{
  background: linear-gradient(135deg, #0A052D 0%, #291F46 100%);
  border-radius: 30px;

  padding:
	clamp(28px, 3.5vw, 34px)
	clamp(32px, 4.5vw, 60px);

  display: flex;
  flex-direction: column;
  gap: 16px;

  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* HEADING → 24px bold */
.c-text-box__heading{
  margin: 0;
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #C98028;
}

/* TEXTO BASE → 20px */
.c-text-box__text{
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: normal;
  line-height: 1.5;
  color: #C98028;
}

/* PÁRRAFOS */
.c-text-box__text p{
  margin: 0;
}

/* ESPACIADO ENTRE BLOQUES */
.c-text-box__text p + p{
  margin-top: 10px;
}

/* ÚLTIMA FRASE → bold (MISMO COLOR) */
.c-text-box__text strong{
  font-weight: 700;
  color: #C98028;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 991px){

  .c-text-box__container{
	width: calc(100% - 40px);
  }

  .c-text-box__inner{
	padding: 28px 36px;
	border-radius: 26px;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 640px){

  .c-text-box{
	padding: 40px 0;
  }

  .c-text-box__container{
	width: calc(100% - 32px);
  }

  .c-text-box__inner{
	padding: 22px;
	border-radius: 20px;
  }

  .c-text-box__heading{
	font-size: 1.15rem;
  }

  .c-text-box__text{
	font-size: 1rem;
  }

}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 420px){

  .c-text-box__inner{
	padding: 20px;
  }

}