/* =============== VARIABLES / BASE =============== */
:root{
  --black:#111;
  --white:#fff;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:0 25px 60px rgba(0,0,0,.18);
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{scroll-behavior:smooth}
body{
  font-family:'Montserrat',sans-serif;
  color:#222;
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6,.btn{font-weight:800;text-transform:uppercase}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* =============== HEADER =============== */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 1.5rem;
  max-width:1400px;
  margin:0 auto;
  gap:2rem;
}

.logo{
  flex-shrink:0;
}

.logo img{
  height:32px;
  width:auto;
  max-width:120px;
  display:block;
}

@media(min-width:1000px){
  .logo img{
    height:50px;
    max-width:160px;
  }
  .nav{
    padding:18px 1.5rem;
  }
}

.nav-links{
  display:flex;
  gap:1.5rem;
  list-style:none;
  margin:0;
}

.nav-links a{
  text-decoration:none;
  color:#222;
  font-weight:600;
  font-size:0.95rem;
  padding:.4rem .2rem;
  position:relative;
  transition:.2s;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;bottom:-6px;
  height:2px;width:0;
  background:#111;
  transition:width .22s;
}

.nav-links a:hover::after{width:100%}

.lang{
  position:relative;
  flex-shrink:0;
}

.lang-btn{
  width:40px;height:40px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  color:#111;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.2s;
}

.lang-menu{
  display:none;
  position:absolute;
  right:0;top:46px;
  min-width:140px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
  z-index:1001;
}

.lang-menu.show{display:block}
.lang-menu li{
  list-style:none;
  padding:12px 18px;
  cursor:pointer;
  transition:.2s;
  font-weight:600;
  text-align:center;
}

.lang-menu li:hover{background:#f5f5f5}

.mobile-menu-btn{
  background:none;
  border:none;
  font-size:1.4rem;
  color:#111;
  cursor:pointer;
  display:none;
  padding:8px;
  flex-shrink:0;
}

/* =============== HERO - LOGO ARRIBA, TEXTO CENTRADO =============== */
.hero{
  position:relative;
  height:100vh;
  min-height:550px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  margin-top:0;
  overflow:hidden;
  padding:0;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.52),rgba(0,0,0,.58));
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:820px;
  padding:0 2rem;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
  transform:translateY(200px);
}

.hero-logo-big{
  width:100%;
  max-width:320px;
  height:auto;
  margin-bottom:0.5rem;
  filter:drop-shadow(0 12px 40px rgba(0,0,0,.7));
  display:block;
}

.hero-content h1{
  font-size:clamp(26px,4.5vw,50px);
  font-weight:800;
  letter-spacing:1px;
  text-shadow:0 12px 40px rgba(0,0,0,.6);
  margin:0 0 0.5rem 0;
  word-wrap:break-word;
  width:100%;
  line-height:1.1;
}

.hero-content p{
  margin:0 auto 0.8rem;
  font-size:clamp(14px,1.7vw,18px);
  max-width:700px;
  line-height:1.5;
  text-shadow:0 4px 12px rgba(0,0,0,.5);
  word-wrap:break-word;
  width:100%;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  border-radius:999px;
  padding:0.9rem 1.6rem;
  text-decoration:none;
  font-weight:800;
  transition:.2s;
  font-size:0.9rem;
}

.btn-dark{
  background:#111;
  color:#fff;
  border:2px solid #111;
}

.btn-dark:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}

/* =============== QUIÉNES SOMOS =============== */
.quienes-somos-new{
  padding:0;
  background:linear-gradient(180deg,#fafafa,#f5f5f5);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.quienes-somos-container{
  max-width:100%;
  width:100%;
  margin:0;
  padding:80px 20px;
}

.qs-header{text-align:center;margin-bottom:60px}
.qs-title{
  color:#222;
  font-size:2.8em;
  margin-bottom:20px;
  font-weight:800;
  letter-spacing:2px;
}

.qs-subtitle{
  color:#666;
  font-size:1.1em;
  line-height:1.6;
}

.team-member{
  max-width:700px;
  margin:0 auto;
  text-align:center;
  position:relative;
  padding-top:0;
}

.photo-container{
  width:220px;
  height:220px;
  margin:0 auto 30px;
  border-radius:50%;
  overflow:hidden;
  border:6px solid #fff;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
  opacity:0;
  transform:scale(0.7);
  transition:all 1s cubic-bezier(.4,0,.2,1);
}

.photo-container.visible{
  opacity:1;
  transform:scale(1);
}

.photo-container img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.photo-placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#e0e0e0,#c0c0c0);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#888;
  font-size:5em;
  font-weight:300;
}

