/* =========================================
   COMPONENT · CONTENT SPLIT
========================================= */

.c-content-split{
  padding: clamp(80px, 10vh, 120px) 0;
}


/* =========================================
   CONTAINER
========================================= */

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

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}


/* =========================================
   MEDIA
========================================= */

.c-content-split__media{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.c-content-split__image--0 img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.c-content-split__image--1 img{
  width: 72%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}


/* =========================================
   CONTENT
========================================= */

.c-content-split__content{
  max-width: 640px;
  width: 100%;
}


/* =========================================
   TITLE
========================================= */

.c-content-split__title{
  margin: 0;

  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
}

.c-content-split__title span{
  font-weight: 300;
}


/* =========================================
   SUBTITLE
========================================= */

.c-content-split__subtitle{
  margin-top: 50px;

  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}


/* =========================================
   TEXT
========================================= */

.c-content-split__text{
  margin-top: 18px;

  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.c-content-split__text p{
  margin: 0 0 12px;
  color: #0A052D;
}

.c-content-split__text p strong{
  color: #C98028;
  font-weight: 400;
}


/* =========================================
   CTA BOX (ARREGLADO BIEN)
========================================= */

.c-content-split__cta{
  margin-top: 60px;
  padding: 0 24px; /* 🔥 aire lateral real */
}

.c-content-split__cta-inner{
  max-width: 1172px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 130px;

  padding: 36px 48px;

  border-radius: 15px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 40.5px -24px rgba(0, 0, 0, 0.25);
}

.c-content-split__cta-content{
  max-width: 720px;
}

.c-content-split__cta-title{
  margin: 0 0 12px;

  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.c-content-split__cta-text{
  margin: 0;

  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

/* =========================================
   CTA BUTTON (TREZE SYSTEM)
========================================= */

.c-content-split__cta-button{
  flex-shrink: 0;

  display: inline-block;
  
  padding: 12px 22px;

  border-radius: 6px;

  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;

  transition: all .25s ease;
}

.c-content-split__cta-button:hover{
  transform: translateY(-2px);
}


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

@media (max-width: 1100px){

  .c-content-split__container{
    gap: 48px;
  }

  .c-content-split__subtitle{
    font-size: 22px;
  }

  .c-content-split__text{
    font-size: 17px;
  }

  .c-content-split__cta-inner{
    gap: 60px;
  }

}


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

@media (max-width: 991px){

  .c-content-split{
    padding: clamp(64px, 8vh, 96px) 0;
  }

  .c-content-split__container{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .c-content-split__media{
    order: -1;
    align-items: center;
  }

  .c-content-split__content{
    max-width: 100%;
    text-align: center;
  }

  /* CTA */

  .c-content-split__cta{
    padding: 0 24px;
  }

  .c-content-split__cta-inner{
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

}


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

@media (max-width: 640px){

  .c-content-split{
    padding: 56px 0 32px;
  }

  .c-content-split__container{
    width: calc(100% - 32px);
    gap: 28px;
  }

  .c-content-split__title{
    font-size: 32px;
    line-height: 1.15;
  }

  .c-content-split__subtitle{
    font-size: 18px;
    margin-top: 20px;
  }

  .c-content-split__text{
    font-size: 15px;
    margin-top: 14px;
  }

  /* CTA */

  .c-content-split__cta{
    padding: 0 16px;
  }

  .c-content-split__cta-inner{
    padding: 20px;
  }

  .c-content-split__cta-button{
    width: 80%;
    text-align: center;
  }

}