/* IL Garage - Secuencia Gráfica (LookMyWeb) */
:root{
  --bg:#070b13;
  --bg2:#0a1324;
  --card:#0e1f3b;
  --soft:#0c162b;
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.72);
  --line:rgba(255,255,255,.12);
  --accent:#ff3b30;       /* rojo */
  --gold:#f6c857;         /* dorado */
  --blue:#0b2a55;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 550px at 15% 0%, rgba(246,200,87,.18), transparent 55%),
    radial-gradient(900px 650px at 90% 10%, rgba(255,59,48,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
button{font:inherit}

.container{width:min(var(--max), 92vw); margin-inline:auto}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid var(--line); border-radius:12px; z-index:999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background: linear-gradient(180deg, rgba(7,11,19,.92), rgba(7,11,19,.62));
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:10px; min-width:240px}
.brand__logo{
  width:52px; height:52px; object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(246,200,87,.25);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.brand__text strong{display:block; letter-spacing:.2px}
.brand__text span{display:block; font-size:.86rem; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:rgba(234,241,255,.86); font-weight:600; font-size:.95rem}
.nav a:hover{color:#fff}

.menuBtn{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  align-items:center; justify-content:center;
  gap:5px;
}
.menuBtn span{display:block; width:18px; height:2px; background:rgba(255,255,255,.8); border-radius:2px}

.mobileNav{
  border-top:1px solid var(--line);
  background: rgba(7,11,19,.92);
}
.mobileNav a{
  display:block;
  padding:14px 4vw;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(234,241,255,.9);
  font-weight:700;
}
.mobileNav a:hover{background:rgba(255,255,255,.04)}

.hero{
  position:relative;
  padding:54px 0 34px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-1px;
  background:
    radial-gradient(1100px 620px at 80% 20%, rgba(11,42,85,.62), transparent 60%),
    radial-gradient(700px 500px at 15% 40%, rgba(255,59,48,.14), transparent 55%),
    radial-gradient(900px 520px at 50% 100%, rgba(246,200,87,.10), transparent 60%);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:34px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(246,200,87,.28);
  border-radius:999px;
  background: rgba(0,0,0,.2);
  color:rgba(246,200,87,.92);
  font-weight:700;
  letter-spacing:.2px;
  font-size:.86rem;
}
h1{
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height:1.03;
  margin:14px 0 12px;
}
.accent{color:var(--gold)}
.lead{
  color:rgba(234,241,255,.82);
  font-size:1.05rem;
  line-height:1.55;
  max-width: 52ch;
  margin:0 0 18px;
}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 18px}
.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(246,200,87,.25);
  background: linear-gradient(180deg, rgba(255,59,48,.95), rgba(255,59,48,.78));
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 14px 38px rgba(255,59,48,.18);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(110%)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  box-shadow: none;
  border-color: rgba(255,255,255,.16);
  color: rgba(234,241,255,.95);
}
.btn--ghost:hover{background: rgba(255,255,255,.09)}
.btn--sm{padding:10px 12px; border-radius:12px; font-weight:800}
.btn--full{margin:14px 4vw}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.badge{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:12px 12px 10px;
}
.badge__t{display:block; font-weight:900; color:#fff}
.badge__d{display:block; margin-top:3px; color:var(--muted); font-size:.9rem}

.hero__media{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.stack{position:relative; min-height: 310px}
.stack__card{
  position:absolute;
  width:min(320px, 70%);
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  transform: rotate(-2deg);
  cursor:pointer;
  padding:0;
}
.stack__card img{width:100%; height:100%; object-fit:cover}
.stack__card--right{right:0; top:34px; transform: rotate(2.5deg)}
.stack__card--bottom{left:22px; bottom:0; transform: rotate(-1deg)}
.stack__card:focus-visible{outline:3px solid rgba(246,200,87,.75); outline-offset:3px}

.quick{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,19,.35);
  padding:12px;
}
.quick__item{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:8px 2px}
.quick__k{color:var(--muted); font-weight:700}
.quick__v{color:#fff; font-weight:900}
.quick__v:hover{color:var(--gold)}

.section{padding:56px 0}
.section--dark{
  background: radial-gradient(900px 500px at 20% 0%, rgba(246,200,87,.12), transparent 55%),
              linear-gradient(180deg, rgba(7,11,19,.25), rgba(7,11,19,.85));
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.section--soft{
  background: radial-gradient(900px 520px at 80% 10%, rgba(11,42,85,.55), transparent 55%),
              linear-gradient(180deg, rgba(12,22,43,.45), rgba(12,22,43,.20));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.section__head{margin-bottom:18px}
.section__head h2{
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  margin:0 0 6px;
}
.section__head p{margin:0; color:var(--muted); max-width:70ch; line-height:1.6}

.grid{display:grid; gap:14px}
.cards{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px; font-size:1.08rem}
.card p{margin:0; color:var(--muted); line-height:1.55}

.promos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.promo{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  padding:0;
  overflow:hidden;
  cursor:pointer;
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
  transition: transform .14s ease, border-color .14s ease;
  text-align:left;
}
.promo:hover{transform: translateY(-2px); border-color: rgba(246,200,87,.35)}
.promo img{width:100%; aspect-ratio: 1/1; object-fit:cover}
.promo span{display:block; padding:10px 12px; font-weight:900}

.gallery{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery__item{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:0;
  overflow:hidden;
  cursor:pointer;
}
.gallery__item img{width:100%; aspect-ratio: 1/1; object-fit:cover; transform: scale(1.01); transition: transform .18s ease}
.gallery__item:hover img{transform: scale(1.06)}
.gallery__item:focus-visible{outline:3px solid rgba(246,200,87,.75); outline-offset:3px}

.video{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#000;
  box-shadow: var(--shadow);
}
.video iframe{width:100%; aspect-ratio: 16/9; border:0; display:block}

.location{grid-template-columns: 1.1fr .9fr; align-items:start}
.location__map iframe{
  width:100%;
  min-height: 420px;
  border:0;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 12px 36px rgba(0,0,0,.20);
}
.panel--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.panel h3{margin:0 0 8px}
.muted{color:var(--muted)}
hr{border:0; border-top:1px solid rgba(255,255,255,.12); margin:14px 0}

.contactGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:12px;
}
.tile{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,19,.35);
  padding:12px;
}
.tile__k{display:block; color:var(--muted); font-weight:700; font-size:.9rem}
.tile__v{display:block; margin-top:2px; font-weight:950}
.tile:hover{border-color: rgba(246,200,87,.35)}

.social{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(246,200,87,.25);
  background: rgba(246,200,87,.08);
  color: rgba(246,200,87,.98);
  font-weight:900;
}
.chip:hover{background: rgba(246,200,87,.12)}

.embeds{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.embedCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.embedCard h3{margin:0 0 10px}
.igPreview{
  margin-top:12px;
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background: rgba(0,0,0,.22);
}
.igPreview img{width:64px; height:64px; border-radius:16px; object-fit:cover; border:1px solid rgba(255,255,255,.12)}

.contact{grid-template-columns: 1.1fr .9fr; align-items:start}
.form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  padding:18px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.form label{display:flex; flex-direction:column; gap:6px; font-weight:900}
.form span{font-size:.92rem; color: rgba(234,241,255,.85)}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
textarea{resize:vertical; min-height:120px}
input:focus, select:focus, textarea:focus{border-color: rgba(246,200,87,.55); box-shadow: 0 0 0 4px rgba(246,200,87,.12)}
.full{grid-column: 1 / -1}
.form__actions{display:flex; gap:10px; flex-wrap:wrap}

.aside .panel{position:sticky; top:88px}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(7,11,19,.92);
  padding:22px 0;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__left{display:flex; gap:10px; align-items:center}
.footer__left img{border-radius:14px; border:1px solid rgba(255,255,255,.12); object-fit:cover}
.footer__right{display:flex; flex-direction:column; gap:6px}
.footer a{color: rgba(246,200,87,.96); font-weight:900}
.footer a:hover{text-decoration:underline}

.waFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  border:1px solid rgba(246,200,87,.22);
  background: rgba(0,0,0,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.waFloat svg{width:22px; height:22px; fill: var(--gold)}
.waFloat span{font-weight:950}

.lightbox{
  border:0;
  padding:0;
  background: rgba(0,0,0,.0);
}
.lightbox::backdrop{background: rgba(0,0,0,.72)}
.lightbox img{
  max-width: min(92vw, 980px);
  max-height: 82vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  background:#000;
}
.lightbox__close{
  position:fixed;
  top:18px;
  right:18px;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight:950;
  cursor:pointer;
}
.lightbox__close:hover{background: rgba(0,0,0,.7)}

@media (max-width: 980px){
  .nav{display:none}
  .menuBtn{display:flex}
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .hero__badges{grid-template-columns: 1fr; }
  .stack{min-height: 280px}
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .promos{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .location{grid-template-columns: 1fr}
  .location__map iframe{min-height: 340px}
  .contact{grid-template-columns: 1fr}
  .aside .panel{position:static}
  .embeds{grid-template-columns: 1fr}
}