.info-card{
  background:#fff;
  border-radius:20px;
  padding:40px 30px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.05);
  opacity:0;
  transform:translateY(50px);
  transition:all 1s cubic-bezier(.4,0,.2,1) .3s;
  text-align:center;
}

.info-card.visible{
  opacity:1;
  transform:translateY(0);
}

.member-role{
  color:#666;
  font-size:.85em;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:12px;
  text-align:center;
}

.member-name{
  color:#111;
  font-size:2.2em;
  font-weight:800;
  margin-bottom:20px;
  text-align:center;
}

.member-description{
  color:#555;
  line-height:1.9;
  font-size:1em;
  margin-bottom:30px;
  text-align:center;
}

.member-stats{
  display:flex;
  justify-content:center;
  gap:30px;
  padding-top:30px;
  border-top:2px solid #f0f0f0;
  margin-top:30px;
  flex-wrap:wrap;
}

.stat{text-align:center}
.stat-number{
  color:#111;
  font-size:2em;
  font-weight:800;
  display:block;
}

.stat-label{
  color:#888;
  font-size:.9em;
  margin-top:8px;
  text-transform:uppercase;
  letter-spacing:1px;
}

@media(min-width:900px){
  .quienes-somos-new{padding:0}
  .quienes-somos-container{max-width:100%;padding:80px 40px}
  .qs-header{padding:0 40px 40px}
  
  .team-member{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    max-width:1200px;
    margin:0 auto;
    text-align:left;
    align-items:center;
    padding-top:0;
  }
  
  .photo-container{
    width:420px;
    height:520px;
    margin:0;
    border-radius:20px;
    opacity:0;
    transform:translateX(80px) scale(0.95);
    transition:all 1.2s cubic-bezier(.4,0,.2,1);
    order:2;
  }
  
  .photo-container.visible{
    opacity:1;
    transform:translateX(0) scale(1);
  }
  
  .info-card{
    padding:50px 40px;
    border-radius:20px;
    box-shadow:none;
    border:none;
    background:transparent;
    opacity:0;
    transform:translateX(-80px);
    transition:all 1.2s cubic-bezier(.4,0,.2,1) .3s;
    text-align:left;
    order:1;
  }
  
  .info-card.visible{
    opacity:1;
    transform:translateX(0);
  }
  
  .member-role{text-align:left}
  .member-name{text-align:left}
  .member-description{text-align:left}
  .member-stats{justify-content:flex-start}
  .stat{text-align:left}
}

/* =============== SECCIONES =============== */
.section{padding:5rem 0}
.section-title{
  text-align:center;
  font-size:clamp(24px,3.5vw,34px);
  font-weight:800;
  margin-bottom:1rem;
  color:#222;
}

.section-lead{
  text-align:center;
  max-width:820px;
  margin:0 auto 2rem;
  color:#333;
}

.section-muted{
  background:linear-gradient(180deg,#fafafa,#f2f2f2);
  border-top:1px solid rgba(0,0,0,.05);
  border-bottom:1px solid rgba(0,0,0,.05);
}

/* =============== 5 PASOS =============== */
.steps-grid-5{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.5rem;
  max-width:1200px;
  margin:0 auto;
}

.step-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:1.6rem 1.4rem;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.2s;
}

.step-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}

.step-badge{
  width:44px;height:44px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  margin:0 auto .8rem;
  font-size:1.1rem;
}

.step-card h3{
  font-size:1rem;
  margin-bottom:.6rem;
}

.step-card p{
  font-size:.9rem;
  line-height:1.6;
}

/* =============== TESTIMONIOS =============== */
.testimonios-section{
  padding:5rem 0;
  background:linear-gradient(180deg,#f8f8f8,#e8e8e8);
  color:#2d2d2d;
  overflow:hidden;
}

.testimonios-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 1.5rem;
}

.testimonios-header{text-align:center;margin-bottom:50px}
.testimonios-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(34,197,94,.08);
  border:1px solid rgba(34,197,94,.2);
  padding:8px 20px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  color:#16a34a;
  text-transform:uppercase;
  margin-bottom:20px;
}

