:root{
  --cp-slate-950:#111f31;
  --cp-slate-900:#1b324b;
  --cp-slate-800:#27516d;
  --cp-accent-700:#2864a6;
  --cp-accent-600:#3f7fca;
  --cp-accent-050:#f3f8ff;
  --cp-text:#20354a;
  --cp-muted:#617586;
  --cp-white:#ffffff;
  --cp-border:rgba(39,81,109,0.12);
  --cp-shadow:0 22px 60px rgba(17,31,49,0.08);
  --cp-shadow-strong:0 30px 80px rgba(17,31,49,0.14);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}

body.cp-page{
  --product-page-bg:url("../imgs/FONDO_AZUL-01.png");
  color:var(--cp-text);
  font-family:Inter, "Segoe UI", Arial, sans-serif;
}

.cp-shell{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.cp-nav{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(39,81,109,0.08);
}

.cp-nav .cp-shell{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.cp-back{
  color:var(--cp-slate-800);
  text-decoration:none;
  font-weight:700;
}

.cp-logo{
  height:42px;
  width:auto;
}

.cp-hero{padding:56px 0 24px;}

.cp-hero-panel{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap:32px;
  align-items:center;
  padding:34px;
  border-radius:34px;
  background:linear-gradient(135deg, #ffffff, #f4f9ff);
  border:1px solid rgba(39,81,109,0.08);
  box-shadow:var(--cp-shadow-strong);
}

.cp-kicker,
.cp-eyebrow,
.cp-section-head span{
  display:inline-block;
  color:var(--cp-accent-700);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
}

.cp-copy h1,
.cp-section-head h2,
.cp-panel h3,
.cp-feature-block h3,
.cp-cta-panel h2{
  color:var(--cp-slate-900);
}

.cp-copy h1{
  margin:16px 0 0;
  font-size:clamp(38px, 6vw, 72px);
  line-height:0.98;
  letter-spacing:-0.03em;
}

.cp-lead{
  margin:20px 0 0;
  color:#4c5f71;
  font-size:18px;
  line-height:1.72;
  max-width:780px;
}

.cp-highlight-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:26px;
}

.cp-highlight{
  padding:18px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(39,81,109,0.08);
  box-shadow:var(--cp-shadow);
}

.cp-highlight strong{
  display:block;
  font-size:15px;
  color:var(--cp-slate-900);
}

.cp-highlight span{
  display:block;
  margin-top:8px;
  color:var(--cp-muted);
  line-height:1.6;
  font-size:14px;
}

.cp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.cp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.cp-btn:hover{transform:translateY(-1px);}

.cp-btn-primary{
  color:var(--cp-white);
  background:linear-gradient(135deg, #1c5694, #3f7fca);
  box-shadow:0 16px 40px rgba(28,86,148,0.28);
}

.cp-btn-secondary{
  color:var(--cp-slate-800);
  background:#ffffff;
  border:1px solid rgba(39,81,109,0.16);
}

.cp-media-card{
  padding:28px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(63,127,202,0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  border:1px solid var(--cp-border);
  box-shadow:var(--cp-shadow);
}

.cp-media-card img{
  width:100%;
  display:block;
}

.cp-model-section.is-hidden{
  display:none;
}

.cp-model-feature{
  margin-top:24px;
  display:grid;
  grid-template-columns:minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap:24px;
  align-items:center;
  padding:26px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(63,127,202,0.18), transparent 34%),
    linear-gradient(135deg, #0a2d54, #0f4273 58%, #1f5d98);
  border:1px solid rgba(185,220,255,0.14);
  box-shadow:0 28px 70px rgba(7,26,52,0.26);
}

.cp-model-copy h3{
  margin:12px 0 0;
  color:#ffffff;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.05;
}

.cp-model-copy p{
  margin:16px 0 0;
  color:rgba(234,244,255,0.84);
  line-height:1.72;
  font-size:15px;
}

.cp-model-actions{
  margin-top:24px;
}

.cp-model-feature .cp-eyebrow{
  color:#9fd1ff;
}

.cp-model-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(159,209,255,0.18), transparent 36%),
    linear-gradient(180deg, #0a2746, #0e355c);
  border:2px solid rgba(159,209,255,0.5);
  box-shadow:0 28px 70px rgba(7,26,52,0.32);
}

.cp-feature-model{
  width:100%;
  display:block;
  height:420px;
  background:transparent;
  --poster-color:transparent;
}

.cp-model-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  border:0;
  background:linear-gradient(180deg, rgba(5,22,43,0.08), rgba(5,22,43,0.26));
  color:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  cursor:pointer;
  transition:background-color .2s ease, opacity .2s ease;
}

.cp-model-card.is-active .cp-model-overlay{
  opacity:0;
  pointer-events:none;
}

.cp-model-play{
  width:88px;
  height:88px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.94);
  color:var(--cp-accent-700);
  box-shadow:0 16px 40px rgba(7,26,52,0.24);
  font-size:30px;
}

.cp-model-overlay-text{
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.cp-band{padding:18px 0 8px;}

.cp-band-grid,
.cp-kpi-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.cp-band-card,
.cp-panel,
.cp-feature-block,
.cp-kpi-card,
.cp-cta-panel{
  background:#ffffff;
  border:1px solid var(--cp-border);
  box-shadow:var(--cp-shadow);
}

.cp-band-card{
  padding:22px;
  border-radius:24px;
}

.cp-band-card span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:var(--cp-accent-700);
  background:var(--cp-accent-050);
  font-weight:800;
}

.cp-band-card strong{
  display:block;
  margin-top:16px;
  color:var(--cp-slate-900);
  font-size:18px;
}

.cp-band-card p,
.cp-panel p,
.cp-feature-block p{
  color:var(--cp-muted);
  line-height:1.72;
  font-size:15px;
}

.cp-section{padding:34px 0;}

.cp-section-alt{
  background:linear-gradient(180deg, #f5faff, #edf5ff);
  border-top:1px solid rgba(39,81,109,0.05);
  border-bottom:1px solid rgba(39,81,109,0.05);
}

.cp-section-head{
  max-width:860px;
}

.cp-section-head h2{
  margin:14px 0 0;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.05;
  letter-spacing:-0.03em;
}

.cp-section-head p{
  margin:16px 0 0;
  color:var(--cp-muted);
  font-size:16px;
  line-height:1.78;
}

.cp-overview-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap:22px;
  margin-top:26px;
}

.cp-side-stack{
  display:grid;
  gap:18px;
}

.cp-grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin-top:26px;
}

