/* =========================
   Orientación Salud - Landing (Azul)
   ========================= */

:root{
  --bg: #f6fbff;
  --bg2:#eef7ff;
  --card:#ffffff;
  --text:#0b1b33;
  --muted:#4b5f7a;
  --line:#d7e8ff;
  --accent:#1e6fff;
  --accent2:#27b1ff;
  --good:#19c37d;
  --shadow: 0 16px 60px rgba(11,27,51,.12);
  --shadow2: 0 10px 30px rgba(11,27,51,.10);
}

*{ box-sizing:border-box; }
html,body{
  margin:0; padding:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(39,177,255,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(30,111,255,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(246,251,255,.78);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:30px; height:30px; }
.brand__name{ font-weight:900; letter-spacing:.2px; }

.nav{ display:flex; gap:18px; align-items:center; color:var(--muted); }
.nav a{
  padding:8px 10px;
  border-radius:12px;
  transition: .2s ease;
}
.nav a:hover{ background: rgba(30,111,255,.08); color: var(--text); }

.header__actions{ display:flex; align-items:center; gap:10px; }
.burger{
  display:none;
  width:44px; height:44px;
  background:transparent; border:1px solid var(--line);
  border-radius:14px; cursor:pointer;
}
.burger span{ display:block; height:2px; background: rgba(11,27,51,.70); margin:7px 10px; border-radius:99px; }

.mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:10px;
  background: rgba(246,251,255,.92);
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
}
.mobile a:hover{ background: rgba(30,111,255,.08); color: var(--text); }
.mobile__cta{ margin-top:10px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  color:var(--text);
  font-weight:800;
  transition:.2s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.btn--primary{
  border-color: rgba(30,111,255,.25);
  background: linear-gradient(135deg, rgba(30,111,255,.98), rgba(39,177,255,.98));
  color: #fff;
  box-shadow: 0 18px 55px rgba(30,111,255,.20);
}
.btn--primary:hover{ box-shadow: 0 22px 75px rgba(30,111,255,.24); }
.btn--ghost{ background: transparent; }
.btn--lg{ padding:14px 18px; border-radius:18px; font-size: 15px; }

.hero{
  padding:64px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(30,111,255,.08);
  border:1px solid rgba(30,111,255,.16);
  color: rgba(11,27,51,.78);
  font-size: 13px;
  font-weight: 700;
}
h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height:1.02;
  letter-spacing:-.7px;
}
.hero__lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero__ctas{ display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 18px; }
.hero__meta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin:18px 0 12px;
}
.meta{
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.meta__kpi{ display:block; font-weight:900; font-size: 18px; }
.meta__label{ display:block; color: var(--muted); font-size: 12px; margin-top:2px; }

.disclaimer{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(30,111,255,.16);
  color: rgba(11,27,51,.80);
  font-size: 12.5px;
  line-height: 1.55;
}

.hero__visual{
  position:relative;
  min-height: 440px;
}
.blob{
  position:absolute;
  width: 360px; height: 360px;
  filter: blur(45px);
  opacity:.55;
  border-radius: 999px;
  pointer-events:none;
}
.blob--a{ right: -55px; top: 25px; background: rgba(39,177,255,.35); }
.blob--b{ left: -55px; bottom: -65px; background: rgba(30,111,255,.28); }

.glass{
  position:relative;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(30,111,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-bottom:1px solid rgba(30,111,255,.12);
  background: linear-gradient(90deg, rgba(30,111,255,.08), rgba(39,177,255,.06));
}
.dot{ width:10px; height:10px; border-radius:50%; opacity:.85; }
.dot--r{ background:#ff5f57; }
.dot--y{ background:#febc2e; }
.dot--g{ background:#28c840; }
.glass__title{ margin-left:6px; color: rgba(11,27,51,.65); font-size: 12px; font-weight: 700; }

.glass__body{ padding:18px; display:grid; gap:12px; }
.card{
  padding:14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow2);
}
.card h3{ margin:0 0 6px; font-size: 15px; }
.card p{ margin:0; color: var(--muted); font-size: 13px; line-height:1.55; }
.card--gradient{
  border-color: rgba(30,111,255,.20);
  background: linear-gradient(135deg, rgba(30,111,255,.10), rgba(39,177,255,.08));
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stats__item{
  padding:12px;
  border-radius: 18px;
  border: 1px solid rgba(30,111,255,.12);
  background: rgba(246,251,255,.95);
}
.stats__num{ display:block; font-weight:900; }
.stats__label{ display:block; margin-top:2px; color:var(--muted); font-size: 12px; }

.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(30,111,255,.04), rgba(255,255,255,.00));
  border-top:1px solid rgba(30,111,255,.10);
  border-bottom:1px solid rgba(30,111,255,.10);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  margin-bottom: 22px;
}
.section__head h2{ margin:0; font-size: 28px; letter-spacing:-.3px; }
.section__head p{ margin:0; color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:18px;
  border-radius: 22px;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
}
.feature img{ width:28px; height:28px; opacity:.98; }
.feature h3{ margin:12px 0 8px; }
.feature p{ margin:0; color:var(--muted); line-height: 1.6; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.checklist{
  list-style:none;
  padding:0; margin:18px 0 0;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-left:28px;
  color: rgba(11,27,51,.92);
  font-weight: 650;
}
.checklist li::before{
  content:"";
  position:absolute; left:0; top:4px;
  width:18px; height:18px;
  border-radius:6px;
  background: linear-gradient(135deg, rgba(25,195,125,.95), rgba(39,177,255,.75));
  box-shadow: 0 10px 25px rgba(25,195,125,.12);
  -webkit-mask: url("../assets/check.svg") center/16px 16px no-repeat;
          mask: url("../assets/check.svg") center/16px 16px no-repeat;
}

.ctaRow{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  margin-top:18px;
}
.small{ color: var(--muted); font-size: 12px; }

.panel{
  padding:22px;
  border-radius: 24px;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
}
.panel h3{ margin:0 0 12px; }
.steps{ margin:0; color: rgba(11,27,51,.88); display:grid; gap:10px; }
.panel__note{ color: var(--muted); margin: 14px 0 0; }

.faq details{
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  padding:14px 14px;
  margin-bottom:10px;
  box-shadow: var(--shadow2);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{ margin:10px 0 0; color: var(--muted); line-height:1.6; }

.contactCards{ display:grid; gap:12px; margin: 18px 0 0; }
.contactCard{
  display:flex; align-items:center; gap:12px;
  padding:14px;
  border-radius: 20px;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.contactCard__icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(30,111,255,.18), rgba(39,177,255,.14));
  border:1px solid rgba(30,111,255,.14);
  color: rgba(11,27,51,.92);
}
.contactCard__title{ font-weight:900; }
.contactCard__sub{ color: var(--muted); font-size: 13px; margin-top:2px; }

.form{
  padding:22px;
  border-radius: 24px;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  display:grid;
  gap:12px;
}
.form label{ display:grid; gap:7px; color: rgba(11,27,51,.85); font-weight:800; font-size: 13px; }
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(30,111,255,.16);
  background: rgba(246,251,255,.95);
  color: var(--text);
  outline:none;
}
input:focus,textarea:focus{ border-color: rgba(30,111,255,.55); box-shadow: 0 0 0 4px rgba(30,111,255,.15); }
.checkbox{ display:flex; gap:10px; align-items:flex-start; font-weight:700; color: var(--muted); }
.checkbox input{ width:18px; height:18px; margin-top:2px; }

.footer{
  padding: 26px 0 40px;
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  border-top:1px solid rgba(30,111,255,.12);
  padding-top:20px;
  color: var(--muted);
}

.floatWA{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius: 999px;
  border:1px solid rgba(25,195,125,.28);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
}
.floatWA span{ font-weight:900; }
.floatWA img{ width:22px; height:22px; }


/* =========================
   Galería + Planes/Precios
   ========================= */

.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.shot img{
  width:100%;
  height:auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.shot figcaption{
  padding:12px 14px;
  font-weight:800;
  color: rgba(11,27,51,.78);
  font-size: 13px;
  border-top:1px solid rgba(30,111,255,.10);
  background: rgba(246,251,255,.75);
}

.hint{
  margin:14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.65;
}

.pricingGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  align-items:stretch;
}
.priceCard{
  position:relative;
  padding:18px;
  border-radius: 24px;
  border:1px solid rgba(30,111,255,.14);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height: 100%;
}
.priceCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.priceCard h3{ margin:0; font-size: 18px; letter-spacing:-.2px; }
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius: 999px;
  font-weight:900;
  font-size: 12px;
  color: rgba(11,27,51,.82);
  border:1px solid rgba(30,111,255,.18);
  background: linear-gradient(135deg, rgba(30,111,255,.10), rgba(39,177,255,.08));
}
.priceCard__desc{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}
.priceCard__price{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius: 18px;
  border:1px solid rgba(30,111,255,.14);
  background: rgba(246,251,255,.92);
}
.priceCard__price .price{
  font-size: 28px;
  font-weight: 900;
  letter-spacing:-.6px;
}
.priceCard__price .per{
  color: var(--muted);
  font-size: 12px;
  font-weight:800;
}
.priceList{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.priceList li{
  position:relative;
  padding-left:28px;
  color: rgba(11,27,51,.90);
  font-weight:700;
}
.priceList li::before{
  content:"";
  position:absolute; left:0; top:4px;
  width:18px; height:18px;
  border-radius:6px;
  background: linear-gradient(135deg, rgba(25,195,125,.95), rgba(39,177,255,.75));
  -webkit-mask: url("../assets/check.svg") center/16px 16px no-repeat;
          mask: url("../assets/check.svg") center/16px 16px no-repeat;
}

.priceCard .btn{ margin-top:auto; }

.priceCard--popular{
  border-color: rgba(25,195,125,.22);
  box-shadow: 0 20px 70px rgba(11,27,51,.16);
}
.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.4px;
  color: rgba(11,27,51,.86);
  background: linear-gradient(135deg, rgba(25,195,125,.25), rgba(39,177,255,.20));
  border:1px solid rgba(25,195,125,.28);
}

.priceNote{
  margin-top: 14px;
  padding:14px 16px;
  border-radius: 20px;
  border:1px solid rgba(30,111,255,.12);
  background: rgba(255,255,255,.70);
  color: var(--muted);
  box-shadow: var(--shadow2);
}
.priceNote p{ margin:0; line-height:1.65; }


@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 380px; }
  .split{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .galleryGrid{ grid-template-columns: 1fr; }
  .pricingGrid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .mobile{ display:block; }
}
