:root{
  --bg:#0b0c0f;
  --card:#12141a;
  --muted:#9aa3b2;
  --text:#f4f6fb;
  --accent:#f4b400; /* dorado */
  --line:rgba(255,255,255,.12);
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1100px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 75% -10%, rgba(244,180,0,.18), transparent 60%),
              radial-gradient(900px 700px at 10% 15%, rgba(86,122,255,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(244,180,0,.12);
  border:1px solid rgba(244,180,0,.25);
  color:rgba(255,255,255,.95);
  padding:8px 12px; border-radius:999px;
  font-weight:600; letter-spacing:.2px;
}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--accent); box-shadow:0 0 0 4px rgba(244,180,0,.18)}
/* Header */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(10,11,14,.62);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:38px; height:38px; border-radius:12px; background:#fff; padding:6px}
.brand strong{font-size:15px; letter-spacing:.6px}
.brand span{display:block; font-size:12px; color:var(--muted); margin-top:2px}
nav ul{display:flex; gap:18px; padding:0; margin:0; list-style:none; align-items:center}
nav a{ text-decoration:none; color:rgba(255,255,255,.9); font-weight:600; font-size:13px; padding:10px 12px; border-radius:12px}
nav a:hover{background:rgba(255,255,255,.06)}
.cta{
  display:inline-flex; gap:10px; align-items:center;
  background: linear-gradient(135deg, rgba(244,180,0,1), rgba(244,180,0,.72));
  color:#111; text-decoration:none;
  padding:10px 14px; border-radius:14px; font-weight:800; font-size:13px;
  box-shadow: 0 10px 30px rgba(244,180,0,.22);
}
.cta:active{transform: translateY(1px)}
/* Mobile nav */
.menuBtn{display:none; background:none; border:1px solid var(--line); color:var(--text); padding:10px 12px; border-radius:14px}
@media (max-width: 860px){
  nav ul{display:none}
  .menuBtn{display:inline-flex}
  .mobileMenu{display:none}
  .mobileMenu.open{display:block}
  .mobileMenu{
    padding: 0 0 14px;
  }
  .mobileMenu a{display:block; padding:12px 12px; border-radius:14px; text-decoration:none; color:rgba(255,255,255,.92); font-weight:700}
  .mobileMenu a:hover{background:rgba(255,255,255,.06)}
}
/* Hero */
.hero{
  position:relative;
  padding: 74px 0 46px;
  overflow:hidden;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; }
}
.heroCard{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    radial-gradient(1000px 600px at 20% 10%, rgba(244,180,0,.16), transparent 55%),
    rgba(12,13,18,.6);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMedia{
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(10,11,14,.9), rgba(10,11,14,.1)),
    url("assets/img/portada.png");
  background-size: cover;
  background-position: center;
  padding: 34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.heroMedia .title{
  max-width: 540px;
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.03;
  letter-spacing:-1px;
}
.heroMedia p{margin:0; color:rgba(255,255,255,.86); font-size:15px; max-width: 560px}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.btn:hover{background: rgba(255,255,255,.09)}
.btn.primary{background: linear-gradient(135deg, rgba(244,180,0,1), rgba(244,180,0,.76)); color:#111; border-color: rgba(244,180,0,.35)}
.btn.primary:hover{filter: brightness(1.02)}
.heroMeta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 18px;
}
@media (max-width: 520px){
  .heroMeta{grid-template-columns:1fr; }
}
.kpi{
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 12px;
}
.kpi strong{display:block; font-size:13px}
.kpi span{color:var(--muted); font-size:12px}
/* Right panel */
.side{
  padding: 20px;
}
.logoRow{display:flex; align-items:center; gap:14px}
.logoRow img{width:52px;height:52px;border-radius:18px;background:#fff;padding:10px}
.logoRow .name{font-weight:900; letter-spacing:.6px}
.logoRow .sub{color:var(--muted); font-size:12px}
hr.sep{border:none;border-top:1px solid var(--line); margin:16px 0}
.list{
  display:grid; gap:10px;
}
.item{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  padding:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.icon{
  width:44px; height:44px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(244,180,0,.14);
  border:1px solid rgba(244,180,0,.25);
}
.item strong{display:block}
.item span{display:block; font-size:12px; color:var(--muted); margin-top:2px}
.note{
  font-size:12px; color:rgba(255,255,255,.74)
}
.section{padding: 56px 0}
.section h2{
  margin:0 0 10px; font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.6px;
}
.section p.lead{margin:0 0 18px; color:rgba(255,255,255,.80); max-width: 880px}
.grid3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 940px){ .grid3{grid-template-columns:1fr} }
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card h3{margin:0 0 6px}
.card p{margin:0; color:rgba(255,255,255,.78)}
/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gItem{
  grid-column: span 6;
  border-radius: 20px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  min-height: 220px;
}
.gItem.small{grid-column: span 4; min-height: 180px}
@media (max-width: 900px){
  .gItem, .gItem.small{grid-column: span 12; min-height: 220px}
}
.gItem img{width:100%; height:100%; object-fit:cover; display:block; filter: saturate(1.05) contrast(1.05)}
.gItem::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.58));
  opacity:.85;
  transition: opacity .25s ease;
}
.gItem:hover::after{opacity:.65}
.gCap{
  position:absolute; left:14px; right:14px; bottom:14px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:12px;
  z-index:2;
}
.gCap strong{font-size:14px}
.gCap span{font-size:12px; color:rgba(255,255,255,.72)}
.tag{
  font-size:12px; font-weight:800; color:#111;
  background: rgba(244,180,0,1);
  padding:6px 10px; border-radius: 999px;
}
.lightbox{
  position:fixed; inset:0; z-index:200;
  display:none;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  align-items:center; justify-content:center;
  padding: 18px;
}
.lightbox.open{display:flex}
.lbWrap{
  width:min(1100px, 100%);
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(10,11,14,.9);
  box-shadow: var(--shadow);
}
.lbTop{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 12px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.lbTop strong{font-size:13px}
.lbClose{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
}
.lbImg{width:100%; height:auto; display:block; background:#000}
/* Social */
.socialGrid{display:grid; gap:14px; grid-template-columns: 1fr 1fr}
@media (max-width: 940px){ .socialGrid{grid-template-columns:1fr} }
.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.embedHeader{
  padding: 14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.embedHeader span{color:var(--muted); font-size:12px}
.embedBody{padding: 12px 16px}
.fallback{
  display:flex; gap:12px; align-items:center;
}
.fallback img{width:44px;height:44px;border-radius:16px;background:#fff;padding:10px}
.fallback a{font-weight:900; text-decoration:none}
.fallback p{margin:4px 0 0; color:rgba(255,255,255,.75); font-size:13px}
/* Video */
.videoWrap{
  position:relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.videoWrap iframe{position:absolute; inset:0; width:100%; height:100%}
/* Contact */
.contactGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 940px){ .contactGrid{grid-template-columns:1fr} }
label{display:block; font-size:12px; color:var(--muted); margin: 10px 0 6px}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
textarea{min-height: 120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(244,180,0,.55); box-shadow: 0 0 0 4px rgba(244,180,0,.10)}
.formActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  min-height: 420px;
}
.map iframe{width:100%; height:100%; border:0}
footer{
  border-top:1px solid var(--line);
  padding: 26px 0 40px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.footerGrid{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.small{font-size:12px; color:var(--muted)}
/* Floating WhatsApp */
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:120;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab a{
  display:flex; align-items:center; justify-content:center;
  width:54px; height:54px;
  border-radius: 18px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(14,16,22,.8);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.fab a:hover{transform: translateY(-1px)}
.fab a svg{width:24px;height:24px}
/* reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1; transform: translateY(0)}