:root{
  --accent:#ff7a00;
  --accent2:#436771;
  --bg:#0b0a0d;
  --bg2:#111119;
  --paper:#f6f1ea;
  --text:#101118;
  --muted:#61646f;
  --card:#ffffff;
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --radius: 22px;
  --radius2: 16px;
  --max: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, #0b0a0d 0%, #111119 30%, #0b0a0d 100%);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,14,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand__logo{
  width:42px; height:42px;
  border-radius:14px;
  object-fit:cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{
  color:#fff; font-weight:900;
  letter-spacing:.3px;
}
.brand__sub{ color:rgba(255,255,255,.7); font-size:12px; margin-top:2px; }

.nav{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
}
.nav a{
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:999px;
  transition: all .2s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.08);
  text-decoration:none;
}
.nav .pill{
  border:1px solid rgba(255,255,255,.18);
}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.navbtn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.navbtn span{
  display:block;
  width:18px; height:2px;
  background:#fff;
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color:#101118;
  font-weight:900;
  border:0;
  box-shadow: 0 14px 38px rgba(255,122,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); filter:saturate(1.05); text-decoration:none; }
.btn:active{ transform: translateY(0px); }
.btn--ghost{
  background: rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--block{ width:100%; }

.hero{
  position:relative;
  padding: 42px 0 28px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 15% 5%, rgba(255,122,0,.30), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(67,103,113,.35), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.62)),
    url("../assets/images/portada.jpg") center/cover no-repeat;
  filter: contrast(1.05) saturate(1.05);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.hero__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,122,0,.12);
  color:#7a2f00;
  font-weight:900;
  font-size:12px;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.06;
}
.lead{
  margin:0 0 14px;
  color:#2a2c33;
  font-size: 16px;
  line-height:1.6;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 14px;
}
.hero__quick{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.quick{
  background: rgba(16,17,24,.05);
  border: 1px solid rgba(16,17,24,.08);
  border-radius: 16px;
  padding: 10px 12px;
  min-height:66px;
}
.quick__k{
  display:block;
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}
.quick__v{
  display:block;
  margin-top:4px;
  font-weight:900;
  color:#101118;
  font-size:13px;
  line-height:1.3;
}
.quick__v a{ text-decoration:underline; text-decoration-color: rgba(255,122,0,.45); }
.quick__v a:hover{ text-decoration-color: rgba(255,122,0,.85); }

.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.mediaGrid{
  height:100%;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap:8px;
  padding:10px;
}
.mediaGrid img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}