.testimonios-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:12px;
}

.testimonios-subtitle{
  font-size:17px;
  color:#666;
  max-width:600px;
  margin:0 auto;
}

.testimonios-carousel-container{
  overflow:visible;
  padding:20px 0;
  margin:0 -20px;
}

.testimonios-carousel-track{
  display:flex;
  gap:30px;
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  padding:0 20px;
}

.testimonios-card{
  min-width:calc(100% - 40px);
  max-width:800px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
  flex-shrink:0;
}

.testimonios-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 45px rgba(0,0,0,.15);
}

.testimonios-review-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}

.testimonios-avatar{
  width:70px;height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#6366f1,#8b5cf6);
  color:#fff;
  font-weight:700;
  font-size:1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 8px 20px rgba(99,102,241,.3);
}

.testimonios-reviewer-info{flex:1}
.testimonios-reviewer-name{
  font-size:1.3rem;
  font-weight:700;
  color:#111;
  margin-bottom:4px;
}

.testimonios-verified{
  background:rgba(34,197,94,.12);
  color:#16a34a;
  padding:4px 12px;
  border-radius:12px;
  font-size:.7rem;
  font-weight:600;
  margin-left:8px;
}

.testimonios-reviewer-title{
  font-size:.95rem;
  color:#666;
  font-weight:500;
}

.testimonios-stars{
  color:#f59e0b;
  font-size:24px;
  margin-bottom:20px;
  letter-spacing:4px;
}

.testimonios-review-text{
  color:#444;
  line-height:1.8;
  font-size:1.05rem;
  margin-bottom:20px;
}

.testimonios-review-date{
  color:#888;
  font-size:.9rem;
  font-weight:500;
}

.testimonios-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:40px;
}

.testimonios-btn{
  width:50px;height:50px;
  border-radius:50%;
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  cursor:pointer;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.testimonios-btn:hover{
  transform:scale(1.05);
  box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.testimonios-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:25px;
}

.testimonios-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(0,0,0,.2);
  cursor:pointer;
  transition:.3s;
}

.testimonios-dot.active{
  background:#333;
  width:32px;
  border-radius:4px;
}

/* =============== CONTACTO =============== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  max-width:1200px;
  margin:0 auto;
}

.contact-card,.contact-form{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:1.8rem;
}

.contact-form{
  padding:2rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.contact-card p{margin:.4rem 0;font-weight:500}
.contact-card i{
  width:22px;
  text-align:center;
  color:#111;
  margin-right:.4rem;
}

.contact-card a{
  color:#222;
  text-decoration:none;
}

.contact-card a:hover{text-decoration:underline}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem;
}

input,textarea,select{
  width:100%;
  padding:1rem;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  font:inherit;
  background:#fff;
  transition:.2s;
}

input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.05);
}

textarea{resize:vertical;min-height:120px}

/* =============== FOOTER =============== */
.footer{
  background:linear-gradient(180deg,#1a1a1a,#0d0d0d);
  border-top:1px solid rgba(255,255,255,.08);
  padding:3rem 0 1.2rem;
  color:#e0e0e0;
}

.footer-content{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:1.4rem;
}

.footer-col h4{
  font-weight:800;
  margin-bottom:.6rem;
  color:#fff;
}

.footer-col p{color:#b0b0b0}
.footer-links{list-style:none}
.footer-links li{margin:.35rem 0}
.footer-links a{
  text-decoration:none;
  color:#b0b0b0;
  transition:.2s;
}

.footer-links a:hover{color:#fff}

.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  border-radius:50%;
  background:#fff;
  color:#111;
  margin-right:.4rem;
  transition:.2s;
}

.social a:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(255,255,255,.2);
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-top:1.2rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.1);
  flex-wrap:wrap;
}

.dev{
  display:flex;
  align-items:center;
  gap:.6rem;
  color:#b0b0b0;
}

