:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --card:#ffffff;
  --soft:#f8fafc;
  --accent:#111827;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%; display:block}
.container{width:min(1100px, 92vw); margin:0 auto;}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0;}
.brand{display:flex; align-items:center; gap:10px; min-width:180px;}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, #ffffff, #f1f5f9);
  border:1px solid var(--line);
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}
.brand__title{font-weight:800; letter-spacing:.2px;}
.brand__subtitle{font-size:12px; color:var(--muted); margin-top:2px;}
.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:center;}
.nav__link{
  text-decoration:none; color:var(--muted);
  font-weight:600; font-size:14px;
  padding:8px 10px; border-radius:12px;
}
.nav__link:hover{background:var(--soft); color:var(--text);}
.header__actions{display:flex; align-items:center; gap:10px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:14px;
  background:var(--accent); color:white; text-decoration:none; font-weight:700;
  border:1px solid var(--accent);
  box-shadow: 0 10px 22px rgba(2,6,23,.12);
}
.btn:hover{transform: translateY(-1px);}
.btn--ghost{
  background:transparent; color:var(--text);
  border:1px solid var(--line); box-shadow:none;
}
.btn--ghost:hover{background:var(--soft); transform:none;}
.btn--sm{padding:9px 12px; border-radius:12px; font-size:13px;}
.btn__icon{font-size:16px}
.hero{position:relative; min-height:76vh; display:grid;}
.hero__media{position:absolute; inset:0; overflow:hidden;}
.hero__media img{width:100%; height:100%; object-fit:cover; transform: scale(1.02);}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.35) 100%);
}
.hero__content{position:relative; padding:96px 0 56px; display:flex; align-items:flex-start;}
.hero__card{
  width:min(560px, 100%);
  background: rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.hero__title{margin:0 0 10px; font-size:42px; line-height:1.05; letter-spacing:-.6px;}
.hero__text{margin:0 0 18px; color:var(--muted); font-size:16px;}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px;}
.hero__note{display:flex; gap:8px; flex-wrap:wrap;}
.pill{
  display:inline-flex; padding:7px 10px; border-radius:999px;
  border:1px solid var(--line); background:#ffffff; color:var(--muted);
  font-weight:700; font-size:12px;
}
.section{padding:72px 0;}
.section--alt{background: var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.section__head{margin-bottom:18px;}
.section__title{margin:0 0 6px; font-size:30px; letter-spacing:-.2px;}
.section__subtitle{margin:0; color:var(--muted);}
.grid{
  display:grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px; margin-top:18px;
}
.service{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}
.service__title{margin:0 0 8px; font-size:16px;}
.service__text{margin:0; color:var(--muted);}
.cardwrap{display:grid; gap:14px; margin-top:18px;}
.bizcard{
  display:grid; grid-template-columns: 1fr 1.3fr;
  gap:14px; padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:white;
  box-shadow: var(--shadow);
}
.bizcard__left{
  display:flex; align-items:center; gap:12px;
  border-right: 1px dashed var(--line);
  padding-right:14px;
}
.bizcard__badge{
  width:56px; height:56px;
  border-radius:18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border:1px solid var(--line);
}
.bizcard__title{font-weight:900; font-size:22px; letter-spacing:-.3px;}
.bizcard__tag{color:var(--muted); font-weight:700; margin-top:2px; font-size:13px;}
.bizcard__right{display:grid; gap:10px;}
.bizcard__block{display:grid; gap:4px;}
.bizcard__label{font-size:12px; color:var(--muted); font-weight:900; text-transform:uppercase; letter-spacing:.08em;}
.bizcard__value{font-weight:800; color:var(--text);}
.bizcard__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px;}
.cardhint{
  display:flex; align-items:flex-start; gap:10px;
  background:white; border:1px solid var(--line);
  border-radius:16px; padding:14px;
}
.cardhint__icon{font-size:18px; margin-top:2px;}
.cardhint__text{color:var(--muted); font-weight:700;}
.location{margin-top:18px; display:grid; gap:12px;}
.location__box{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:white;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}
.location__icon{font-size:18px;}
.location__content{flex:1; min-width:160px;}
.location__title{font-weight:900;}
.location__link a{color:var(--muted); font-weight:700; word-break:break-all; text-decoration:none;}
.location__link a:hover{text-decoration:underline;}
.location__actions{display:flex; gap:10px; flex-wrap:wrap;}
.location__note{display:flex; gap:8px; flex-wrap:wrap;}
.footer{border-top:1px solid var(--line); background:white; padding:22px 0;}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.footer__title{font-weight:900;}
.footer__text{color:var(--muted); font-weight:700; font-size:13px; margin-top:4px;}
.footer__right{display:flex; gap:12px; flex-wrap:wrap;}
.footer__link{color:var(--muted); text-decoration:none; font-weight:800;}
.footer__link:hover{color:var(--text);}
@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .bizcard{grid-template-columns: 1fr;}
  .bizcard__left{border-right:none; border-bottom:1px dashed var(--line); padding-right:0; padding-bottom:12px;}
}
@media (max-width: 560px){
  .nav{display:none;}
  .hero__content{padding:88px 0 46px;}
  .hero__title{font-size:34px;}
  .grid{grid-template-columns: 1fr;}
  .location__box{flex-direction:column; align-items:flex-start;}
}


/* Logo */
.brand__mark img{
  width:32px;
  height:32px;
  object-fit:contain;
  display:block;
}

/* Contacto */
.contact{display:grid; gap:14px; margin-top:18px;}
.contact__card{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
  display:grid;
  gap:10px;
}
.contact__row{display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap;}
.contact__label{color:var(--muted); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:.08em;}
.contact__value{font-weight:900; color:var(--text); text-decoration:none;}
.contact__value:hover{text-decoration:underline;}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap;}
