:root{
  --blue:#0029ff;
  --text:#0b1024;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;

  background:
    radial-gradient(900px 420px at 15% 20%, rgba(0,41,255,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 70%, rgba(0,41,255,.08), transparent 60%),
    linear-gradient(180deg,#fff 0%,#f6f8ff 100%);
}

/* Base text */
p,li{
  margin:0;
  font-weight:500;
  font-size:clamp(13px, .95vw, 16px); /* desktop como la captura */
  line-height:1.6;
}

/* Layout */
.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:clamp(18px, 3vw, 56px);
}

.wrap{
  width:min(1100px, 100%);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  user-select:none;
}

.brand img,
.brand svg{
  width:clamp(34px, 2.5vw, 44px);
  height:auto;
  filter:drop-shadow(0 12px 22px rgba(0,41,255,.18));
}

.brand span{
  font-weight:800;
  letter-spacing:.6px;
  font-size:clamp(22px, 2.6vw, 34px);
}

/* Block center but content inside left aligned */
.contenedor{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:clamp(24px, 2.4vw, 40px);
}

.informacion{
  width:min(565px, 100%);
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:clamp(14px, 2vw, 26px);
}

/* Title */
h1{
  margin:0;
  font-weight:800;
  letter-spacing:-.7px;
  font-size:clamp(30px, 2.4vw, 52px); /* como captura */
  line-height:1.1;
}

/* Lead */
.lead{
  font-weight:500;
  max-width:620px;
}

/* Subtitle */
.sublead{
  font-weight:700;
  color:var(--text);
}

/* List */
.list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:clamp(12px, 1.6vw, 18px);
}

.item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.check{
  width:20px;height:20px;
  border-radius:4px;
  background:var(--blue);
  display:grid;
  place-items:center;
  margin-top:2px;
  box-shadow:0 10px 24px rgba(0,41,255,.18);
  flex:0 0 auto;
}

.check svg{width:14px;height:14px}

/* Note */
.contact-note{
  font-weight:700;
  color:var(--text);
}

/* Buttons */
.actions{
  width:100%;
  display:flex;
  gap:clamp(12px, 2vw, 24px);
  justify-content:center;
  flex-wrap:wrap;
  margin-top:clamp(6px, 1.4vw, 14px);
}

.btn{
  width:min(272px, 100%);
  padding:14px 18px;
  border-radius:999px;
  border:0;
  background:var(--blue);
  color:#fff;
  font-weight:600;
  font-size:clamp(13px, .95vw, 16px); /* igual a captura */
  letter-spacing:.2px;
  cursor:pointer;
  box-shadow:0 24px 55px rgba(0,41,255,.25);
  transition:transform .15s ease, filter .15s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
.btn:active{transform:translateY(0)}

/* Footer line */
.footer-line{
  margin:0;
  text-align:center;
  font-weight:800;
  font-size:12px;
  letter-spacing:1.6px;
  color:rgba(11,16,36,.85);
}

/* =========================================================
   RESPONSIVE: aquí sí reducimos letras como pediste
   ========================================================= */

/* Tablets / laptops chicas */
@media (max-width: 1024px){
  p,li{ font-size: 14px; }
  .btn{ font-size: 14px; }
  .informacion{ width:min(680px, 100%); }
}

/* Tablets vertical / móviles grandes */
@media (max-width: 768px){
  h1{ font-size: 34px; }
  p,li{ font-size: 13px; }
  .brand span{ font-size: 26px; }
  .actions{ gap: 12px; }
  .btn{ padding: 13px 16px; }
}

/* Móviles */
@media (max-width: 520px){
  .page{ padding: 32px; }
  .wrap{ gap: 22px; }
  h1{ font-size: 28px; }
  p,li{ font-size: 12.5px; }
  .footer-line{ font-size: 11px; letter-spacing: 1.2px; }
  .actions{ flex-direction:column; align-items:center; }
  .btn{ width:100%; }
}

