@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;600;700;800;900&display=swap');

:root{
  --accent:#f97316;
  --accentBorder:#e35b0a;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e6e6e6;
  --bg:#ffffff;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
  font-family:"Overpass", sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

/* =========================
   HERO / SLIDER FIJO DETRAS
========================= */

.home-hero{
  position:relative;
  min-height:1100px;
  overflow:visible;
}

.home-hero-bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:720px;
  z-index:0;
}

.home-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.03) 0%,
    rgba(0,0,0,.02) 30%,
    rgba(0,0,0,.10) 100%
  );
  z-index:2;
  pointer-events:none;
}

.home-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:none;
  z-index:1;
}

.home-slider::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:90px;
  pointer-events:none;
  z-index:4;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.12) 0%,
    rgba(0,0,0,.04) 45%,
    rgba(0,0,0,0) 100%
  );
}

.home-slider::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:90px;
  height:100%;
  pointer-events:none;
  z-index:3;
  background:linear-gradient(
    to left,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.03) 35%,
    rgba(0,0,0,0) 100%
  );
}

.home-slider-inner{
  position:relative;
  width:100%;
  height:720px;
  min-height:720px;
  overflow:hidden;
}

.home-slides{
  position:absolute;
  inset:0;
  height:100%;
}

.home-slide{
  display:none;
  position:absolute;
  inset:0;
  height:100%;
}

.home-slide.active{
  display:block;
}

.home-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  filter:brightness(1.14) contrast(1.03) saturate(1.05);
}

.home-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:36px;
  border-radius:8px;
  cursor:pointer;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home-arrow.prev{
  left:12px;
}

.home-arrow.next{
  right:12px;
}

/* =========================
   LOGOS SOBRE SLIDER
========================= */

.hero-brand-stack{
  position:fixed;
  top:188px;
  right:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:40;
}

.hero-brand-title{
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  text-shadow:0 4px 12px rgba(0,0,0,.45);
  margin-bottom:2px;
}

.hero-brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.hero-brand-logo img{
  max-width:130px;
  max-height:105px;
  object-fit:contain;
  display:block;
  transition:transform .18s ease, filter .18s ease;
  filter:
    drop-shadow(0 0 5px rgba(255,255,255,.95))
    drop-shadow(0 0 10px rgba(255,255,255,.75))
    drop-shadow(0 8px 16px rgba(0,0,0,.22));
}

.hero-brand-logo:hover img{
  transform:translateY(-1px) scale(1.02);
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.35));
}

.hero-brand-card{
  padding:12px 16px;
  border-radius:12px;
  display:grid;
  place-items:center;
  min-width:150px;
  min-height:56px;
  background:rgba(10,10,10,.12);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}

.hero-brand-card img{
  max-width:125px;
  max-height:42px;
  object-fit:contain;
  margin:auto;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,.95))
    drop-shadow(0 0 8px rgba(255,255,255,.75))
    drop-shadow(0 8px 16px rgba(0,0,0,.22));
}

.hero-brand-card:hover img{
  transform:translateY(-1px) scale(1.02);
}

.pulse-logo img{
  animation:logoPulse 2.8s ease-in-out infinite;
}

.pulse-logo:nth-child(2) img{
  animation-delay:.2s;
}

.pulse-logo:nth-child(3) img{
  animation-delay:.4s;
}

@keyframes logoPulse{
  0%{
    transform:scale(1);
    opacity:.96;
  }
  50%{
    transform:scale(1.045);
    opacity:1;
  }
  100%{
    transform:scale(1);
    opacity:.96;
  }
}

/* =========================
   STOCK MONTADO SOBRE EL HERO
========================= */

.home-stock{
  width:min(1250px, 92%);
  margin:22px auto 60px;
}

