
:root{
  --red:#c61f1f;
  --black:#0d0d0d;
  --dark:#171717;
  --gray:#9a9a9a;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0d0d0d;
  color:white;
  font-family:'Barlow',sans-serif;
}

.topbar{
  display:flex;
  justify-content:space-between;
  padding:10px 40px;
  background:#111;
}

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  background:rgba(0,0,0,.92);
}

.logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:42px;
}

.logo span{
  color:var(--red);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
}

.btn-whatsapp{
  background:var(--red);
  color:white;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:0 80px;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.86)),
    url('../images/hero.jpg');
  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:720px;
}

.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  margin-bottom:24px;
}

.hero h1{
  font-family:'Bebas Neue',sans-serif;
  font-size:120px;
  line-height:.9;
  margin-bottom:20px;
}

.hero p{
  font-size:24px;
  color:#d5d5d5;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:16px;
}

.btn-primary,
.btn-secondary{
  padding:16px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

.btn-primary{
  background:var(--red);
  color:white;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.15);
  color:white;
}

.brands,
.products,
.map-section{
  padding:100px 40px;
}

.brands h2,
.section-title h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:58px;
  margin-bottom:40px;
}

.brands-grid,
.products-grid,
.footer-grid{
  display:grid;
  gap:24px;
}

.brands-grid{
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
}

.brand-card{
  background:#171717;
  padding:40px;
  border-radius:18px;
  text-align:center;
}

.products-grid{
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.product-card{
  background:#171717;
  border-radius:20px;
  overflow:hidden;
}

.product-image{
  height:220px;
  background-size:cover;
  background-position:center;
}

.chaperia{
  background-image:url('../images/chaperia.jpg');
}

.accesorios{
  background-image:url('../images/accesorios.jpg');
}

.motor{
  background-image:url('../images/motor.jpg');
}

.product-info{
  padding:24px;
}

.product-info p{
  color:#aaa;
  margin:12px 0 20px;
}

.product-info a{
  display:inline-block;
  background:var(--red);
  color:white;
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
}

.map-container {
    overflow: hidden;
    border-radius: 20px;
}

.map-container iframe{
  width:100%;
  height:420px;
  border:none;
}

footer {
    padding: 80px 40px;
    background: #090909;
}

.footer-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: left;
}

footer p{
  color:#aaa;
  margin-top:10px;
}
.footer-bottom {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer-bottom p {
        color: #777;
        font-size: 14px;
        margin: 0;
    }
