:root{
  --brand-black:#000000;
  --brand-yellow:#ffd400;
  --bg:#ffffff;
  --muted:#666;
  --container-width:1100px;
  --radius:10px;
  --gap:18px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--brand-black);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}

.container{
  max-width:var(--container-width);
  margin:0 auto;
  padding:22px;
}

.site-header{
  border-bottom:4px solid var(--brand-yellow);
  background:linear-gradient(0deg,#fff 0%, #fff 60%);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{display:flex;align-items:center;gap:14px}
.logo{width:64px;height:64px;object-fit:contain}
.brand-text h1{margin:0;font-size:20px;letter-spacing:0.5px}
.tag{margin:0;color:var(--muted);font-size:13px}

.contact-nav a{margin-left:12px;color:var(--brand-black);text-decoration:none;font-weight:600}
.phone{background:var(--brand-yellow);padding:8px 10px;border-radius:8px;color:#000;}

.hero{display:grid;grid-template-columns:1fr 420px;align-items:center;gap:18px;padding:26px 0}
.hero-img{width:100%;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.08)}
.hero-copy h2{font-size:28px;margin:0 0 8px}
.hero-copy p{color:var(--muted);margin:0 0 12px}
.cta{display:inline-block;background:var(--brand-black);color:var(--brand-yellow);padding:10px 14px;border-radius:8px;text-decoration:none;font-weight:700}

.productos h3, .detalles h3, .video-section h3, .sucursales h3, .contacto h3 {margin-top:0;font-size:22px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin-top:14px}
.card{background:#fff;border:1px solid #efefef;border-radius:12px;padding:12px;box-shadow:0 6px 16px rgba(0,0,0,0.04)}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.card h4{margin:10px 0 6px;font-size:18px}
.card p{color:var(--muted);margin:0 0 8px}
.features{margin:0;padding-left:18px;color:var(--muted)}

.detalles .bullets p{margin:6px 0}
.long-descriptions p{margin:10px 0;color:var(--muted)}

/* Gallery and color accents */
.galeria h3{margin-bottom:6px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
  margin-top:12px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.06);
  background:linear-gradient(180deg, #fff, #fff);
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  transition:transform .22s ease, box-shadow .22s ease;
  cursor:zoom-in;
  display:flex;
  flex-direction:column;
  align-items:stretch;
}
.gallery-item.wide{grid-column:span 2}
.gallery-item img{width:100%;height:140px;object-fit:cover;display:block}
.gallery-item figcaption{
  padding:10px;
  font-weight:700;
  font-size:14px;
  color:var(--brand-black);
  background:linear-gradient(0deg, rgba(255,255,255,0.85), rgba(255,255,255,0.85));
}
.gallery-item:hover{transform:translateY(-6px);box-shadow:0 14px 32px rgba(0,0,0,0.12)}

/* Accent classes using brand colors to create variety */
.accent-yellow{outline:4px solid rgba(255,212,0,0.12)}
.accent-black{outline:4px solid rgba(0,0,0,0.06)}

/* Small gallery note styling */
.gallery-note{margin-top:10px;color:var(--muted);font-size:13px}

/* Add subtle colored badges for product cards */
.card .badge{
  display:inline-block;
  padding:6px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:8px;
}
.badge--new{background:var(--brand-yellow);color:#000}
.badge--top{background:var(--brand-black);color:var(--brand-yellow)}

/* Make hero copy pop with a subtle yellow highlight */
.hero-copy h2{position:relative;display:inline-block}
.hero-copy h2::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-6px;
  height:10px;
  background:linear-gradient(90deg, rgba(255,212,0,0.18), rgba(255,212,0,0.06));
  z-index:-1;
  border-radius:8px;
}


.video-section .promo-video{width:100%;max-height:420px;border-radius:10px;background:#000}
.note{color:var(--muted);font-size:13px}

.sucursales .sede-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:12px}
.sede{background:#fff;border-radius:10px;padding:12px;border:1px solid #efefef}
.mapa{width:100%;border-radius:10px;margin-top:14px}

.contacto .socials{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0}
.social{background:var(--brand-yellow);padding:8px 12px;border-radius:8px;color:#000;text-decoration:none;font-weight:700}
.contact-form{display:grid;gap:8px;max-width:520px}
.contact-form label{display:flex;flex-direction:column;font-size:14px;color:var(--muted)}
.contact-form input, .contact-form textarea{padding:10px;border-radius:8px;border:1px solid #ddd}
.btn-primary{background:var(--brand-black);color:var(--brand-yellow);padding:10px 14px;border-radius:8px;border:none;cursor:pointer;font-weight:700}
.form-status{color:var(--muted);font-size:14px;margin-top:8px}

.site-footer{border-top:1px solid #eee;margin-top:28px;padding:18px 0;background:#fafafa}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.swatch{display:inline-block;width:18px;height:18px;border-radius:4px;vertical-align:middle;margin:0 6px}
.swatch-black{background:var(--brand-black)}
.swatch-yellow{background:var(--brand-yellow)}
@media (max-width:900px){
  .hero{grid-template-columns:1fr; padding:16px 0}
  .header-inner{flex-direction:column;align-items:flex-start;gap:12px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}