.home-stock-overlay{
  position:relative;
  z-index:60;
  width:min(1240px, 92%);
  margin:200px 0 30px 32px;
  padding:22px 22px 36px;
  border-radius:18px;
  background:rgba(8, 12, 18, .42);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.tabs-head{
  display:flex;
  gap:30px;
  align-items:center;
  margin-bottom:0;
}

.tabbtn{
  background:none;
  border:0;
  padding:12px 0;
  font-weight:900;
  letter-spacing:1px;
  cursor:pointer;
  color:#fff;
  border-bottom:3px solid transparent;
}

.tabbtn.active{
  color:#f58220;
  border-bottom-color:#f58220;
}

.tabs-line{
  height:1px;
  background:rgba(255,255,255,.12);
  margin-top:-1px;
}

.tabcontent{
  display:none;
  padding-top:20px;
}

.tabcontent.active{
  display:block;
}

/* =========================
   CARDS MOTOS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.card{
  display:flex;
  flex-direction:column;
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  transition:transform .15s ease, box-shadow .15s ease;
  overflow:hidden;
  height:100%;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}

.card-link-img,
.card-link-title{
  text-decoration:none;
  color:inherit;
  display:block;
}

.card-img{
  position:relative;
  width:100%;
  background:#f3f3f3;
  aspect-ratio:16 / 10;
  overflow:hidden;
  flex-shrink:0;
}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.badge-offer{
  position:absolute;
  left:12px;
  top:12px;
  background:#f97316;
  color:#fff;
  font-weight:900;
  padding:8px 10px;
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:6px;
  z-index:2;
}

.badge-offer .tag{
  background:#111;
  color:#fff;
  font-weight:900;
  padding:2px 6px;
  border-radius:4px;
  font-size:12px;
}
.badge-sold{
  background:linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color:#fff;
  box-shadow:0 10px 22px rgba(34,197,94,.28);
}

.badge-sold .tag{
  background:#0f172a;
  color:#fff;
}

.badge-reserved{
  background:linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
  color:#fff;
  box-shadow:0 10px 22px rgba(245,158,11,.28);
}

.badge-reserved .tag{
  background:#111;
  color:#fff;
}
.card-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  width:100%;
  flex:1;
}

.card-body .brand{
  color:var(--accent);
  font-weight:900;
  margin-bottom:6px;
}

.card-link-title .title,
.card-body .title{
  font-weight:900;
  font-size:18px;
  line-height:1.2;
  margin-bottom:10px;
  color:#000;
  min-height:52px;
}

.card-link-title:hover .title{
  color:var(--accent);
}

.price-row{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin-bottom:12px;
  flex-wrap:wrap;
}

.price-row .old{
  color:red;
  text-decoration:line-through;
  font-weight:700;
}

.price-row .new{
  font-size:22px;
  font-weight:900;
  color:#f97316;
}

.meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  color:#333;
  font-weight:700;
}

.meta span{
  color:#777;
  font-weight:800;
  font-size:12px;
  letter-spacing:.6px;
  display:block;
  margin-bottom:2px;
  text-transform:uppercase;
}

.card-whatsapp{
  margin-top:14px;
  width:100%;
}

.btn-wsp{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  text-align:center;
  background:#25D366;
  color:#fff;
  font-weight:800;
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
  font-size:15px;
  line-height:1.2;
  transition:all .15s ease;
}

.btn-wsp:hover{
  background:#1ebe5b;
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}

.home-stock-overlay .card{
  background:#f7f7f7;
  border:1px solid rgba(255,255,255,.08);
}

.home-stock-overlay .card-body .title{
  color:#000;
}

.home-stock-overlay .meta{
  color:#333;
}

.home-stock-overlay .meta span{
  color:#777;
}

.muted{
  color:var(--muted);
}

/* =========================
   BRAND SLIDER
========================= */

.brand-slider{
  position:relative;
  width:100%;
  padding:24px 0 10px;
  overflow:hidden;
  font-family:Overpass, sans-serif;
}

.brand-track{
  display:flex;
  gap:18px;
  padding:0 18px 10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}

.brand-track::-webkit-scrollbar{
  height:8px;
}

.brand-track::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.15);
  border-radius:999px;
}

.brand-track::-webkit-scrollbar-track{
  background:transparent;
}

.brand-card{
  position:relative;
  flex:0 0 calc((100% - 18px) / 2);
  height:250px;
  border-radius:12px;
  overflow:hidden;
  scroll-snap-align:start;
  background:#111;
  box-shadow:0 14px 40px rgba(0,0,0,.14);
}

.brand-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  filter:contrast(1.02) saturate(1.03);
}

.brand-frame{
  position:absolute;
  inset:16px;
  border-radius:10px;
  border:2px solid rgba(255,255,255,.85);
  box-shadow:
    0 10px 30px rgba(0,0,0,.20),
    inset 0 0 0 1px rgba(0,0,0,.08);
  pointer-events:none;
}

.brand-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.12) 100%),
    radial-gradient(800px 280px at 20% 30%, rgba(255,255,255,.06), rgba(255,255,255,0));
  pointer-events:none;
}

.brand-content{
  position:absolute;
  left:34px;
  top:34px;
  right:170px;
  color:#fff;
  z-index:2;
}

.brand-content h3{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:.6px;
  font-weight:900;
  text-transform:uppercase;
}

.brand-content p{
  margin:0 0 14px;
  font-size:14.5px;
  line-height:1.45;
  opacity:.92;
  max-width:460px;
}

.brand-btn{
  display:inline-block;
  background:#ff7a18;
  color:#fff;
  text-decoration:none;
  padding:10px 16px;
  border-radius:8px;
  font-weight:900;
  font-size:14px;
  box-shadow:0 10px 22px rgba(255,122,24,.28);
  transition:transform .12s ease, filter .12s ease;
}

