.c-center-message{
  position: relative;
  padding: clamp(100px, 14vh, 160px) 0;
}

/* CONTENEDOR */
.c-center-message__container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* CONTENT */
.c-center-message__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

/* TITLE */
.c-center-message__title{
  margin: 0;
  font-family: "Lexend Deca", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
}

/* TEXTO SUPERIOR */
.c-center-message__title .is-light{
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* ≈56px */
  font-weight: 300;
  color: #291F46;
}

/* TEXTO FUERTE */
.c-center-message__title .is-strong{
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* mismo tamaño */
  font-weight: 600;
  color: #291F46;
}

/* TEXTO SECUNDARIO */
.c-center-message__text{
  max-width: 600px;

  font-family: "Lexend Deca", sans-serif;
  font-weight: normal;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem); /* ≈18px */
  line-height: 1.5;
  color: #291F46;
}

.c-center-message__text p{
  margin: 0;
}

/* BOTÓN */
.c-center-message__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 22px;

  width: fit-content;
  max-width: 100%;

  border-radius: 8px;

  background: linear-gradient(90deg, #DFB37E 0%, #C98028 100%);
  color: #0A052D;

  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;

  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0,0,0,.32);

  transition:
	transform .25s ease,
	box-shadow .25s ease,
	filter .25s ease;
}

.c-center-message__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  filter: brightness(1.06);
}

.c-center-message__btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* TABLET */
@media (max-width: 991px){

  .c-center-message__container{
	width: calc(100% - 40px);
  }

}

/* MOBILE */
@media (max-width: 640px){

  .c-center-message{
	padding: 40px 0;
  }

  .c-center-message__container{
	width: calc(100% - 32px);
  }

  .c-center-message__content{
	gap: 24px;
  }

  .c-center-message__title .is-light,
  .c-center-message__title .is-strong{
	font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .c-center-message__text{
	font-size: 1rem;
  }
  
  .c-center-message__btn{
	width: 80%;
	justify-content: center;
	min-height: 42px;
	font-size: 13px;
  }

}