.dev-logos{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.dev-logos img{
  height:38px;
  width:auto;
  object-fit:contain;
  filter:brightness(1.2);
}

.copy{
  color:#b0b0b0;
  font-size:.95rem;
}

.reveal{
  opacity:0;
  transform:translateY(14px);
  filter:blur(4px);
  transition:opacity .6s,transform .6s,filter .6s;
}

.reveal.visible,
.reveal.in{
  opacity:1;
  transform:none;
  filter:none;
}

/* =============== CATÁLOGO =============== */
.catalog-filters-single{
  display:flex;
  justify-content:center;
  margin:3rem auto 4rem;
  max-width:400px;
}

.filter-group{
  display:flex;
  flex-direction:column;
  gap:8px;
  width:100%;
}

.filter-label{
  font-size:.85rem;
  font-weight:700;
  color:#666;
  text-transform:uppercase;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  gap:6px;
}

.filter-select{
  padding:14px 20px;
  background:linear-gradient(135deg,#fff,#fafafa);
  border:2px solid rgba(0,0,0,.08);
  border-radius:12px;
  color:#555;
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  font-family:'Montserrat',sans-serif;
  transition:.3s;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}

.filter-select:hover{
  border-color:#111;
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.filter-select:focus{
  outline:none;
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.05);
}

.motos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:35px;
  margin-bottom:4rem;
}

.moto-card{
  background:linear-gradient(135deg,#fff,#fafafa);
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 40px rgba(0,0,0,.08);
  transition:.4s cubic-bezier(.4,0,.2,1);
}

.moto-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.moto-image{
  position:relative;
  background:linear-gradient(135deg,#1a1a1a,#0d0d0d);
  height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.moto-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}

.moto-card:hover .moto-img{
  transform:scale(1.1) rotate(2deg);
}

.moto-icon-fallback{
  font-size:6rem;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,.5));
}

.moto-category{
  position:absolute;
  top:18px;
  right:18px;
  background:rgba(255,255,255,.95);
  color:#111;
  padding:8px 18px;
  border-radius:25px;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:1px;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
  z-index:2;
}

.moto-info{padding:28px 24px 24px}
.moto-info h3{
  font-size:1.4rem;
  font-weight:800;
  margin-bottom:12px;
  color:#111;
  letter-spacing:.3px;
  line-height:1.3;
}

.moto-specs{
  display:flex;
  gap:18px;
  margin-bottom:18px;
  font-size:.85rem;
  color:#777;
  flex-wrap:wrap;
}

.moto-specs span{
  display:flex;
  align-items:center;
  gap:6px;
}

.moto-specs i{color:#111}

.moto-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding-top:16px;
  border-top:1px solid #f0f0f0;
}

.moto-price{display:flex;flex-direction:column}
.price-amount{
  font-size:1.8rem;
  font-weight:900;
  color:#111;
  line-height:1;
}

.price-period{
  font-size:.85rem;
  color:#999;
  font-weight:600;
  margin-top:2px;
}

.btn-reserve{
  background:linear-gradient(135deg,#111,#000);
  color:#fff;
  border:none;
  padding:14px 24px;
  border-radius:50px;
  font-weight:800;
  font-size:.9rem;
  cursor:pointer;
  transition:.3s cubic-bezier(.4,0,.2,1);
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Montserrat',sans-serif;
  letter-spacing:.5px;
  text-transform:uppercase;
  box-shadow:0 6px 20px rgba(0,0,0,.15);
}

.btn-reserve:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 12px 30px rgba(0,0,0,.3);
}

/* =============== WIZARD - BOTÓN X CORREGIDO =============== */
.wizard-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(8px);
  z-index:9999;
  overflow-y:auto;
  padding:40px 20px;
}

.wizard-overlay.show{
  display:block;
}

.wizard{
  width:90%;
  max-width:540px;
  background:#fff;
  border-radius:20px;
  overflow:visible;
  box-shadow:0 25px 60px rgba(0,0,0,.3);
  margin:0 auto;
  max-height:calc(100vh - 80px);
  display:flex;
  flex-direction:column;
}

.wizard header{
  padding:24px 60px 24px 24px;
  text-align:center;
  background:linear-gradient(135deg,#000,#333);
  color:#fff;
  font-weight:700;
  font-size:1.4rem;
  letter-spacing:.5px;
  position:relative;
}

.wizard-close{
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-50%);
  background:rgba(255,255,255,.15);
  border:none;
  color:#fff;
  width:32px;
  height:32px;
  border-radius:50%;
  cursor:pointer;
  font-size:1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
  line-height:1;
}