.brand-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
}

.brand-logo{
  position:absolute;
  right:28px;
  bottom:22px;
  width:120px;
  height:auto;
  opacity:.97;
  z-index:2;
  filter:drop-shadow(0 14px 22px rgba(0,0,0,.35));
}

.brand-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:5;
  transition:background .12s ease, transform .12s ease;
}

.brand-nav:hover{
  background:rgba(0,0,0,.72);
  transform:translateY(-50%) scale(1.03);
}

.brand-nav.prev{
  left:10px;
}

.brand-nav.next{
  right:10px;
}

.brand-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px 0 0;
}

.brand-dots button{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.20);
  cursor:pointer;
}

.brand-dots button.active{
  background:#ff7a18;
}

/* =========================
   SECCIONES QUE TAPAN EL HERO
========================= */

.consigna-section,
.envios-section,
.testimonios-section,
.ubicacion-section,
.footer{
  position:relative;
  z-index:150;
}

.consigna-section{
  background:#0b0f14;
  color:#fff;
  padding:70px 20px;
}

.envios-section{
  background:#ffffff;
  padding:70px 20px;
}

.testimonios-section{
  background:#0b0f14;
  padding:70px 20px;
}

.ubicacion-section{
  background:#ffffff;
  padding:70px 20px;
}

/* =========================
   CONSIGNA TU MOTO
========================= */

.consigna-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.consigna-left h2{
  font-size:32px;
  margin-bottom:14px;
  color:#fff;
}

.consigna-left p{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.6;
  margin-bottom:12px;
  max-width:480px;
}

.btn-consigna{
  display:inline-block;
  margin-top:18px;
  background:#f58220;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:all .2s;
}

.btn-consigna:hover{
  background:#ff8f33;
  transform:translateY(-1px);
}

.consigna-right h3{
  margin-bottom:18px;
  font-size:20px;
  color:#fff;
}

.faq-item{
  background:#141a21;
  border-radius:8px;
  margin-bottom:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:14px 16px;
  font-size:15px;
  cursor:pointer;
  font-weight:600;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question::after{
  content:"+";
  font-size:18px;
  color:#f97316;
}

.faq-item.active .faq-question::after{
  content:"-";
}

.faq-answer{
  display:none;
  padding:0 16px 14px 16px;
  color:#cbd5e1;
  font-size:14px;
  line-height:1.5;
}

.faq-item.active .faq-answer{
  display:block;
}

/* =========================
   ENVIOS A TODO CHILE
========================= */

.envios-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
  align-items:center;
}

.envios-video{
  width:100%;
  height:420px;
  border-radius:18px;
  overflow:hidden;
  background:#000;
}

.envios-video video{
  width:100%;
  height:100%;
  object-fit:cover;
}


.envios-video {
  position: relative;
}

.envios-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-sound {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;

  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
}











.envios-kicker{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
}

.envios-content h2{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.1;
  color:#111;
}

.envios-content p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.7;
  color:#555;
}

.envios-list{
  margin:18px 0 22px;
  padding-left:18px;
  color:#333;
}

.envios-list li{
  margin-bottom:10px;
  font-weight:700;
}

.btn-envios{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
  background:#25D366;
  color:#fff;
  font-size:14px;
  font-weight:800;
  transition:all .18s ease;
}

.btn-envios:hover{
  transform:translateY(-1px);
  background:#1ebe5b;
}

.testimonios-section{
  padding: 70px 0;
  background: #000;
  overflow: hidden;
}

.testimonios-container{
  width: min(1280px, 94%);
  margin: 0 auto;
}

.testimonios-head{
  text-align: center;
  margin-bottom: 28px;
}

.testimonios-kicker{
  display: inline-block;
  color: #f58220;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonios-head h2{
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.testimonios-head p{
  color: rgba(255,255,255,.72);
  font-size: 15px;
  margin: 0;
}

.testimonios-empty{
  color:#aaa;
  text-align:center;
  margin-top:20px;
}

.testimonios-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonios-track{
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: testimoniosScroll 35s linear infinite;
}

.testimonios-slider:hover .testimonios-track{
  animation-play-state: paused;
}

.testimonio-card{
  flex: 0 0 auto;
  width: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  display: block;
  transition: transform .25s ease, border-color .25s ease;
}

.testimonio-card:hover{
  transform: translateY(-4px);
  border-color: rgba(195,236,27,.5);
}

.testimonio-card img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@keyframes testimoniosScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

@media (max-width: 768px){
  .testimonio-card{
    width: 210px;
  }

  .testimonio-card img{
    height: 380px;
  }

  .testimonios-track{
    gap: 14px;
    animation-duration: 24s;
  }
}

/* =========================
   UBICACION
========================= */

.ubicacion-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:40px;
  align-items:center;
}