.cp-panel,
.cp-feature-block{
  padding:26px;
  border-radius:26px;
}

.cp-panel-large{
  background:linear-gradient(180deg, #ffffff, #f7fbff);
}

.cp-panel h3,
.cp-feature-block h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
}

.cp-list{
  margin:18px 0 0;
  padding-left:18px;
}

.cp-list li{
  color:var(--cp-muted);
  margin-bottom:10px;
  line-height:1.65;
}

.cp-kpi-grid{
  margin-top:20px;
}

.cp-kpi-card{
  padding:22px;
  border-radius:24px;
}

.cp-kpi-card strong{
  display:block;
  color:var(--cp-accent-700);
  font-size:28px;
  line-height:1;
}

.cp-kpi-card span{
  display:block;
  margin-top:12px;
  color:var(--cp-muted);
  line-height:1.66;
  font-size:14px;
}

.cp-spec-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin-top:26px;
}

.cp-cta-panel{
  padding:32px;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg, #ffffff, #f2f8ff);
}

.cp-cta-panel h2{
  margin:12px 0 0;
  font-size:clamp(30px, 3vw, 42px);
  line-height:1.05;
}

.cp-cta-panel p{
  color:var(--cp-muted);
  max-width:700px;
  line-height:1.7;
  font-size:16px;
}

.cp-model-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:120;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.cp-model-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.cp-model-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,22,43,0.78);
  backdrop-filter:blur(7px);
}

.cp-model-modal-card{
  position:relative;
  z-index:1;
  width:min(1120px, calc(100vw - 36px));
  border-radius:28px;
  overflow:hidden;
  border:2px solid rgba(173,219,255,0.46);
  box-shadow:0 34px 80px rgba(4,25,47,0.42);
  background:linear-gradient(180deg, #06203a, #0b3156);
}

.cp-modal-model{
  width:100%;
  display:block;
  max-height:calc(100vh - 48px);
  height:82vh;
  background:transparent;
  --poster-color:transparent;
}

.cp-model-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.92);
  color:var(--cp-slate-900);
  font-size:16px;
  box-shadow:0 12px 30px rgba(7,26,52,0.22);
  cursor:pointer;
}

@media (max-width:960px){
  .cp-hero-panel,
  .cp-model-feature,
  .cp-band-grid,
  .cp-overview-grid,
  .cp-grid-2,
  .cp-kpi-grid,
  .cp-spec-grid,
  .cp-cta-panel{
    grid-template-columns:1fr;
  }

  .cp-cta-panel{
    display:grid;
  }

  .cp-highlight-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .cp-shell{
    width:min(1180px, calc(100% - 28px));
  }

  .cp-nav .cp-shell{
    min-height:64px;
  }

  .cp-logo{
    height:36px;
  }

  .cp-hero{
    padding:30px 0 18px;
  }

  .cp-hero-panel,
  .cp-panel,
  .cp-feature-block,
  .cp-band-card,
  .cp-kpi-card,
  .cp-cta-panel{
    padding:22px;
    border-radius:22px;
  }

  .cp-copy h1{
    font-size:42px;
  }

  .cp-lead{
    font-size:17px;
  }

  .cp-section-head h2{
    font-size:32px;
  }

  .cp-feature-model{
    height:320px;
  }

  .cp-model-play{
    width:72px;
    height:72px;
    font-size:24px;
  }

  .cp-actions{
    flex-direction:column;
  }

  .cp-btn{
    width:100%;
  }

  .cp-model-modal{
    padding:10px;
  }

  .cp-model-modal-card{
    width:min(100vw - 20px, 1120px);
    border-radius:20px;
  }
}
