:root {
  --naranja: #FF7A1A;
  --naranja-oscuro: #D85D0A;
  --oscuro: #1a1410;
  --crema: #FFF3E0;
  --muted: #7d6a5c;
  --texto: #241a12;
  --sombra: 0 20px 50px rgba(26, 20, 16, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--texto);
  background: var(--crema);
}
img { max-width: 100%; display: block; }

.draft-banner {
  background: var(--oscuro);
  color: #FFE8C2;
  text-align: center;
  font-size: .82rem;
  padding: .55rem 1rem;
}
.draft-banner strong { color: var(--naranja); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6vw;
  background: rgba(255,243,224,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,20,16,.08);
}
.brand {
  text-decoration: none;
  color: var(--oscuro);
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand strong { color: var(--naranja-oscuro); }
.brand-logo { width: 40px; height: 40px; flex: none; }
.nav-links { display: flex; gap: 1.2rem; align-items: center; }
.nav-links a { color: var(--texto); text-decoration: none; font-weight: 650; font-size: .94rem; }
.btn-small {
  color: white !important;
  background: var(--naranja);
  padding: .7rem 1.1rem;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 6vw;
  background: linear-gradient(135deg, #fff8ee, var(--crema));
}
.hero-copy { max-width: 560px; }
.hero-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26,20,16,.08);
}
.hero-card img { width: 100%; display: block; }

.hero-carousel {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26,20,16,.08);
  background: var(--oscuro);
}
.hero-slide { position: absolute; inset: 0; display: none; }
.hero-slide.is-active { display: block; }
.hero-slide img, .hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--oscuro);
}
.hero-slide .media-tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 2;
  background: rgba(26,20,16,.75);
  color: white;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
}
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--texto);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel-arrow:hover { background: white; }
.hero-carousel-arrow.prev { left: .7rem; }
.hero-carousel-arrow.next { right: .7rem; }
.hero-carousel-dots {
  position: absolute;
  bottom: .9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.hero-carousel-dots span.is-active { background: var(--naranja); width: 22px; border-radius: 999px; }
.eyebrow {
  color: var(--naranja-oscuro);
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1; margin: .5rem 0 1.2rem; letter-spacing: -0.03em; color: var(--texto); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.02em; }
h3 { margin: 0 0 .6rem; }
p { color: var(--muted); line-height: 1.7; }
.hero p.lead { font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-primary, .btn-secondary {
  text-decoration: none;
  font-weight: 800;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  display: inline-block;
}
.btn-primary { background: var(--naranja); color: white; box-shadow: var(--sombra); }
.btn-secondary { background: white; color: var(--texto); border: 1px solid rgba(26,20,16,.15); }

.ad-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.ad-badges li {
  font-size: .78rem;
  font-weight: 700;
  color: var(--naranja-oscuro);
  background: rgba(216,93,10,.1);
  border: 1px solid rgba(216,93,10,.25);
  padding: .35rem .8rem;
  border-radius: 999px;
}

.section { padding: 6vw; }
.section.alt { background: #FDE8D0; }
.section-header { max-width: 780px; margin-bottom: 2.5rem; }
.tag-ejemplo {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(216,93,10,.12);
  color: var(--naranja-oscuro);
  padding: .25rem .6rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: .5rem;
}
.grid-3, .grid-4 { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(26,20,16,.08);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(26,20,16,.06);
}
.icon { font-size: 2rem; margin-bottom: 1rem; }
.moto-card { text-align: center; }
.moto-thumb { font-size: 2.6rem; margin-bottom: .6rem; }
.moto-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
}
.moto-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .3s ease;
}
.moto-photo:hover img { transform: scale(1.04); }
.moto-price { color: var(--texto); font-weight: 700; margin: 0 0 .2rem; }
.moto-specs { font-size: .85rem; margin: 0 0 .9rem; }
.moto-cta {
  display: inline-block;
  color: var(--naranja-oscuro);
  font-weight: 800;
  text-decoration: none;
  font-size: .92rem;
}
.moto-cta:hover { text-decoration: underline; }

.about-banner { margin: 0 0 1.8rem; }
.about-banner img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26,20,16,.08);
}

.founder-quote {
  margin: 0 0 2.2rem;
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--naranja);
  background: rgba(255,255,255,.6);
  border-radius: 0 18px 18px 0;
}
.founder-quote p {
  color: var(--texto);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 .6rem;
}
.founder-quote cite {
  font-style: normal;
  font-weight: 800;
  color: var(--naranja-oscuro);
  font-size: .88rem;
}

.values-grid .card { padding: 1.3rem 1.4rem; }
.values-grid h3 { font-size: 1.05rem; }
.values-grid p { font-size: .92rem; }

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin: 1.2rem 0;
  font-weight: 700;
  color: var(--texto);
  font-size: .92rem;
}
.contact-bar a { color: var(--naranja-oscuro); text-decoration: none; }
.contact-bar a:hover { text-decoration: underline; }

.footer-back { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer-social { margin: 0; font-size: .78rem; color: #d8c3ac; opacity: .8; }
.footer-social a { color: #d8c3ac; }

.visual-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.highlight-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.highlight-card h3 { font-size: 3rem; color: var(--naranja-oscuro); margin: .3rem 0; }
.highlight-card.dark { background: var(--oscuro); color: #FFE8C2; }
.highlight-card.dark p, .highlight-card.dark .eyebrow { color: #d8c3ac; }
.highlight-card.dark h3 { color: var(--naranja); }

.checklist { padding: 0; list-style: none; }
.checklist li { margin: .8rem 0; padding-left: 1.8rem; position: relative; }
.checklist li::before {
  content: "✓";
  color: var(--naranja-oscuro);
  position: absolute; left: 0; font-weight: 900;
}

.quote-card p { font-style: italic; color: var(--texto); }
.quote-card strong { display: block; margin-top: .8rem; color: var(--muted); font-size: .85rem; font-weight: 700; }

.cta {
  margin: 6vw;
  padding: 4.5rem 2rem;
  text-align: center;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, var(--naranja-oscuro), var(--oscuro));
}
.cta h2, .cta p { color: white; }
.cta .eyebrow { color: #FFD9A6; }
.cta .btn-primary { background: white; color: var(--naranja-oscuro); }

.map-placeholder {
  margin-top: 1rem;
  height: 220px;
  border-radius: 20px;
  background: repeating-linear-gradient(45deg, #f0d9bd, #f0d9bd 12px, #e8cca8 12px, #e8cca8 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid rgba(26,20,16,.1);
}

.site-footer {
  padding: 2rem 6vw;
  background: var(--oscuro);
  color: #d8c3ac;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.back-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #FFE8C2;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}
.back-link img { width: 22px; height: 22px; }
.back-link:hover { background: rgba(255,255,255,.12); }
.footer-legal { text-align: right; font-size: .82rem; }
.footer-legal p { margin: .2rem 0; color: #d8c3ac; }
.footer-note { opacity: .7; max-width: 380px; }

.gallery-header { margin: 2.6rem 0 1.2rem; }
.gallery-header h3 { font-size: 1.4rem; margin: .2rem 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.gallery-thumb {
  padding: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: none;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-thumb:hover img { transform: scale(1.06); }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,7,5,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 5vw;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.tienda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.4rem 0;
}
.tienda-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(26,20,16,.08);
}
.tienda-map-btn { margin-top: .6rem; }

@media (max-width: 900px) {
  .nav { height: auto; padding: 1rem 5vw; }
  .nav-links { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .visual-split, .hero { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .tienda-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section, .hero { padding: 4rem 1.2rem; }
  .cta { margin: 1.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
}
