*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}


/* Variables de color  para el header */
:root{
  --celeste: rgba(0, 200, 255, 0.90);
  --amarillo: hsla(60, 100%, 50%, 1.00);
  --accent3: hsla(19, 100%, 50%, 1.00);

  --txt:#07131a;
  --muted: rgba(7,19,26,.65);
  --line: rgba(7,19,26,.12);
  --card: rgba(255,255,255,.92);
  --shadow: 0 22px 60px rgba(0,0,0,.12);
  --r: 18px;
}

.cp-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.cp-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.cp-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--txt);
}

.cp-logo{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.95) 0 32%, transparent 33%),
    linear-gradient(135deg, var(--celeste), rgba(0,200,255,.35));
  box-shadow:
    0 14px 30px rgba(0,200,255,.18),
    inset 0 0 0 1px rgba(0,200,255,.35);
  position: relative;
}

.cp-logo::after{
  content:"";
  position:absolute;
  inset: 7px 9px 8px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.15));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.cp-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
}

.cp-nav{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cp-link{
  text-decoration:none;
  color: rgba(7,19,26,.82);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.cp-link:hover{
  background: rgba(0,200,255,.10);
  border-color: rgba(0,200,255,.22);
  transform: translateY(-1px);
}

.cp-link.active{
  background: rgba(0,200,255,.14);
  border-color: rgba(0,200,255,.30);
  color: rgba(7,19,26,.92);
}

.cp-cta{
  background: linear-gradient(135deg, var(--accent3), rgba(255,255,255,.12));
  border-color: rgba(255,255,255,.35);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255,79,0,.20);
}

.cp-cta:hover{
  background: linear-gradient(135deg, rgba(255,79,0,.95), rgba(255,255,255,.18));
  border-color: rgba(255,255,255,.45);
}

/* Burger (mobile) */
.cp-burger{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,200,255,.24);
  background: rgba(0,200,255,.08);
  cursor:pointer;
  padding: 0 10px;
}

.cp-burger span{
  display:block;
  height: 2px;
  margin: 6px 0;
  background: rgba(7,19,26,.78);
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 860px){
  .cp-burger{ display:block; }

  .cp-nav{
    display:none;
    position:absolute;
    left: 18px;
    right: 18px;
    top: 64px;
    padding: 12px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,200,255,.22);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .cp-nav.open{ display:flex; }

  .cp-link{
    border-radius: 14px;
    padding: 12px 12px;
    text-align: left;
  }
}

/* “chip” pequeño opcional en amarillo (si luego lo usas) */
.cp-chip-yellow{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,0,.18);
  border: 1px solid rgba(255,255,0,.38);
  color: rgba(7,19,26,.92);
  font-weight: 900;
  font-size: 12px;
}

.logo2{
  width: 42px;
  height: 62px;
  z-index: 20;
  position: relative;
  top: 10px;
  left: 15px;

}


/* ===== Dropdown "Más" ===== */
.cpdrop{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cpdrop-btn{
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cpdrop-caret{
  margin-left: 6px;
  font-size: 12px;
  opacity: .8;
}

.cpdrop-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 14px;

  display: none;            /* oculto por defecto */
  z-index: 9999;

  /* look */
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  backdrop-filter: blur(8px);
}

.cpdrop.open .cpdrop-menu{
  display: block;
}

.cpdrop-item{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #0b1220;
  font-weight: 700;
  font-size: 14px;
}

.cpdrop-item:hover{
  background: rgba(0,200,255,.12);
}

/* si tu navbar es oscura, cambia el menú a oscuro */
.cp-nav.is-dark .cpdrop-menu{
  background: rgba(8,10,16,.95);
  border-color: rgba(238,246,255,.12);
}
.cp-nav.is-dark .cpdrop-item{ color: #eef6ff; }
.cp-nav.is-dark .cpdrop-item:hover{ background: rgba(0,200,255,.14); }






















/* seccion del hero principal*/
:root{
  --celeste: rgba(0, 200, 255, 0.90);
  --amarillo: hsla(60, 100%, 50%, 1.00);
  --accent3: hsla(19, 100%, 50%, 1.00);
}

.pb-heroSection{
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  padding: 0px;
  margin: 0px;

  /* imagen de fondo */
  background-image: url("../img/back-ins.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-items: center;
}

/* capa oscura para que se lea el texto */
.pb-heroOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,200,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70));
}

