.gc-hero{padding:22px 0;}

.gc-hero__wrap{
  max-width:1180px;margin:0 auto;
  background:#fff;border-radius:26px;
  box-shadow:0 12px 40px rgba(10,20,60,.08);
  padding:34px 36px;
  display:flex;gap:28px;align-items:center;justify-content:space-between;
}

.gc-hero__left{flex:1;min-width:320px}
.gc-hero__left, .gc-hero__left *{text-align:left !important;}

.gc-hero__title{
  margin:0 0 12px;
  font-weight:900;
  line-height:1.18;
  font-size:30px;
  color:#1b1fbf;
  max-width:650px;
}

.gc-hero__subtitle{margin:0 0 18px;font-size:16px;color:#333;}

.gc-hero__list{list-style:none;margin:0 0 22px;padding:0;display:grid;gap:10px}
.gc-hero__list li{display:flex;gap:10px;align-items:center;font-size:15px}

.gc-check{
  width:22px;height:22px;border-radius:999px;
  background:linear-gradient(180deg,#ffb400,#ff8a00);
  position:relative;flex:0 0 22px;
}
.gc-check:after{
  content:"";position:absolute;left:7px;top:5px;width:7px;height:11px;
  border-right:3px solid #fff;border-bottom:3px solid #fff;transform:rotate(40deg);
}

/* BOTÓN */
.gc-hero__btn{
  padding:16px 38px;
  border-radius:9999px;
  font-size:16.5px;
  font-weight:900;
  color:#fff;
  border:0;
  cursor:pointer;
  background:linear-gradient(180deg,#ffb400,#ff8a00);
  box-shadow:0 18px 42px rgba(255,138,0,.35);
}
.gc-hero__btn:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 48px rgba(255,138,0,.45);
}

.gc-hero__note{margin-top:10px;font-size:13px;color:#777}

/* DERECHA */
.gc-hero__right{width:420px;max-width:42%;display:flex;flex-direction:column;gap:16px;align-items:flex-end}

/* TARJETA */
.gc-card{
  width:360px;height:200px;border-radius:26px;
  padding:24px 26px;
  background:linear-gradient(180deg,#1d24d1,#3f46ff);
  color:#fff;
  box-shadow:0 18px 45px rgba(23,35,200,.35);
  display:flex;flex-direction:column;justify-content:space-between;
}
.gc-card__brand{font-size:26px;font-weight:900}
.gc-card__chip{width:52px;height:34px;border-radius:10px;background:#ffb400}
.gc-card__type{font-size:15px;opacity:.9}
.gc-card__use{font-size:13px;font-weight:600}

/* FAMILIA */
.gc-family{
  width:360px;border-radius:22px;padding:16px 18px;
  background:#fff;box-shadow:0 10px 34px rgba(10,20,60,.08);
  display:flex;gap:12px;align-items:center;
}
.gc-family__emoji{font-size:26px}
.gc-family__txt{font-size:15px;line-height:1.35}

/* MODAL */
.gc-modal{position:fixed;inset:0;display:none;z-index:9999}
.gc-modal.is-open{display:block}
.gc-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.gc-modal__box{
  position:relative;margin:12vh auto;
  background:#fff;border-radius:22px;
  padding:22px;max-width:520px;
}
.gc-modal__badge{
  background:#1d24d1;color:#fff;font-weight:900;
  padding:8px 12px;border-radius:999px;
}
.gc-modal__btn{
  margin-top:14px;padding:12px 18px;
  border-radius:14px;border:0;
  background:linear-gradient(180deg,#ffb400,#ff8a00);
  color:#fff;font-weight:900;cursor:pointer;
}

/* Responsive */
@media(max-width:900px){
  .gc-hero__wrap{flex-direction:column;padding:26px 20px}
  .gc-hero__right{width:100%;align-items:center}
  .gc-card,.gc-family{width:100%}
  .gc-hero__title{font-size:26px}
}

/* === FIX TARJETA – IGUALAR A LA 2ª IMAGEN === */

/* Card base */
.gc-card{
  width:360px;
  height:210px;
  border-radius:28px;
  padding:24px 26px;
  background: linear-gradient(180deg, #2b32d9 0%, #3f46ff 100%);
  color:#fff;
  box-shadow:0 20px 50px rgba(43,50,217,.45);
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Marca */
.gc-card__brand{
  font-size:28px;
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:6px;
}

/* Chip ARRIBA A LA DERECHA */
.gc-card__chip{
  position:absolute;
  top:22px;
  right:24px;
  width:56px;
  height:36px;
  border-radius:12px;
  background:#ffb400;
}

/* Textos */
.gc-card__type{
  font-size:15px;
  opacity:.95;
  margin-top:8px;
}

.gc-card__use{
  font-size:14px;
  font-weight:600;
  opacity:.95;
  margin-top:auto;
}

/* Ajuste responsive */
@media (max-width:900px){
  .gc-card{
    width:100%;
    max-width:420px;
  }
}


/* === AJUSTE FINAL TARJETA: CHIP ARRIBA DERECHA === */

.gc-card{
  position: relative; /* asegurar posicionamiento */
}

/* Chip flotante */
.gc-card__chip{
  position: absolute;
  top: 20px;
  right: 22px;
  margin: 0;              /* quitar cualquier margen previo */
}

/* Evitar que empuje el texto */
.gc-card__top{
  position: relative;
  padding-right: 70px;    /* espacio para el chip */
}

