.c-about{
  position: relative;
  padding: clamp(80px, 12vh, 120px) 0;
}

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

/* CARD */
.c-about__card{
  position: relative;
  border-radius: 30px;
  overflow: visible; /* CLAVE: permitir que la imagen salga */

  background: linear-gradient(90deg, #0A052D 25%, #291F46 66%);

  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;

  min-height: 520px;
}

/* IMAGEN */
.c-about__image{
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

/* DESKTOP → sobresale */
.c-about__image img{
  position: relative;

  height: auto;
  max-height: 720px;
  width: auto;

  transform: translate(-40px, 0px) scale(1.1);
  transform-origin: bottom left;

  object-fit: contain;
}

/* CONTENIDO */
.c-about__content{
  padding: clamp(40px, 6vw, 70px);
  max-width: 720px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TITLE */
.c-about__title{
  margin: 0;
  font-family: "Lexend Deca", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.c-about__title-strong{
  display: inline;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #C98028;
}

.c-about__title-light{
  display: inline;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #C98028;
}

/* TEXTO */
.c-about__text{
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #ffffff;
  font-weight: normal;
  max-width: 520px;
}

/* BOTÓN */
.c-about__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;

  min-height: 48px;
  padding: 0 24px;

  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;

  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-about__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  filter: brightness(1.06);
}

@media (max-width: 991px){

  .c-about__card{
    grid-template-columns: 360px 1fr;
    min-height: auto;
  }

  .c-about__image img{
    max-height: 520px;
    transform: translate(-20px,0) scale(1.05);
  }

  .c-about__content{
    padding: 40px;
  }

  .c-about__btn{
    width: auto;
  }

}

@media (max-width: 640px){
  
  .c-about__container {
    text-align: center;
  }

  .c-about__image{
	display: none;
  }

  .c-about__card{
	grid-template-columns: 1fr;
  }
  
  .c-about__btn {
    text-align: center;
  }

}