:root{
  --bg:#0b0f17;
  --card:#121826;
  --text:#e9eefc;
  --muted:#b8c0d9;
  --accent:#0b6bff;
  --accent2:#2dd4bf;
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  background:#fff;
  color:#111;
}

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid #e9e9e9;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-size:26px;
  font-weight:800;
  letter-spacing:-.5px;
}

.logo img{
  height:42px;
  width:auto;
}

.logo span{
  color:var(--accent);
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
}

.menu a:hover{
  color:var(--accent);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.lang-btn{
  border:0;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
}

.menu-btn{
  display:none;
  border:1px solid #ddd;
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
}

/* HERO */
.hero{
  position:relative;
  margin:22px auto 0;
  width:min(1240px, 96%);
  border-radius:32px;
  overflow:hidden;
  height:580px;
  background:#0f172a;
  box-shadow:0 20px 60px rgba(15, 23, 42, .18);
}

.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  background: linear-gradient(135deg,#0f172a,#1e293b,#334155);
  transition: opacity .8s ease;
  opacity:1;
}

.hero-bg-image{
  position:absolute;
  inset:0;
  background-image: var(--hero-image);
  background-position:center;
  background-repeat:no-repeat;
  background-size:115%;
  filter: brightness(1.18) contrast(1.08) saturate(1.1);
  transform: scale(1);
  animation: heroZoom 4.5s ease-in-out forwards;
  will-change: transform;
}

@keyframes heroZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.08); }
}

.overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.18)),
    linear-gradient(90deg, rgba(7,10,18,.50), rgba(7,10,18,.15));
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:0 18px;
}

.hero h2{
  margin:0 0 14px;
  max-width:900px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-1.2px;
  text-shadow:0 8px 30px rgba(0,0,0,.28);
}

.hero p{
  margin:0 0 28px;
  max-width:760px;
  color:rgba(255,255,255,.92);
  font-size:19px;
  line-height:1.6;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:22px;
}

.hero-features{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.feature{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.12);
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:3;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.38);
  cursor:pointer;
  border:1px solid rgba(255,255,255,.22);
  transition:all .25s ease;
}

.dot.active{
  width:28px;
  background:#fff;
}
/* BOTONES GENERALES */
.btn{
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding:13px 20px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  border:2px solid transparent;
  transition:all .25s ease;
}

.btn.primary{
  background:linear-gradient(135deg, #0b6bff, #2b7fff);
  color:#fff;
  box-shadow:0 10px 25px rgba(11,107,255,.28);
}

.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(11,107,255,.34);
}

.btn.outline{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}

.btn.outline:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-2px);
}

.btn.full{
  width:100%;
}

/* SECTIONS */
.section{
  padding:82px 0;
}

.section.alt{
  background:#f6f7fb;
}

.title{
  margin:0 0 12px;
  font-size:40px;
  letter-spacing:-.8px;
  color:#0f172a;
}

.subtitle{
  margin:0 0 32px;
  color:#475569;
  max-width:760px;
  line-height:1.7;
  font-size:17px;
}

/* SCROLL AJUSTE */
#reservar{
  scroll-margin-top:110px;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.service-box{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:18px;
  transition:.2s ease;
}

.service-box:hover{
  transform:translateY(-3px);
  border-color:#dfe6ff;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.service-top{
  display:flex;
  gap:10px;
  align-items:center;
}

.service-top i{
  color:var(--accent);
  font-size:18px;
}

.service-box h3{
  margin:8px 0 8px;
}

.service-box p{
  margin:0;
  color:#333;
}

/* FLEET */
.fleet-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

.fleet-card{
  background:#fff;
  border:1px solid #e9edf5;
  border-radius:22px;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.fleet-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(15,23,42,.10);
  border-color:#d9e4ff;
}

.fleet-img{
  height:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  background: linear-gradient(135deg, #f8fbff, #eef4ff, #f9fbff);
}

.fleet-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.16));
}

.fleet-body{
  padding:18px 18px 20px;
}

.fleet-body h3{
  margin:0 0 8px;
  font-size:21px;
  letter-spacing:-.3px;
  color:#0f172a;
}

.fleet-body p{
  margin:0;
  color:#475569;
  line-height:1.65;
  font-size:15px;
}

/* CARDS + FORM */
.card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:18px;
}

.form .form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.field label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

.field input,
.field textarea,
.field select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid #dadada;
  outline:none;
  background:#fff;
  font-size:15px;
  font-family: Arial, sans-serif;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:#b9c7ff;
  box-shadow:0 0 0 4px rgba(11,107,255,.12);
}

.field textarea{
  resize:vertical;
  min-height:110px;
}

.field.full{
  grid-column:1 / -1;
}

/* UBICACIÓN */
.location-box{
  display:flex;
  gap:10px;
  align-items:center;
}

.location-box input{
  flex:1;
}

.location-btn{
  white-space:nowrap;
  min-width:180px;
}

/* REVIEWS */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.review-img{
  padding:10px;
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.review-img:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.review-img img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:16px;
  align-items:start;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:14px 0 18px;
}

.contact-info i{
  color:var(--accent);
  margin-right:8px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#0b6bff10;
  border:1px solid #dfe6ff;
  color:#0b2a77;
  padding:10px 12px;
  border-radius:14px;
  font-weight:800;
}

