:root{
  --purple:#6426D9;
  --purple2:#7B2FF7;
  --purple-soft:#F3ECFF;
  --dark:#070912;
  --white:#FFFFFF;
  --soft:#F7F2FF;
  --text:#11131A;
  --muted:#555B66;
  --shadow:0 18px 45px rgba(100,38,217,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}
body.menu_open{overflow:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none}
ul{list-style:none}
h1,h2,h3,h4{font-family:'Sora',sans-serif;margin:0 0 16px}
p{margin:0 0 18px;color:var(--muted);line-height:1.75}

/* HEADER */
.site_header{
  width:100%;
  min-height:82px;
  padding:0 6.5%;
  background:var(--dark);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:65px;
  position:sticky;
  top:0;
  z-index:9999;
}
.logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  min-width:205px;
}
.logo img{
  width:220px;
  max-width:220px;
  display:block;
}
.premium_nav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
}
.premium_nav a,
.dropdown_btn{
  color:#fff;
  font-size:13.5px;
  font-weight:600;
  white-space:nowrap;
  background:transparent;
  border:0;
  cursor:pointer;
  font-family:'Poppins',sans-serif;
}
.premium_nav a:hover,
.dropdown_btn:hover{color:#a78bfa}
.btn_app{
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  padding:13px 24px;
  border-radius:14px;
  color:#fff!important;
  box-shadow:0 10px 26px rgba(100,38,217,.22);
  transition:.25s ease;
}
.btn_app:hover{transform:translateY(-2px);color:#fff!important}
.mobile_menu_btn{
  display:none;
  background:var(--purple);
  color:#fff;
  border:0;
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:22px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* DROPDOWN */
.nav_dropdown{
  position:relative;
  display:flex;
  align-items:center;
}
.dropdown_btn{
  display:flex;
  align-items:center;
  gap:7px;
  padding:0;
}
.dropdown_btn i{font-size:11px}
.dropdown_menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:190px;
  background:#fff;
  border-radius:16px;
  padding:10px;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  display:none;
  z-index:99999;
}
.nav_dropdown.active .dropdown_menu{display:block}
.dropdown_menu a{
  display:block!important;
  color:#0B0B0F!important;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
}
.dropdown_menu a:hover{
  background:var(--purple-soft);
  color:var(--purple)!important;
}

/* HERO */
.hero{
  padding:120px 8% 45px;
  background:radial-gradient(circle at 82% 35%,#eadfff 0,#fff 46%);
}
.hero_grid,
.two_cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
  max-width:1200px;
  margin:0 auto;
}
.hero h1{
  font-size:58px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:-2px;
}
.hero h1 span,
.section h2 span,
.testimonials h2 span{color:var(--purple)}
.hero p{
  font-size:18px;
  line-height:32px;
  max-width:530px;
}
.store_buttons img{width:235px}
.hero_img{
  text-align:center;
  position:relative;
}
.hero_img:before{
  content:"";
  width:390px;
  height:390px;
  background:var(--purple);
  border-radius:50%;
  position:absolute;
  right:12%;
  bottom:4%;
  z-index:0;
}
.hero_img img{
  position:relative;
  z-index:1;
  max-height:500px;
  margin:0 auto;
}

/* FORM PRINCIPAL */
.info_bar{
  max-width:1120px;
  margin:15px auto 80px;
  background:linear-gradient(135deg,var(--purple),#4B16B8);
  border-radius:20px;
  padding:28px;
  box-shadow:0 22px 50px rgba(100,38,217,.20);
}
.info_bar h3{
  color:#fff;
  font-size:21px;
  font-weight:700;
}
.info_form{
  display:grid;
  grid-template-columns:repeat(4,1fr) 130px;
  gap:14px;
}
.info_form input,
.info_form button,
.footer_form input,
.footer_form button{
  height:52px;
  border-radius:12px;
  border:0;
  padding:0 16px;
  outline:none;
}
.info_form button,
.footer_form button{
  background:#090B14;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* SECCIONES */
.section{padding:85px 8%}
.section h2,
.testimonials h2{
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-1.8px;
}
.kicker{
  display:inline-block;
  color:var(--purple);
  font-weight:800;
  letter-spacing:3px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.feature_list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:30px;
}
.feature_item,
.card_chapa,
.sub_card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}
.feature_item i,
.card_chapa i,
.sub_card i{
  color:var(--purple);
  font-size:28px;
  margin-bottom:14px;
}
.image_card img,
.about_img img{
  border-radius:30px;
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}
.benefits{
  text-align:center;
  background:#fbf8ff;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  max-width:1120px;
  margin:42px auto 0;
}
.card_chapa i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.why{background:linear-gradient(180deg,#fff,#f7f2ff)}
.checks{padding:0;margin:26px 0}
.checks li{
  font-weight:600;
  font-size:17px;
  margin-bottom:15px;
}
.checks i{color:var(--purple);margin-right:10px}
.read_more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff!important;
  border-radius:14px;
  padding:15px 26px;
  font-weight:600;
  border:0;
  cursor:pointer;
}
.phone_mock{text-align:center}
.phone_mock img{
  max-height:500px;
  margin:0 auto;
}

/* TESTIMONIOS */
.testimonials{
  text-align:center;
  padding:90px 8% 110px;
  background:#fff;
}
.testimonial_card{
  max-width:1180px;
  margin:38px auto 0;
  background:linear-gradient(135deg,#fbf8ff,#f3ecff);
  border-radius:24px;
  padding:42px 55px;
  display:grid;
  grid-template-columns:1fr 1.7fr 1fr;
  gap:30px;
  align-items:center;
  box-shadow:0 22px 55px rgba(91,33,217,.08);
}
.testimonial_item{
  padding:0;
  background:transparent;
}
.testimonial_item img{
  width:86px;
  height:86px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 12px;
}
.testimonial_item p{
  font-size:14px;
  line-height:24px;
}
.testimonial_item h4{
  font-size:17px;
  font-weight:800;
}
.testimonial_item span{
  color:var(--purple);
  font-size:15px;
  font-weight:600;
}
.active_testimonial p{
  font-size:20px!important;
  line-height:32px!important;
  color:#222;
  font-weight:500;
}
.active_testimonial:before{
  content:"“";
  display:block;
  color:var(--purple);
  font-family:Georgia,serif;
  font-size:90px;
  line-height:45px;
  font-weight:900;
}
.testimonial_controls{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:-28px;
  position:relative;
  z-index:3;
}
.testimonial_controls button{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#fff;
  color:var(--purple);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  font-size:28px;
  border:0;
  cursor:pointer;
}
.testimonials .read_more{
  margin-top:28px;
  width:170px;
  height:52px;
  padding:0;
}

/* FOOTER */
.footer_chapa{
  background:#080B14;
  color:#fff;
  padding:38px 3% 0;
  overflow:hidden;
}
.footer_grid{
  display:grid;
  grid-template-columns:1.15fr .9fr 1.55fr 1.15fr;
  gap:24px;
  align-items:center;
  max-width:1280px;
  margin:0 auto;
}
.footer_logo{
  width:225px;
  margin-bottom:8px;
}
.footer_chapa p,
.footer_chapa span,
.footer_chapa li{
  color:#fff!important;
  font-size:12px!important;
  line-height:21px!important;
}
.footer_chapa h3{
  color:#fff!important;
  font-size:20px;
  font-weight:700;
}
.footer_socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}
.footer_socials a{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:19px;
  transition:.25s;
}
.footer_socials a:hover{
  background:var(--purple);
  transform:translateY(-3px);
}
.footer_contact ul{padding:0;margin:0}
.footer_contact li{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:16px;
}
.footer_contact i{
  color:#a78bfa;
  font-size:24px;
  width:28px;
}
.footer_form{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  max-width:640px;
}
.footer_form input{
  flex:1;
  min-width:0;
}
.footer_form button{
  width:108px;
  min-width:108px;
  background:var(--purple);
}
.footer_car{text-align:right}
.footer_car img{
  max-width:390px;
  margin-left:auto;
}
.copyright{
  width:100vw;
  margin:34px calc(50% - 50vw) 0;
  background:linear-gradient(90deg,#4B16B8,#7B2FF7);
  padding:8px 12px;
  display:flex;
  justify-content:center;
}
.copyright p{
  text-align:center!important;
  color:#fff!important;
  font-size:12px!important;
  margin:0!important;
}

/* SUBPÁGINAS */
.sub_hero{
  padding:130px 8% 75px;
  background:radial-gradient(circle at 80% 25%,#eadfff 0,#fff 45%);
  text-align:center;
}
.sub_hero_content{
  max-width:850px;
  margin:0 auto;
}
.sub_hero h1{
  font-size:56px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-2px;
}
.sub_hero h1 span{color:var(--purple)}
.sub_hero p{
  font-size:18px;
  line-height:32px;
}
.sub_cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  max-width:1160px;
  margin:0 auto;
}
.video_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:1100px;
  margin:35px auto 0;
}
.video_box{
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.video_box iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:16px;
}
.video_section{
  text-align:center;
  background:#fbf8ff;
}

/* =========================================
   AJUSTES FINALES SOLICITADOS - CHAPA
   ========================================= */

/* Botón Descargar App morado premium */
.btn_app{
  background:linear-gradient(135deg,#6426D9,#7B2FF7)!important;
  color:#fff!important;
  padding:13px 24px!important;
  border-radius:14px!important;
  font-weight:700!important;
  font-size:14px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  box-shadow:0 12px 28px rgba(100,38,217,.25)!important;
  transition:.25s ease!important;
}
.btn_app:hover{
  background:linear-gradient(135deg,#7B2FF7,#6426D9)!important;
  transform:translateY(-2px);
  color:#fff!important;
}

/* Apartados extra de conductores y pasajeros */
.sub_detail_section{
  background:#fff;
  padding-top:55px!important;
  padding-bottom:75px!important;
}
.sub_detail_grid{
  max-width:1160px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.4fr;
  gap:38px;
  align-items:center;
}
.sub_detail_text h2{
  font-size:42px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-1.5px;
}
.sub_detail_text h2 span{color:var(--purple)}
.sub_steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.sub_step{
  background:#fbf8ff;
  border:1px solid #eee5ff;
  border-radius:22px;
  padding:24px 22px;
  box-shadow:0 14px 34px rgba(100,38,217,.08);
}
.sub_step strong{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff;
  margin-bottom:14px;
  font-family:'Sora',sans-serif;
}
.sub_step h4{font-size:18px;margin-bottom:8px}
.sub_step p{font-size:14px;line-height:24px;margin:0}

/* Tutoriales: separación elegante entre bloques */
.passenger_video_section{
  background:#fff!important;
  padding-top:70px!important;
}
.video_box h4{
  margin-top:16px;
  font-size:18px;
  color:#11131A;
}

/* Footer más compacto, más formal y menos alto */
.footer_chapa{
  padding:28px 3% 0!important;
}
.footer_grid{
  grid-template-columns:1.05fr .85fr 1.65fr 1fr!important;
  gap:20px!important;
  align-items:center!important;
}
.footer_logo{
  width:198px!important;
  margin-bottom:5px!important;
}
.footer_chapa p,
.footer_chapa span,
.footer_chapa li{
  font-size:11.5px!important;
  line-height:19px!important;
}
.footer_chapa h3{
  font-size:18px!important;
  margin-bottom:12px!important;
}
.footer_socials{
  margin-top:12px!important;
  gap:10px!important;
}
.footer_socials a{
  width:38px!important;
  height:38px!important;
  font-size:17px!important;
}
.footer_contact li{
  margin-bottom:10px!important;
  gap:10px!important;
}
.footer_contact i{
  font-size:21px!important;
  width:24px!important;
}
.footer_affiliate p{
  margin-bottom:12px!important;
}
.footer_form{
  max-width:720px!important;
  gap:8px!important;
}
.footer_form input,
.footer_form button{
  height:46px!important;
}
.footer_form button{
  width:104px!important;
  min-width:104px!important;
}
.footer_car img{
  max-width:330px!important;
}
.copyright{
  margin-top:22px!important;
  padding:6px 12px!important;
}
.copyright p{
  font-size:11px!important;
  line-height:15px!important;
}

@media(max-width:980px){
  .sub_detail_grid{grid-template-columns:1fr;text-align:center;gap:28px}
  .sub_steps{grid-template-columns:1fr}
  .sub_detail_text h2{font-size:34px}
  .footer_chapa{padding-top:36px!important}
  .footer_grid{grid-template-columns:1fr!important;gap:24px!important;text-align:center!important}
  .footer_form{flex-direction:column!important;max-width:100%!important}
  .footer_form input,.footer_form button{width:100%!important;min-width:0!important}
  .footer_car img{max-width:270px!important}
  .footer_socials{justify-content:center!important}
}