.wizard-close:hover{
  background:rgba(255,255,255,.25);
  transform:translateY(-50%) rotate(90deg);
}

.progressbar{
  display:flex;
  justify-content:space-between;
  position:relative;
  margin:30px;
  padding:0 10px;
}

.progressbar::before{
  content:'';
  position:absolute;
  top:50%;left:5%;
  transform:translateY(-50%);
  height:5px;width:90%;
  background:#e6e6e6;
  z-index:0;
  border-radius:3px;
}

.line-fill{
  position:absolute;
  top:50%;left:5%;
  height:5px;
  background:#111;
  z-index:0;
  border-radius:3px;
  transition:.4s;
  width:0;
  transform:translateY(-50%);
}

.step{
  background:#e6e6e6;
  color:#999;
  width:44px;height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
  font-weight:600;
  transition:.3s;
  box-shadow:inset 0 0 0 3px #fff;
  font-family:'Montserrat',sans-serif;
}

.step.active{
  background:#111;
  color:#fff;
  box-shadow:0 0 10px rgba(0,0,0,.3);
}

.wizard .content{
  padding:30px;
  min-height:300px;
  max-height:calc(100vh - 350px);
  overflow-y:auto;
  text-align:center;
  flex:1;
}

.wizard .content h2{
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  letter-spacing:.3px;
  font-size:1.5rem;
}

.wizard .content p{
  font-size:15px;
  color:#555;
  margin-bottom:20px;
}

.wizard input,.wizard select{
  padding:14px;
  border:2px solid #e6e6e6;
  border-radius:12px;
  width:85%;
  margin:12px auto;
  display:block;
  background:#fafafa;
  color:#111;
  font-size:15px;
  text-align:center;
  transition:.3s;
  font-family:'Montserrat',sans-serif;
}

.wizard input:focus,.wizard select:focus{
  outline:none;
  background:#fff;
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.05);
}

.wizard .buttons{
  display:flex;
  justify-content:space-between;
  padding:20px;
  gap:12px;
}

.wizard button{
  background:#111;
  border:none;
  padding:14px 26px;
  border-radius:12px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
  letter-spacing:.3px;
  font-family:'Montserrat',sans-serif;
  flex:1;
}

.wizard button[disabled]{
  opacity:.35;
  cursor:not-allowed;
}

.wizard button:hover:not([disabled]){
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}

.casco-btn{
  background:#fff!important;
  color:#111!important;
  padding:16px 28px!important;
  border:2px solid #111!important;
  border-radius:40px!important;
  display:inline-flex!important;
  align-items:center;
  gap:10px;
  font-weight:600!important;
  cursor:pointer;
  transition:.3s;
  font-size:15px;
}

.casco-btn:hover{
  background:#111!important;
  color:#fff!important;
  transform:translateY(-2px)!important;
}

.btn-wsp{
  background:#25D366!important;
  color:#fff!important;
  border:none!important;
  padding:16px 28px!important;
  border-radius:14px!important;
  font-weight:700!important;
  cursor:pointer!important;
  transition:.3s!important;
  font-size:15px!important;
  letter-spacing:.3px!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:10px!important;
  font-family:'Montserrat',sans-serif!important;
}

.btn-wsp:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 8px 25px rgba(37,211,102,.3)!important;
}

.wizard .total{
  font-size:1.3rem;
  font-weight:700;
  margin-top:20px;
  color:#000;
}

.wizard .hint{
  font-size:12px;
  color:#7a7a7a;
  margin-top:10px;
  line-height:1.5;
}