.small{
  margin:12px 0 0;
  color:#444;
}

/* FOOTER */
.footer{
  padding:20px 0;
  border-top:1px solid #eee;
  background:#fff;
}

.footer-inner{
  display:flex;
  justify-content:center;
  color:#444;
  font-weight:600;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .fleet-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .reviews-grid{
    grid-template-columns: 1fr;
  }

  .contact{
    grid-template-columns: 1fr;
  }

  .hero{
    height:500px;
  }

  .hero h2{
    font-size:44px;
  }
}

@media (max-width: 720px){
  .menu-btn{
    display:inline-flex;
  }

  .menu{
    position:absolute;
    top:64px;
    right:4%;
    left:4%;
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    padding:12px;
    display:none;
    flex-direction:column;
    gap:10px;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
  }

  .menu.show{
    display:flex;
  }

  .form .form-grid{
    grid-template-columns: 1fr;
  }

  .location-box{
    flex-direction:column;
    align-items:stretch;
  }

  .location-btn{
    width:100%;
    min-width:unset;
  }

  .hero{
    height:450px;
    border-radius:24px;
  }

  .hero h2{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .fleet-grid{
    grid-template-columns: 1fr;
  }

  .section{
    padding:68px 0;
  }

  .title{
    font-size:32px;
  }

  .review-img img{
    height:140px;
  }
}
/* CHAT TESTIMONIOS */
.chat-wrapper{
  padding:20px;
}

.chat-box{
  height:340px;
  overflow-y:auto;
  border:1px solid #e8edf5;
  border-radius:16px;
  background:#fff;
  padding:14px;
  margin-bottom:18px;
}

.chat-empty{
  margin:0;
  color:#64748b;
  text-align:center;
  padding:30px 10px;
}

.chat-item{
  background:#f8fbff;
  border:1px solid #e2ebff;
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:12px;
}

.chat-item:last-child{
  margin-bottom:0;
}

.chat-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}

.chat-name{
  font-weight:800;
  color:#0b6bff;
  font-size:14px;
}

.chat-time{
  font-size:12px;
  color:#64748b;
}

.chat-text{
  margin:0;
  color:#1e293b;
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.chat-form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-bottom:14px;
}

@media (max-width: 720px){
  .chat-box{
    height:300px;
  }
}
/* BOTÓN FLOTANTE WHATSAPP */
.floating-wa-wrap{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.floating-wa-btn{
  width:60px;
  height:60px;
  border:none;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(37,211,102,.35);
  transition:transform .25s ease, box-shadow .25s ease;
}

.floating-wa-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 16px 34px rgba(37,211,102,.42);
}

.floating-wa-menu{
  display:none;
  flex-direction:column;
  gap:10px;
  min-width:240px;
}

.floating-wa-menu.show{
  display:flex;
}

.floating-wa-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  background:#fff;
  color:#111;
  border:1px solid #e8e8e8;
  border-radius:14px;
  padding:12px 14px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition:transform .2s ease, background .2s ease;
}

.floating-wa-menu a:hover{
  transform:translateY(-2px);
  background:#f8fff9;
}

.floating-wa-menu a i{
  color:#25D366;
  font-size:20px;
}

@media (max-width: 720px){
  .floating-wa-wrap{
    right:14px;
    bottom:14px;
  }

  .floating-wa-btn{
    width:56px;
    height:56px;
    font-size:28px;
  }

  .floating-wa-menu{
    min-width:220px;
  }

  .floating-wa-menu a{
    font-size:14px;
  }
}
/* CHAT TESTIMONIOS */
.chat-wrapper{
  padding:20px;
}

.chat-box{
  height:340px;
  overflow-y:auto;
  border:1px solid #e8edf5;
  border-radius:16px;
  background:#fff;
  padding:14px;
  margin-bottom:18px;
}

.chat-empty{
  margin:0;
  color:#64748b;
  text-align:center;
  padding:30px 10px;
}

.chat-item{
  background:#f8fbff;
  border:1px solid #e2ebff;
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:12px;
}

.chat-item:last-child{
  margin-bottom:0;
}

.chat-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}

.chat-name{
  font-weight:800;
  color:#0b6bff;
  font-size:14px;
}

.chat-time{
  font-size:12px;
  color:#64748b;
}

.chat-text{
  margin:0;
  color:#1e293b;
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.chat-form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-bottom:14px;
}

@media (max-width: 720px){
  .chat-box{
    height:300px;
  }
}
/* GALERÍA PROFESIONAL */
.gallery-section{
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gallery-head{
  margin-bottom:28px;
}

.gallery-tag{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:#eaf2ff;
  color:#0b6bff;
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  min-height:320px;
  background:linear-gradient(135deg, #edf4ff, #f8fbff);
  border:1px solid #e7eef9;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
  transition:transform .28s ease, box-shadow .28s ease;
}

.gallery-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(15,23,42,.14);
}

.gallery-card img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.gallery-card:hover img{
  transform:scale(1.06);
}

.gallery-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.68) 100%);
  color:#fff;
}

.gallery-overlay h3{
  margin:10px 0 0;
  font-size:20px;
  line-height:1.2;
}

.gallery-badge{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(8px);
  font-size:12px;
  font-weight:800;
}

@media (max-width: 980px){
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 720px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-card,
  .gallery-card img{
    min-height:260px;
  }
}