/* contenido encima del overlay */
.pb-heroInner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
}

.pb-heroContent{
  max-width: 680px;
  color: #fff;
  text-align: left;
}

.pb-heroTitle{
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 1000;
  letter-spacing: .3px;
  text-shadow: 0 14px 30px rgba(0,0,0,.45);
}

.pb-heroSub{
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  opacity: .92;
  text-shadow: 0 12px 22px rgba(0,0,0,.45);
}

.pb-heroActions{
  display:flex;
  gap: 12px;
  align-items:center;
}

.pb-heroBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;

  background: var(--celeste);
  color: #062a33;
  font-weight: 1000;
  text-decoration: none;
  letter-spacing: .2px;

  box-shadow: 0 18px 30px rgba(0,200,255,.20);
  border: 1px solid rgba(0,200,255,.45);

  transition: transform .12s ease, filter .12s ease;
}

.pb-heroBtn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.pb-heroBtn:active{
  transform: translateY(0px);
}

/* Responsive: centra el texto en móviles */
@media (max-width: 720px){
  .pb-heroContent{
    text-align:center;
    margin: 0 auto;
  }
  .pb-heroActions{
    justify-content: center;
  }
}
















:root{
  --celeste: rgba(0, 200, 255, 0.90);
  --amarillo: hsla(60, 100%, 50%, 1.00);
  --accent3: hsla(19, 100%, 50%, 1.00);

  --insText:#0b1720;
  --insMuted: rgba(11,23,32,.62); 
  --insLine: rgba(11,23,32,.10);
  --insBg:#fff;
  --insGray:#d9d9d9;
}

.ins-pricing{
  padding: 26px 16px 44px;
  background: var(--insBg);
  color: var(--insText);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ins-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.ins-title{
  text-align:center;
  font-size: 34px;
  margin: 0 0 8px;
  font-weight: 1000;
  letter-spacing: .2px;
}

.ins-sub{
  text-align:center;
  margin: 0 0 18px;
  color: var(--insMuted);
  font-weight: 800;
}

.ins-tableCard{
  border-top: 1px solid var(--insLine);
  background: var(--insBg);
  overflow-x: auto;
}

.ins-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.ins-table thead th{
  padding: 18px 14px;
  font-size: 20px;
  text-align: center;
  font-weight: 1000;
  border-bottom: 1px solid var(--insLine);
  white-space: nowrap;
}

.ins-table tbody td{
  padding: 20px 14px;
  border-bottom: 1px solid var(--insLine);
  text-align: center;
  font-size: 20px;
  vertical-align: middle;
}

.ins-colMatch{
  width: 340px;
  text-align: left !important;
}

.ins-colOdds{
  width: 240px;
  white-space: nowrap;
}

.ins-match{
  display:flex;
  align-items:center;
  gap: 12px;
  justify-content: flex-start;
}

.ins-ball{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

.ins-gray{
  background: var(--insGray);
  border: 1px solid rgba(0,0,0,.06);
}

.ins-cp{
  background: var(--celeste);
  border: 1px solid rgba(0,200,255,.45);
  color: #062a33;
  box-shadow: 0 14px 22px rgba(0,200,255,.18);
}

.ins-ballText{
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .6px;
}

.ins-plus{
  font-weight: 1100;
  font-size: 26px;
  line-height: 1;
  color: var(--insText);
  margin: 0 2px;
}

.ins-note{
  margin-top: 6px;
  font-size: 14px;
  color: var(--insMuted);
  font-weight: 800;
}

.ins-footnote{
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--insMuted);
  text-align: center;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 760px){
  .ins-title{ font-size: 26px; }
  .ins-table thead th{ font-size: 16px; padding: 14px 12px; }
  .ins-table tbody td{ font-size: 16px; padding: 16px 12px; }
  .ins-ball{ width: 28px; height: 28px; }
  .ins-plus{ font-size: 22px; }
}














/* seccion  para boton registrarse  */
/* ===========================
   ChapiPower Hero (cpHero-*)
   =========================== */

.cpHero{
  padding: clamp(28px, 5vw, 64px) 0;
  background: #ffffff;
}

.cpHero__wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}