.ubicacion-left{
  max-width:520px;
}

.ubicacion-kicker{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
}

.ubicacion-left h2{
  margin:0 0 16px;
  font-size:36px;
  line-height:1.1;
  color:#111;
}

.ubicacion-left p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.7;
  color:#555;
}

.ubicacion-data{
  margin-top:22px;
  margin-bottom:22px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.ubicacion-data strong{
  font-size:14px;
  color:#111;
}

.ubicacion-data span{
  font-size:15px;
  color:#555;
}

.ubicacion-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-ubicacion{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:all .18s ease;
}

.btn-mapa{
  background:#111;
  color:#fff;
}

.btn-mapa:hover{
  transform:translateY(-1px);
  background:#000;
}

.btn-wsp-ubicacion{
  background:#25D366;
  color:#fff;
}

.btn-wsp-ubicacion:hover{
  transform:translateY(-1px);
  background:#1ebe5b;
}

.ubicacion-right{
  width:100%;
}

.mapa-wrap{
  width:100%;
  min-height:420px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  background:#f8fafc;
}

.mapa-wrap iframe{
  display:block;
  width:100%;
  height:420px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){
  .cards{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 980px){
  .home-hero{
    margin-top:80px;
    min-height:auto;
  }

  .home-hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    min-height:300px;
    height:420px;
  }

  .home-slider-inner{
    min-height:300px;
    height:420px;
  }

  .home-stock-overlay{
    margin:220px auto 40px;
    width:min(94%, 940px);
  }

  .hero-brand-stack{
    position:absolute;
    right:12px;
    top:95px;
  }

  .cards{
    grid-template-columns:repeat(2, 1fr);
  }

  .brand-card{
    flex-basis:86vw;
  }

  .brand-content{
    right:150px;
  }

  .brand-logo{
    width:110px;
  }

  .consigna-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .envios-container{
    grid-template-columns:1fr;
    gap:28px;
  }

  .envios-content h2{
    font-size:30px;
  }

  .testimonios-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .ubicacion-container{
    grid-template-columns:1fr;
    gap:28px;
  }

  .ubicacion-left{
    max-width:100%;
  }

  .ubicacion-left h2{
    font-size:30px;
  }

  .mapa-wrap,
  .mapa-wrap iframe{
    min-height:340px;
    height:340px;
  }
}

@media (max-width: 768px){
  .hero-brand-stack{
    position:absolute !important;
    top:92px;
    left:0;
    right:0;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:14px;
    z-index:90;
  }

  .hero-brand-logo,
  .hero-brand-card{
    flex:0 0 auto;
  }

  .hero-brand-logo img{
    max-width:124px !important;
    max-height:60px !important;
    object-fit:contain;
  }

  .hero-brand-card{
    min-width:auto;
    min-height:auto;
    padding:6px 8px;
    background:rgba(10,10,10,.08);
  }

  .hero-brand-card img{
    max-width:86px;
    max-height:30px;
    object-fit:contain;
  }

  .home-hero-bg{
    height:360px;
    margin-top: -50%;
  }

  .home-slider-inner{
    height:360px;
    min-height:360px;
  }

  .home-stock-overlay{
    width:min(94%, 94%);
    margin:200px auto 40px;
    padding:14px;
    border-radius:14px;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    background:rgba(8,12,18,.78);
  }
}

@media (max-width: 560px){
  .cards{
    grid-template-columns:1fr;
  }

  .envios-section,
  .testimonios-section,
  .ubicacion-section{
    padding:50px 16px;
  }

  .envios-content h2{
    font-size:26px;
  }

  .testimonios-head h2{
    font-size:28px;
  }

  .testimonios-grid{
    grid-template-columns:1fr;
  }

  .ubicacion-left h2{
    font-size:26px;
  }

  .ubicacion-actions{
    flex-direction:column;
  }

  .btn-ubicacion{
    width:100%;
  }
}

@media (max-width: 520px){
  .brand-card{
    height:240px;
  }

  .brand-content h3{
    font-size:24px;
  }

  .brand-content p{
    font-size:13.5px;
  }

  .brand-frame{
    inset:14px;
  }

  .brand-nav{
    display:none;
  }
}

@media (max-width: 480px){
  .hero-brand-stack{
    top:25%;
    gap:8px;
    right:8px;
    left:8px;
  }

  .hero-brand-logo img{
    max-width:64px;
    max-height:30px;
  }

  .hero-brand-card img{
    max-width:62px;
    max-height:22px;
  }
}


/*****BOTÓN****/
.ver-todas-motos{
  margin-top: 30px;
  text-align: center;
}

.btn-ver-todas{
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f58220;
  color: #f58220;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration:none;
}

.btn-ver-todas:hover{
  background: #f58220;
  color: white;
}