.wizard-moto-selected{
  background:linear-gradient(135deg,#f5f5f5,#e8e8e8);
  padding:25px 20px 20px;
  border-radius:12px;
  margin-bottom:20px;
  border:2px solid #e0e0e0;
}

.wizard-moto-selected h3{
  font-size:1.2rem;
  color:#111;
  margin-bottom:8px;
  text-transform:none;
}

.wizard-moto-selected p{
  font-size:.95rem;
  color:#666;
  margin:4px 0;
}

.wizard-moto-image{
  width:120px;height:120px;
  margin:0 auto 15px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.wizard-moto-image img{
  width:100%;height:100%;
  object-fit:cover;
}

/* =============== RESPONSIVE - HERO =============== */

/* PC GRANDE */
@media(min-width:1101px){
  .hero{
    min-height:650px;
  }
  
  .hero-content{
    transform:translateY(-120px);
  }
  
  .hero-logo-big{
    max-width:380px;
    margin-bottom:2.5rem;
  }
  
  .hero-content h1{
    font-size:50px;
    margin:0 0 1.2rem 0;
  }
  
  .hero-content p{
    font-size:18px;
    margin:0 auto 1.8rem;
  }
  
  .hero-content .btn{
    padding:1rem 2rem;
    font-size:1rem;
  }
}

/* TABLETS Y LAPTOPS */
@media(min-width:700px) and (max-width:1100px){
  .hero{
    min-height:550px;
  }
  
  .hero-content{
    transform:translateY(-80px);
  }
  
  .hero-logo-big{
    max-width:300px;
    margin-bottom:2rem;
  }
  
  .hero-content h1{
    font-size:clamp(28px,4vw,38px);
    margin:0 0 1rem 0;
  }
  
  .hero-content p{
    font-size:clamp(14px,1.6vw,16px);
    margin:0 auto 1.5rem;
  }
}

/* MÓVIL */
@media(max-width:699px){
  .hero{
    min-height:500px;
  }
  
  .hero-content{
    transform:translateY(-60px);
  }
  
  .hero-logo-big{
    max-width:240px;
    margin-bottom:1.8rem;
  }
  
  .hero-content h1{
    font-size:26px;
    margin:0 0 0.8rem 0;
    line-height:1.15;
  }
  
  .hero-content p{
    font-size:14px;
    margin:0 auto 1.2rem;
    line-height:1.5;
  }
  
  .hero-content .btn{
    padding:0.9rem 1.6rem;
    font-size:0.9rem;
  }
  
  .hero-content{
    padding:0 1.5rem;
  }
}

@media(min-width:1000px){
  .nav-links{display:flex!important}
  .lang{display:block!important}
  .mobile-menu-btn{display:none!important}
  .lang-mobile{display:none!important}
}

@media(max-width:999px){
  .nav{padding:12px 1rem;gap:1rem}
  
  .nav-links{
    position:fixed;
    top:60px;left:0;right:0;
    background:#fff;
    flex-direction:column;
    gap:1rem;
    padding:1.3rem 1.4rem;
    display:none;
    border-bottom:1px solid rgba(0,0,0,.06);
    box-shadow:var(--shadow);
    margin:0;
    text-align:left;
    z-index:999;
    max-height:calc(100vh - 60px);
    overflow-y:auto;
  }
  
  .nav-links a{
    padding:.6rem 0;
    display:block;
    text-align:left;
  }
  
  .nav-links.show{display:flex}
  .mobile-menu-btn{display:block!important}
  .lang{display:none!important}
  
  .lang-mobile{
    border-top:1px solid rgba(0,0,0,.06);
    padding-top:1rem;
    margin-top:.5rem;
    text-align:left;
  }
  
  .lang-mobile-title{
    font-size:.85rem;
    font-weight:700;
    color:#666;
    margin-bottom:.5rem;
    text-transform:uppercase;
    letter-spacing:1px;
    text-align:left;
  }
  
  .lang-mobile-options{
    display:flex;
    gap:.5rem;
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  
  .lang-mobile-btn{
    padding:.5rem 1rem;
    background:#f5f5f5;
    border:1px solid rgba(0,0,0,.08);
    border-radius:8px;
    color:#666;
    font-size:.85rem;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
  }
  
  .lang-mobile-btn:hover,.lang-mobile-btn.active{
    background:#111;
    color:#fff;
    border-color:#111;
  }
}

@media(max-width:768px){
  .contact-grid{grid-template-columns:1fr}
  .footer-content{grid-template-columns:1fr 1fr}
  .motos-grid{grid-template-columns:1fr;gap:20px}
  .moto-image{height:200px}
  .moto-footer{flex-direction:column;gap:12px;align-items:stretch}
  .btn-reserve{width:100%;justify-content:center}
  .wizard{width:95%;max-width:none}
  .wizard header{font-size:1.2rem;padding:20px 55px 20px 20px}
  .wizard .content{padding:20px;min-height:260px}
  .wizard input,.wizard select{width:95%;padding:12px}
  .wizard .buttons{flex-direction:column}
  .wizard button{width:100%}
  
  .testimonios-carousel-container{
    padding:0;
    margin:0;
  }

  .testimonios-carousel-track{
    gap:20px;
    padding:0 10px;
  }

  .testimonios-card{
    min-width:100%;
    max-width:100%;
    padding:1.6rem 1.4rem;
    border-radius:16px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:var(--shadow);
    margin:0;
  }

  .testimonios-review-header{
    gap:14px;
    margin-bottom:16px;
  }

  .testimonios-avatar{
    width:50px;
    height:50px;
    font-size:1rem;
  }

  .testimonios-review-text{
    font-size:.9rem;
    line-height:1.55;
  }

  .testimonios-stars{
    margin-bottom:10px;
    font-size:18px;
    letter-spacing:3px;
  }

  .testimonios-controls{
    margin-top:25px;
  }
  
  .testimonios-title{
    font-size:32px;
  }
  
  .testimonios-subtitle{
    font-size:15px;
  }
}

@media(max-width:520px){
  .footer-content{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:1rem;text-align:center}
  .steps-grid-5{grid-template-columns:1fr}
  
  .hero-content{
    transform:translateY(-50px);
  }
  
  .hero-logo-big{
    max-width:200px;
    margin-bottom:1.5rem;
  }
  
  .hero-content h1{
    font-size:24px;
  }
  
  .hero-content p{
    font-size:13px;
  }
}

/* ===========================================
   FIX DEFINITIVO — LOGO BAJO + TEXTO ARRIBA
   =========================================== */

/* Subimos solo el TEXTO */
.hero-content{
  transform:translateY(-80px) !important;
  gap:1rem !important;
}

/* Bajamos el LOGO para que no se vaya */
.hero-logo-big{
  transform:translateY(40px) !important; 
}


/* CONTENEDOR DEL LOGO Y EL TEXTO */
.logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;     /* centra todo */
  justify-content: center;
  text-align: center;
  margin-top: 40px;        /* BAJA EL BLOQUE ENTERO */
}

/* LOGO */
.logo{
  max-width: 120px;        /* achica el logo */
  margin-bottom: 10px;     /* espacio entre logo y texto */
}

/* TEXTO */
.titulo{
  margin-top: -10px;       /* SUBE el texto */
  font-size: 32px;
  font-weight: bold;
}

/* --- OPCIONAL PARA CELULAR --- */
@media(max-width:768px){
  .logo{
    max-width: 90px;        
  }
  .titulo{
    font-size: 24px;
  }
  .logo-container{
    margin-top: 20px;
  }
}

/* CONTENEDOR DEL LOGO Y TEXTO - MODO GENERAL */
.logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}

/* LOGO GENERAL */
.logo{
  max-width: 120px;
  margin-bottom: 10px;
}

/* TEXTO */
.titulo{
  margin-top: -10px;
  font-size: 32px;
  font-weight: bold;
}


/* 📌 MODO PC (pantallas grandes) */
@media(min-width: 1024px){
  .logo-container{
    margin-top: 80px;     /* MÁS ABAJO */
  }
  .logo{
    max-width: 100px;     /* ACHICAMOS MÁS EL LOGO */
  }
  .titulo{
    margin-top: -20px;    /* SUBIMOS EL TEXTO UN POCO MÁS */
    font-size: 36px;
  }
}


/* 📱 MODO CELULAR */
@media(max-width:768px){
  .logo{
    max-width: 85px;         
  }
  .titulo{
    font-size: 24px;
  }
  .logo-container{
    margin-top: 20px;
  }
}

/* LIMPIEZA TOTAL DEL LOGO BLANCO */
.logo-blanco,
.logo-blanco *{
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* LOGO BLANCO NORMAL Y CONTROLABLE */
.logo-blanco{
  display: block;
  margin: 140px auto 10px;   /* BAJA EL LOGO Y LO CENTRA */
  max-width: 85px;           /* ACHICAMOS EL LOGO */
}

/* TEXTO */
.titulo{
  text-align: center;
  margin-top: -5px;          /* ACERCAR EL TEXTO AL LOGO */
  font-size: 36px;
  font-weight: bold;
}

/* 📌 MODO PC */
@media (min-width:1024px){
  .logo-blanco{
    margin: 180px auto 10px; 
    max-width: 75px;
  }
  .titulo{
    font-size: 40px;
  }
}

/* 📱 MODO CELULAR */
@media (max-width:768px){
  .logo-blanco{
    margin: 110px auto 8px;
    max-width: 65px;
  }
  .titulo{
    font-size: 24px;
  }
}
/* RESETEO TOTAL DEL LOGO BLANCO */
.logo-blanco{
  display: block !important;
  margin-top: 240px !important;   /* LO TIRA BIEN ABAJO */
  margin-bottom: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 70px !important;     /* ACHICA MÁS EL LOGO */
  padding: 0 !important;
}
header, .header, .contenedor, .wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.logo-blanco{
  position: relative !important;
  top: 200px !important;      /* ← BAJA el logo */
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 70px !important; /* achicado */
  padding: 0 !important;
}

/* --- FORZAR BAJADA EN MODO PC --- */
@media (min-width: 1024px) {
  .hero-container {
    padding-top: 250px !important;   /* Aumentá si querés más */
    height: auto !important;
  }

  .hero-content {
    transform: none !important;
    margin-top: 0 !important;
  }
}

/* ==== VIDEO CENTRADO ==== */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  width: 80%;
  max-width: 700px;
  aspect-ratio: 16/9;
}


/* ==== LOGO BLANCO (SOLO ESTE, NO HEADER) ==== */
.logo-blanco img {
  max-width: 140px;   /* podés ajustar */
  height: auto;
  display: block;
  margin: 0 auto;     /* centrado */
}


/* ==== TEXTO CENTRADO SIN AFECTAR QUIÉNES SOMOS ==== */
.texto-centro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}