/* Left */
.cpHero__title{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #0b0f1a;
  font-weight: 800;
}

.cpHero__text{
  margin: 0 0 20px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}

.cpHero__actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cpHero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #0b0f1a;
  background: #ffffff;
  border: 1.5px solid #0b0f1a;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
}

.cpHero__btn:hover{
  transform: translateY(-1px);
  background: #f8fafc;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.12);
}

.cpHero__btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.10);
}

.cpHero__hint{
  color: #64748b;
  font-size: 13px;
}

/* Right */
.cpHero__right{
  position: relative;
  display: grid;
  justify-items: end;
}

.cpHero__media{
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
  background: #0b0f1a;
}

.cpHero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats card */
.cpHero__stats{
  position: absolute;
  left: 0;
  bottom: -18px;
  transform: translateX(-10%);
  width: min(420px, 92%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 251, 0, 0.95), rgb(151, 119, 3));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.cpHero__stat{
  padding: 8px 10px;
}

.cpHero__statValue{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}

.cpHero__statLabel{
  margin-top: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px){
  .cpHero__wrap{
    grid-template-columns: 1fr;
  }

  .cpHero__right{
    justify-items: start;
  }

  .cpHero__stats{
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 14px;
  }
}













/* ===== Footer dark (bg #000 + letras blancas) ===== */

:root{
  --celeste: rgba(0, 200, 255, 0.90);
  --amarillo: hsla(60, 100%, 50%, 1.00);
  --accent3: hsla(19, 100%, 50%, 1.00);

  /* Dark theme */
  --ftText: rgba(255,255,255,.92);
  --ftMuted: rgba(255,255,255,.68);
  --ftLine: rgba(255,255,255,.12); 
  --ftBg: #000000;
  --ftCard: rgba(255,255,255,.06);
  --ftShadow: 0 22px 60px rgba(0,0,0,.55);
}

.ft-footer{
  background: var(--ftBg);
  color: var(--ftText);
  padding: 22px 16px 28px;
  border-top: 1px solid var(--ftLine);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ft-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.ft-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}

.ft-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  letter-spacing: .4px;
  color: #062a33;

  /* logo celeste */
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.90), rgba(255,255,255,.10)),
              linear-gradient(135deg, var(--celeste), rgba(255,255,255,.06));
  border: 1px solid rgba(0,200,255,.45);
  box-shadow: 0 14px 28px rgba(0,200,255,.22);
}

.ft-name{
  font-weight: 1000;
  font-size: 18px;
  line-height: 1.1;
  color: var(--ftText);
}

.ft-tag{
  margin-top: 2px;
  font-weight: 800;
  color: var(--ftMuted);
  font-size: 13px;
}

/* social */
.ft-social{
  display:flex;
  align-items:center;
  gap: 10px;
}

.ft-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: var(--ftCard);
  box-shadow: 0 14px 22px rgba(0,0,0,.35);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
  text-decoration:none;
}

#fb{
  border: 1px solid rgb(0, 98, 255);
}
#ins{
  border: 1px solid rgb(255, 0, 187);
}
#you{
  border: 1px solid rgb(255, 0, 0);
}
.ft-ico svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.86);
}

.ft-ico:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
  border-color: rgba(0,200,255,.55);
}

.ft-ico:hover svg{
  fill: rgba(0,200,255,.95);
}

/* links */
.ft-links{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ft-link{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .2px;
}

.ft-link:hover{
  color: rgba(0,200,255,.95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* divider + text */
.ft-divider{
  height: 1px;
  background: var(--ftLine);
  margin: 18px 0 14px;
}

.ft-text{
  margin: 0 0 10px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  line-height: 1.55;
  max-width: 980px;
}

/* bottom */
.ft-bottom{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ft-copy{
  font-weight: 900;
  color: rgba(255,255,255,.78);
}

.ft-mini{
  font-weight: 900;
  color: rgba(255,255,255,.62);
}

.ft-dot{
  margin: 0 10px;
  color: rgba(255,255,255,.30);
}

/* Responsive */
@media (max-width: 860px){
  .ft-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .ft-links{
    justify-content: flex-start;
    gap: 14px;
  }
  .ft-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .ft-dot{
    margin: 0 8px;
  }
}
