:root{
  --bg:#070708;
  --bg2:#0b0b0d;
  --text:#fff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --line:rgba(255,255,255,.12);

  --brandGold:rgb(185,151,62);
  --accent:var(--brandGold);

  --radius:18px;
  --shadow:0 16px 60px rgba(0,0,0,.55);
  --max:1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(900px 500px at 30% -10%, rgba(185,151,62,.10), transparent 60%), var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

/* Botones */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  font-weight:700;
  letter-spacing:.4px;
}
.btn--ghost{ background:rgba(255,255,255,.03); }
.btn--accent{ background:var(--accent); border-color:transparent; color:#fff; }

/* Secciones */
.section{ padding:70px 0; }
.section__title{
  text-align:center;
  font-size:clamp(30px,3.2vw,58px);
  margin:0 0 28px;
  letter-spacing:-0.02em;
}
.sectionDivider{
  border:0;
  height:1px;
  background:var(--line);
  margin:46px 0;
}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.topbar__inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-start;
  padding:10px 0;
  color:var(--muted2);
  font-size:13px;
}
.topbar__item a{ color:var(--muted2); }
.topbar__item a:hover{ color:var(--text); }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background:#000;
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.6px;
}
.brand__logo{ height:54px; width:auto; display:block; }
.brand__name{
  font-size:22px;
  font-weight:900;
  letter-spacing:.6px;
  color:var(--brandGold);
}

.nav{ display:flex; gap:18px; }
.nav__link{ color:var(--muted2); font-weight:700; padding:10px 6px; }
.nav__link:hover{ color:var(--text); }
.nav__link.is-active{ color:var(--text); }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width:20px;
  background:rgba(255,255,255,.88);
  margin:5px auto;
  border-radius:2px;
}

.mobileNav{
  display:none;
  border-top:1px solid var(--line);
  padding:12px 20px 18px;
}
.mobileNav__link{
  display:block;
  padding:10px 6px;
  color:var(--muted2);
  font-weight:800;
}
.mobileNav__link.is-active{ color:var(--text); }
.mobileNav.is-open{ display:block; }

/* HERO */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  padding:80px 0 70px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:url("./assets/hero.jpg");
  background-size:cover;
  background-position:center;
  filter:brightness(1.18) saturate(.92) contrast(1.05);
}
.hero__overlay{
  z-index:2;
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 55%, rgba(0,0,0,.12), rgba(0,0,0,.68)),
    linear-gradient(to bottom, rgba(0,0,0,.38), rgba(0,0,0,.78));
}
.hero__inner{ position:relative; z-index:3; }

/* Cards servicios */
.cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.cardImg{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
  aspect-ratio:16/9;
}
.cardImg__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.80), rgba(0,0,0,.12));
}
.cardImg__content{
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
}
.cardImg__title{ margin:0; font-size:26px; letter-spacing:-0.02em; }
.cardImg--import{ background-position:20% 90%; }

/* CTA split */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.split__box{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:26px;
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  text-align:center;
}
.split__icon{
  width:56px; height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  background:rgba(255,255,255,.03);
}
.split__title{ margin:8px 0; font-size:28px; letter-spacing:-.02em; }
.split__text{ margin:0 0 16px; color:var(--muted); line-height:1.6; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:56px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}
.footer__title{
  margin:0 0 12px;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.footer__link{ display:block; padding:8px 0; color:var(--muted2); }
.footer__link:hover{ color:var(--text); }
.footer__text{ color:var(--muted2); padding:6px 0; }
.footer__bottom{
  margin-top:20px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:13px;
}

/* WhatsApp floating */
.waFloat{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#111;
  font-weight:800;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.waFloat__dot{
  width:10px; height:10px;
  border-radius:999px;
  background:#25D366;
  box-shadow:0 0 0 4px rgba(37,211,102,.18);
}

/* Sección sell2 */
.section--sell2{ padding:70px 0; }
.sell2{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  min-height:440px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background-image:url("./assets/sell-bg.jpg");
  background-size:cover;
  background-position:center;
}
.sell2__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,.15), rgba(0,0,0,.70));
}
.sell2__content{
  position:absolute;
  right:34px;
  bottom:30px;
  z-index:2;
  text-align:right;
  max-width:560px;
}
.sell2__title{
  margin:0 0 12px;
  font-size:clamp(28px,2.4vw,48px);
  line-height:1.02;
  letter-spacing:-0.03em;
  font-weight:900;
}
.sell2__text{ margin:0; color:var(--muted); font-size:16px; line-height:1.7; }