/* ==== BOTÓN DE WHATSAPP / CONTACTO ==== */
.btn-wsp {
  background: #25D366 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 14px !important;
  display: inline-block;
  font-weight: 700 !important;
  cursor: pointer !important;
  text-decoration: none;
  transition: 0.3s !important;
}

.btn-wsp:hover {
  opacity: 0.8;
}

/* ==== CONTENEDOR DEL VIDEO ==== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container video,
.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ==== LOGO BLANCO ==== */
.logo-blanco {
  display: block;
  margin: 0 auto;
  max-width: 80px;   /* tamaño controlado */
  position: relative;
}

.logo-blanco img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==== TEXTO CENTRADO (sin afectar otras secciones) ==== */
.texto-centro {
  text-align: center;
  max-width: 900px;
  margin: 20px auto 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
}

/* ==== BOTÓN WHATSAPP ==== */
.btn-wsp {
  background: #25D366 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: 0.3s !important;
  margin: 0 auto;
}

.btn-wsp:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37,211,102,.3) !important;
}
/* ===== LOGO DEL HERO (VIDEO/Sección principal) ===== */
.hero-logo-big {
  width: 140px;       /* Ajustá el tamaño como quieras */
  display: block;
  margin: 0 auto;
}

/* ===== CENTRAR EL VIDEO SIN TOCAR OTRAS SECCIONES ===== */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  width: 80%;
  max-width: 700px;
  aspect-ratio: 16/9;
}

