*{
  box-sizing: border-box;
}

:root{
  --bg: #f5f9ff;
  --bg-grad: radial-gradient(1000px 400px at 80% 0%,rgba(14,165,233,.08),transparent 70%),linear-gradient(180deg,#fbfdff,#eef4fb);
  --ink: #0b1224;
  --muted: #5b6b81;
  --accent: #0ea5e9;
  --accent2: #22c55e;
  --card: #ffffff;
  --ring: rgba(14,165,233,.28);
  --shadow: 0 20px 60px -28px rgba(2,6,23,.35);
}

html,body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  background-image: var(--bg-grad);
  color: var(--ink);
  font: 16px/1.6 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,h2,h3{
  font-family: Montserrat,Inter,system-ui,Arial,sans-serif;
  margin: 0 0 .6rem;
}

p{
  margin: 0;
}

figure {
  all: unset; 
  display: block; 
}

h1{
  font-size: clamp(30px,4.6vw,54px);
  line-height: 1.1;
}

h2{
  font-size: clamp(22px,3.2vw,34px);
}

h3{
  font-size: clamp(18px,2.4vw,22px);
}

a{
  color: var(--ink);
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.container{
  width: min(1200px,92vw);
  margin-inline: auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.btn{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: 1.3rem 3.2rem;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn.primary{
  background: linear-gradient(135deg,var(--accent),#60a5fa 60%, #22c55e);
  color: white;
  border: none;
  box-shadow: 0 10px 30px -10px rgba(14,165,233,.45);
}

.btn.ghost{
  background: transparent;
}

.btn:active{
  transform: translateY(1px);
}


.section{
  padding: 80px 0;
}

.card{
  background: var(--card);
  border: 1px solid rgba(2,6,23,.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}


/* ====== Header ====== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(2,6,23,.06);
  transition: box-shadow .2s;
}

.header[data-shadow="1"]{
  box-shadow: 0 10px 30px -20px rgba(2,6,23,.35);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  min-width: 0;
}

.brand span{
  white-space: nowrap;
}

.mnav{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mnav a{
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.mnav a:hover{
  background: rgba(2,6,23,.05);
  text-decoration: none;
}

.actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem .9rem;
    border: 1px solid #2cb742;
    border-radius: 999px;
    background: #2cb742;
    color: white;
    font-weight: bold;
    width: 192px;
    height: 63px;
    justify-content: center;
}


.burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.12);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  flex: 0 0 auto;
}

.burger span{
  width: 20px;
  height: 2px;
  background: #0b1224;
  border-radius: 2px;
  transition: transform .2s,opacity .2s;
}


/* ====== Hero ====== */
.hero{
  position: relative;
  overflow: hidden;
  /* min-height: 78vh;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(2,6,23,.06);  */
}

.layers .l1,.layers .l2,.layers .l3{
  position: absolute;
  inset: -20% -43%;
  background: radial-gradient(1200px 600px at 70% 20%,rgba(14,165,233,.12),transparent 65%), radial-gradient(800px 400px at 15% 80%,rgba(99,102,241,.12),transparent 60%);
}

.layers .l2{
  filter: blur(40px);
  opacity: .6;
}

.layers .l3{
  filter: blur(80px);
  opacity: .4;
}

.layers .van{
  position: absolute;
  bottom: -10%;
  right: 2%;
  width: min(820px,76vw);
  filter: drop-shadow(0 30px 50px rgba(2,6,23,.2));
  transform: translateZ(0);
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.lead{
  color: var(--muted);
  max-width: 760px;
  margin: 21px 0px;
}

.benefits{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 0;
  margin: 16px 0 24px;
  list-style: none;
}

.benefits li{
  border: 1px solid rgba(2,6,23,.12);
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-badge{
  width: 188px;
  height: 106px;
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.hero-badge .num{
  font-weight: 800;
  font-size: 20px;
}

.hero-badge .stars{
  letter-spacing: 2px;
  color: #f5b301;
}

.adv-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 34px;
}

.adv{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}
.adv h3{
  margin: 0;
}

.muted{
  margin-bottom: 15px;
}

.adv img{
width: 28px;
height: 28px;
}


.car-back{
  background-image: url(/assets/img/banner-car-back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 524px;
  height: 250px;
  position: absolute;
  right: 0;
  bottom: 62px;
  z-index: -1;
}

/* ====== Form ====== */
.form .fgrid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
    row-gap: 30px;
}

.form.mini{
display: flex;
gap: 12px;
align-items: flex-start;
flex-wrap: wrap;
}

.pill{
border-radius: 999px;
}

.f{
position: relative;
display: grid;
}

.f > input,.f > textarea{
  background: #ffffff;
  border: 1.5px solid rgba(2,6,23,.12);
  padding: 18px 14px;
  border-radius: 14px;
  color: var(--ink);
  outline: 0;
  transition: border .2s, box-shadow .2s;
  font-size: 17px;
}

.f > textarea{
  min-height: 84px;
}

.f > input:focus,.f > textarea:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 8px var(--ring);
}

#callbackForm2 label{
  margin-bottom: 20px;
}

.f > span{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0 6px;
  background: transparent;
  color: var(--muted);
  transform-origin: left top;
  transition: transform .15s, color .15s;
}

.f > input:focus + span,.f > input:not(:placeholder-shown) + span,
.f > textarea:focus + span,.f > textarea:not(:placeholder-shown) + span{

  transform: translateY(-14px) scale(.85);
  color: var(--accent);
;
}

.f .suggest-list{
position: absolute;
z-index: 20;
background: #fff;
border: 1.5px solid rgba(2,6,23,.12);
border-radius: 14px;
margin-top: 52px;
max-height: 260px;
overflow: auto;
box-shadow: var(--shadow);
width: 100%;
}

.f .suggest-item{
padding: 10px 12px;
border-bottom: 1px solid rgba(2,6,23,.06);
cursor: pointer;
}

.f .suggest-item:last-child{
  border-bottom: 0;
}

.f .suggest-item:hover{
  background: rgba(2,6,23,.04);
}

.span-2{
grid-column: span 2;
}

.agree{
  display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 43px;
}

.form-actions{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 26px;
}

.whatsapp-msg{

}

.toast{
margin-top: 10px;
color: #16a34a;
min-height: 1.2em;
}

.hp{
position: absolute!important;
left: -9999px!important;
top: -9999px!important;
}


/* ====== Fleet ====== */
.fleet-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.img-card{
padding: 0;
overflow: hidden;
}

.img-card img{
width: 100%;
aspect-ratio: 16/10;
object-fit: cover;
transition: transform .5s;
}

.img-card:hover img{
  transform: scale(1.04);
}

.img-card figcaption, .cards3 figcaption{
padding: 14px 16px;
}

.img-card h3, .cards3 h3{
margin-bottom: 4px;
}

.img-card ul, .cards3 ul{
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
}

.cards3 ul{
  margin-bottom: 10px;
}

.cards3 figcaption{
  padding-bottom: 0;
}


/* ====== Services ====== */
.strip{
/* background: radial-gradient(1000px 400px at 80% 0%,rgba(14,165,233,.08),transparent 70%),linear-gradient(180deg,#eef7ff,#eaf4fb); */
}

.cards3{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 16px;
}

.services .price{
padding: 0;
overflow: hidden;
}

.services .thumb{
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}


.services .price h3{
padding-top: 12px;
}

.ul{
margin: 8px 0 14px 18px;
color: var(--muted);
}

.price .p{
font-weight: 800;
font-size: 22px;
margin: 0 0 12px;
}


/* ====== Reviews ====== */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.review{
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .06);
  border-radius: 16px;
  padding: 26px 16px;
  box-shadow: var(--shadow);
}

.row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}

.space{
justify-content: space-between;
}

.who{
display: flex;
align-items: center;
gap: 10px;
}

.who img{
width: 36px;
height: 36px;
border-radius: 50%;
}

.stars{
letter-spacing: 2px;
color: #f5b301;
}


/* ====== FAQ ====== */
.faq-search{
display: flex;
justify-content: flex-end;
margin-bottom: 12px;
}

.faq-search input{
width: 100%;
max-width: 420px;
border: 1.5px solid rgba(2,6,23,.12);
border-radius: 12px;
padding: 10px 12px;
outline: 0;
}

.faq-grid{
    display: flex;
    gap: 25px;
    flex-direction: column;
}

#faq, #phoneform{
  margin-bottom: 80px;
}
#faq h2 {
  margin-bottom: 31px;
}

details{
  border: 1px solid rgba(2,6,23,.12);
  border-radius: 12px;
  padding: 20px 10px;
  background: #fff;
}

summary{
cursor: pointer;
font-weight: 600;
}

details[open]{
box-shadow: var(--shadow);
}

details p{
margin: .4rem 0 0;
color: var(--muted);
}


/* ====== Footer ====== */
.footer{
border-top: 1px solid rgba(2,6,23,.06);
padding: 24px 0 32px;
background: linear-gradient(180deg,#f3f8ff,#eef4fb);
}

.fgrid{
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 16px;
align-items: start;
}

.fbrand{
display: flex;
gap: 12px;
align-items: center;
}

.fnav{
display: grid;
gap: 6px;
}

.fcont{
display: grid;
gap: 8px;
justify-items: end;
}

.tel{
font-weight: 800;
font-size: 20px;
}

.legal{
display: flex;
justify-content: space-between;
gap: 12px;
margin-top: 18px;
color: var(--muted);
border-top: 1px solid rgba(2,6,23,.06);
padding-top: 12px;
}


/* ====== Modal & Lightbox ====== */
.modal{
border: 0;
border-radius: 16px;
padding: 0;
background: #fff;
color: var(--ink);
box-shadow: 0 30px 80px rgba(2,6,23,.25);
}

.modal::backdrop{
  background: rgba(2,6,23,.45);
}

.modal .close{
position: absolute;
top: 6px;
right: 10px;
background: transparent;
border: 0;
color: var(--muted);
font-size: 28px;
cursor: pointer;
}

.modal .modal-body{
padding: 20px;
min-width: min(520px,92vw);
}

.lightbox{
border: 0;
padding: 0;
background: rgba(0,0,0,.9);
}

.lightbox::backdrop{
  background: rgba(0,0,0,.6);
}

.lightbox img{
max-width: 92vw;
max-height: 86vh;
display: block;
margin: auto;
}

.lightbox .close{
position: absolute;
top: 10px;
right: 12px;
color: #fff;
background: transparent;
border: none;
font-size: 40px;
cursor: pointer;
}


/* ====== Mobile sticky ====== */
.mobile-bar{
position: fixed;
z-index: 90;
inset: auto 0 10px;
display: none;
gap: 10px;
justify-content: center;
}

.mobile-bar .btn{
box-shadow: var(--shadow);
}


/* ====== Reveal on scroll ====== */
.reveal{
opacity: 0;
transform: translateY(16px);
transition: opacity .6s, transform .6s;
}

.reveal.visible{
opacity: 1;
transform: none;
}


/* ====== Responsive ====== */
@media (max-width:  1024px){

  .adv-grid,.cards3,.fleet-grid,.reviews-grid,.faq-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:  820px){

  .mnav{
    position: fixed;
    inset: 64px 12px auto 12px;
    background: #fff;
    border: 1px solid rgba(2,6,23,.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
  }

  .burger{
    display: flex;
  }

  .actions{
    display: none;
  }

  .mobile-bar{
    display: flex;
  }

  .hero-cta{
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge{
    left: auto;
    right: 12px;
    bottom: 12px;
  }

  .car-back{
    width: 420px;
    height: 200px;
  }
}

@media (max-width:  560px){

  .car-back{
        width: 225px;
        height: 108px;
        bottom: 0;
  }
  .form .fgrid{
    grid-template-columns: 1fr;
  }

  .span-2{
    grid-column: auto;
  }

  .fgrid{
    gap: 12px;
  }

  .fgrid .f > input,.fgrid .f > textarea{
    padding: 16px 12px;
  }

  .hero{
    min-height: 68vh;
  }

  .fgrid .f > span{
    top: 10px;
  }


  .mnav {
    display:  flex;
    gap:  10px;
    flex-wrap:  wrap;
  }


  .mnav.open {
    display:  flex;
  }

  .adv-grid, .cards3, .fleet-grid, .reviews-grid, .faq-grid{
            grid-template-columns: 1fr;
  }

  .mobsect {
    padding: 16px;
  } 
  .fbrand{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .fgrid{
    gap: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .fcont{
    display: grid;
    gap: 8px;
    justify-items: start;
  }
}


@media (max-width:  1024px) {
  .mnav {
    position:  fixed;
    inset:  64px 12px auto 12px;
    background:  #fff;
    border:  1px solid rgba(2, 6, 23, .12);
    border-radius:  16px;
    box-shadow:  var(--shadow);
    padding:  10px;
    display:  none;
    flex-direction:  column;
    gap:  6px;
  }

  .mnav.open {
    display:  flex;
  }

  .burger {
    display:  flex;
  }

  .actions {
    display:  none;
  }
}