/* Beneficios */
.section--benefits{ padding:40px 0 70px; }
.benefits{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
  align-items:start;
}
.benefit{ text-align:center; }
.benefit__icon{
  width:150px; height:150px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
}
.benefit__icon img{
  width:150px; height:150px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}
.benefit__label{
  font-weight:800;
  letter-spacing:.08em;
  font-size:12px;
  color:var(--text);
  text-transform:uppercase;
}

/* Contacto */
.section--contact{ padding:70px 0; }
.contactGrid{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:22px;
  align-items:start;
}
.contactSide{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow);
  padding:26px;
}
.contactSide__lead{ margin:0 0 18px; color:var(--muted); line-height:1.6; }
.contactSide__logo{ display:flex; justify-content:center; padding:18px 0 22px; }
.contactSide__logo img{
  max-width:280px; width:100%; height:auto;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,.35));
}
.contactInfo{ display:grid; gap:14px; margin-top:10px; }
.contactInfo__row{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:14px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
}
.contactInfo__icon{
  width:44px; height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.contactInfo__title{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:900;
  color:var(--muted2);
}
.contactInfo__value{ margin-top:4px; font-weight:800; color:var(--text); }
a.contactInfo__value:hover{ color:var(--brandGold); }

.contactMain{ display:grid; gap:18px; }
.formPanel, .mapPanel{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.formPanel{ padding:22px; }
.formPanel__title{ margin:0 0 14px; font-size:30px; letter-spacing:-0.02em; }

.gformWrap{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
}
.gform{ width:100%; height:720px; border:0; }

.mapPanel__iframe{
  width:100%;
  height:320px;
  border:0;
  display:block;
  filter:grayscale(.25) contrast(1.05) brightness(.9);
}

/* Botón/link extra (msform) */
.msformWrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.msformWrap__text{ margin:0; }
.msformWrap__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 26px;
  border-radius:999px;
  background:var(--brandGold);
  color:#fff;
  border:0;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  transition:transform .15s ease, filter .15s ease;
}
.msformWrap__btn:hover{ transform:translateY(-1px); filter:brightness(1.05); }
.msformWrap__btn:active{ transform:translateY(0); filter:brightness(.98); }
.msformWrap__btn:focus-visible{
  outline:2px solid rgba(185,151,62,.55);
  outline-offset:3px;
}
.msformWrap__qr img{
  display:block;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
}

/* Importación - Timeline */
.timeline{ display:grid; gap:18px; margin-top:18px; }
.tstep{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
  align-items:start;
}
.tstep__rail{ display:flex; flex-direction:column; align-items:center; }
.tstep__icon{
  width:48px; height:48px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.95);
  color:#111;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  font-size:20px;
}
.tstep__line{ width:1px; flex:1; background:rgba(255,255,255,.18); margin-top:12px; }
.tstep__title{ font-weight:900; font-size:22px; letter-spacing:-.02em; margin:2px 0 8px; }
.tstep__text{ color:var(--muted); line-height:1.7; }

/* Importación: split con imagen grande */
.section--dark .split{
  grid-template-columns:1fr 1.35fr;
  align-items:center;
  gap:26px;
}
.section--dark .split__right{
  display:flex;
  align-items:center;
  justify-content:center;
}
.imagePanel{ width:100%; max-width:760px; }
.imagePanel img{ width:100%; height:auto; object-fit:contain; }

/* Stock catálogo */
.stockGrid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.stockCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  display:block;
}
.stockCard__img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}
.stockCard__body{ padding:14px; }
.stockCard__title{ margin:0 0 8px; font-weight:900; }
.stockCard__meta{ color:var(--muted); font-size:13px; line-height:1.45; }
.stockCard__price{ margin-top:10px; font-weight:900; color:var(--brandGold); }
.stockCard__warranty{ margin-top:6px; color:var(--muted2); font-size:12px; }

/* Responsive */
@media (min-width:981px){
  .brand__logo{ height:64px; }
  .brand__name{ font-size:26px; }
}