/* ===== BOTÓN DE CONTACTO ===== */
.btn-wsp {
  background:#25D366!important;
  color:#fff!important;
  padding:14px 28px!important;
  border-radius:14px!important;
  display:inline-block;
  font-weight:700!important;
  cursor:pointer!important;
  transition:0.3s!important;
  text-decoration:none;
}

.btn-wsp:hover {
  opacity: 0.8;
}

@media(max-width: 768px) {
  .quienes-somos {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.wizard-close {
    /* 🔒 Bloquea expansión */
    display: inline-flex !important;   /* no block */
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;

    /* 📐 Tamaño fijo */
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;

    /* 📍 Ubicación */
    position: absolute;
    top: 10px;
    right: 10px;

    /* 🎯 Centrar la X */
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* 🔒 BLOQUE TOTAL AL DESPLIEGUE */
.wizard-close {
    position: absolute;     /* fijo en la tarjeta */
    top: 8px;
    right: 8px;

    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;

    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.6) !important; /* opcional */
    backdrop-filter: blur(2px); /* opcional */
    border-radius: 5px;

    border: none !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    cursor: pointer;
    z-index: 9999;
}

/* 📱 Mobile: si querés ajustado */
@media (max-width: 770px) {
    .wizard-close {
        top: 5px;
        right: 5px;
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }
}