.section{
  padding: 58px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  color:#fff;
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
}
.section__head p{
  margin:0;
  color: rgba(255,255,255,.70);
  line-height:1.6;
  max-width: 70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.card img{
  width:100%;
  aspect-ratio: 16/10;
  object-fit:cover;
}
.card__body{
  padding: 16px 16px 18px;
}
.card__body h3{
  margin:0 0 6px;
  font-size:18px;
}
.card__body p{
  margin:0 0 10px;
  color:#2d3038;
  line-height:1.55;
}
.link{
  font-weight:900;
  color:#5a2a00;
  text-decoration:underline;
  text-decoration-color: rgba(255,122,0,.55);
}
.link:hover{ text-decoration-color: rgba(255,122,0,.9); }

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.split h2{ color:#fff; margin:0 0 8px; }
.split p{ color: rgba(255,255,255,.70); line-height:1.6; }

.bullets{
  margin-top: 14px;
  display:grid;
  gap:10px;
}
.bullet{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.bullet__icon{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,122,0,.16);
  border: 1px solid rgba(255,122,0,.18);
}
.bullet h3{
  margin:0 0 2px;
  color:#fff;
  font-size:16px;
}
.bullet p{
  margin:0;
  color: rgba(255,255,255,.70);
  font-size:14px;
}

.ctaRow{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.aside{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.aside__top{
  padding: 18px;
}
.aside__top h3{
  color:#fff;
  margin:8px 0 6px;
}
.muted{ color: rgba(255,255,255,.70); }
.aside__imgwrap img{ width:100%; display:block; object-fit:cover; aspect-ratio: 16/10; }
.aside__bottom{ padding: 14px 18px 18px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
}
.gitem{
  padding:0;
  border:0;
  background: transparent;
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  outline: 1px solid rgba(255,255,255,.14);
}
.gitem img{
  width:100%;
  height:100%;
  aspect-ratio: 1/1;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .2s ease;
}
.gitem:hover img{ transform: scale(1.06); }

.video{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.video iframe{
  width:100%;
  height: min(70vh, 560px);
  display:block;
}

.socialGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.socialCard{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 16px;
}
.socialCard h3{ color:#fff; margin:0 0 10px; }
.embedWrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  min-height: 420px;
}
.embedWrap iframe{ width:100%; height: 560px; display:block; }
.igMini{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:8px;
  margin: 12px 0 14px;
}
.igMini img{
  width:100%;
  height:100%;
  aspect-ratio: 1/1;
  object-fit:cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
}
.divider{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 14px 0;
}
.stack{ display:grid; gap:10px; }

.mapGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.mapCard, .infoCard{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mapWrap iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}
.mapActions{
  display:flex;
  gap:10px;
  padding: 14px;
  flex-wrap:wrap;
}
.infoCard{
  padding: 18px;
}
.infoCard h3{
  color:#fff;
  margin:0 0 12px;
}
.infoList{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap:10px;
}
.infoList li{
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(255,255,255,.78);
}
.infoList a{ color:#fff; text-decoration:underline; text-decoration-color: rgba(255,255,255,.25); }
.infoList a:hover{ text-decoration-color: rgba(255,122,0,.75); }

.contactGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
}
.form{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 18px;
}
.field{ display:grid; gap:8px; margin-bottom:12px; }
label{ color:rgba(255,255,255,.85); font-weight:800; font-size:13px; }
input, textarea{
  width:100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:#fff;
  padding: 12px 12px;
  outline: none;
  transition: border-color .15s ease, transform .15s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.55); }
input:focus, textarea:focus{ border-color: rgba(255,122,0,.55); }
.hint{ margin: 10px 0 0; color: rgba(255,255,255,.70); line-height:1.5; }
.hint a{ text-decoration:underline; }

.contactCard{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 18px;
}
.contactCard h3{ margin:0 0 12px; color:#fff; }

.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.38);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer__left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__logo{
  width:42px; height:42px;
  border-radius:14px;
  object-fit:cover;
}
.footer strong{ color:#fff; }
.footer .muted{ color: rgba(255,255,255,.65); }
.footer__links{ margin:0; color: rgba(255,255,255,.72); }
.footer__links a{ color:#fff; text-decoration:underline; text-decoration-color: rgba(255,255,255,.25); }
.footer__links a:hover{ text-decoration-color: rgba(255,122,0,.75); }

.wafloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 46px rgba(0,0,0,.32);
  color:#fff;
  z-index: 60;
}
.waicon{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,122,0,.18);
  border: 1px solid rgba(255,122,0,.25);
}
.walabel{ font-weight:900; }
.wafloat:hover{ text-decoration:none; transform: translateY(-1px); }

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 80;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 22px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  background:#000;
}
.lightbox__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform: translateY(10px);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .socialGrid{ grid-template-columns: 1fr; }
  .mapGrid{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__quick{ grid-template-columns: 1fr; }
  .brand{ min-width:unset; }
}

@media (max-width: 860px){
  .header__cta{ display:none; }
  .navbtn{ display:inline-flex; }
  .nav{
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: rgba(10,10,14,.92);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; text-align:left; }
}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-visible{ transition:none !important; transform:none !important; opacity:1 !important; }
  .btn, .gitem img{ transition:none !important; }
}