@media (max-width:1100px){
  .stockGrid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width:980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .split{ grid-template-columns:1fr; }
  .sell2{ min-height:360px; }
  .sell2__content{
    left:18px; right:18px; bottom:18px;
    text-align:left;
  }
  .benefits{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .benefit__icon, .benefit__icon img{ width:140px; height:140px; }
  .contactGrid{ grid-template-columns:1fr; }
  .gform{ height:780px; }
  .section--dark .split{ grid-template-columns:1fr; align-items:start; }
  .imagePanel{ max-width:100%; }
}

@media (max-width:820px){
  .stockGrid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:520px){
  .cards{ grid-template-columns:1fr; }
  .benefits{ grid-template-columns:1fr; }
  .benefit__icon, .benefit__icon img{ width:132px; height:132px; }
  .stockGrid{ grid-template-columns:1fr; }
}

.legal{
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}
.legal h2{
  color: var(--text);
  margin: 28px 0 10px;
  font-size: 20px;
}
.legal ul{
  margin: 10px 0 0 18px;
}
.legal li{ margin: 6px 0; }

/* FAQs */
.faq{
  max-width: 900px;
  margin: 0 auto;
}

.faq__item{
  border-bottom: 1px solid var(--line);
}

.faq__question{
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-weight: 800;
  font-size: 18px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.faq__answer{
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .3s ease;
}

.faq__item.is-open .faq__answer{
  max-height: 200px;
  padding-bottom: 18px;
}

.footerInstagram{
  margin-top:22px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footerInstagram svg{
  width:100%;
  height:100%;
  transition:transform .15s ease, opacity .15s ease;
}

.footerInstagram:hover svg{
  transform:scale(1.08);
  opacity:.8;
}

.topbarInstagram{
  display:inline-flex;
  width:18px;
  height:18px;
  color:var(--muted2);
}

.topbarInstagram:hover{
  color:var(--brandGold);
}

.topbarInstagram svg{
  width:100%;
  height:100%;
}

.carDetails{
  margin-top:42px;
  padding-top:34px;
  border-top:1px solid rgba(255,255,255,.12);
}

.carDetails h2{
  font-size:34px;
  margin:0 0 22px;
}

.carDetails__block{
  margin-bottom:24px;
  padding:22px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}

.carDetails__block h3{
  margin:0 0 12px;
  color:var(--brandGold);
}

.carDetails__block p,
.carDetails__block li{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.carDetails__block ul{
  margin:0;
  padding-left:20px;
}

.carStatus{
  display:inline-flex;
  padding:6px 12px;
  margin-bottom:10px;
  border-radius:999px;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}

.carStatus--vendido{
  background:#b00020;
}

.carStatus--reservado{
  background:#d98200;
}

.carStatus--detail{
  margin-bottom:18px;
  font-size:14px;
}

/* Últimas entregas */
.section--deliveries{
  padding-top:40px;
  padding-bottom:70px;
}

.deliveriesCarousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
}

.deliveriesCarousel__viewport{
  width:100%;
  overflow:hidden;
}

.deliveriesCarousel__track{
  display:flex;
  gap:18px;
  transition:transform .35s ease;
}

.deliveriesCarousel__item{
  flex:0 0 calc((100% - 36px) / 3);
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.deliveriesCarousel__item img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}

.deliveriesCarousel__arrow{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:38px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:2;
}

.deliveriesCarousel__arrow:hover{
  background:var(--brandGold);
  border-color:transparent;
}

@media (max-width:820px){
  .deliveriesCarousel__item{
    flex-basis:calc((100% - 18px) / 2);
  }
}

@media (max-width:520px){
  .deliveriesCarousel{
    gap:8px;
  }

  .deliveriesCarousel__item{
    flex-basis:100%;
  }

  .deliveriesCarousel__arrow{
    width:40px;
    height:40px;
    font-size:32px;
  }
}
.topbarTiktok{
  display:inline-flex;
  width:18px;
  height:18px;
  margin-left:10px;
  opacity:.75;
}

.topbarTiktok:hover{
  opacity:1;
}

.topbarTiktok img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footerTiktok img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:brightness(0) invert(1);
  transition:transform .15s ease, opacity .15s ease;
}

.footerTiktok:hover img{
  transform:scale(1.08);
  opacity:.8;
}
.footerInstagram,
.footerTiktok{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
  margin-top:22px;
  width:44px;
  height:44px;
}

.footerTiktok{
  margin-left:14px;
}

.footerTiktok img{
  width:34px;
  height:34px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  transition:transform .15s ease, opacity .15s ease;
}

.footerInstagram:hover svg,
.footerTiktok:hover img{
  transform:scale(1.08);
  opacity:.8;
}
/* Enlaces externos solo página Stock */
.stockExternalLinks{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  margin-bottom:24px;
}

.stockExternalLinks__item{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  transition:transform .15s ease, background .15s ease;
}

.stockExternalLinks__item:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
}

.stockExternalLinks__item img{
  width:34px;
  height:34px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}
.carStatus--disponible{
  background:#1f9d55;
}

.carStatus--próximamente{
  background:#ffeb3b;
  color:#111;
}