:root{
  --brand:#eb611b;      /* naranja */
  --dark:#212127;       /* fondo */
  --mid:#373d4f;        /* gris azulado */
  --light:#e3e2e5;      /* gris claro */
  --white:#ffffff;

  --line: rgba(227,226,229,.12);
  --muted: rgba(227,226,229,.78);
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;

  --grad: linear-gradient(90deg, #ffd400 0%, var(--brand) 60%, #ff7a00 100%);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--light);
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(235,97,27,.20), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(55,61,79,.35), transparent 55%),
    var(--dark);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* ---------- Header ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(33,33,39,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  height:90px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand__img{
  width:250px;        /* tu tamaño ideal */
  height:auto;
  max-width:100%;
  object-fit:contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55));
}
.brand__text{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__tag{font-size:12px; color: var(--muted); font-weight:700}

.nav{display:flex; gap:16px; flex-wrap:wrap; justify-content:center}
.nav a{
  font-size:13px;
  letter-spacing:.5px;
  font-weight:800;
  color: var(--muted);
  padding:10px 10px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav a:hover{
  color: var(--light);
  background: rgba(227,226,229,.06);
  transform: translateY(-1px);
}

.header__cta{display:none}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid var(--line);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(180deg, rgba(235,97,27,1), rgba(235,97,27,.82));
  border-color: rgba(235,97,27,.40);
  color: #120b08;
}
.btn--ghost{
  background: rgba(227,226,229,.05);
  color: var(--light);
}
.btn--full{width:100%}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 56px 0 28px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(33,33,39,.88), rgba(33,33,39,.70)),
    url("../img/hero-bus.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  opacity: .55;
}
.hero::after{
  /* diagonales + línea flecha */
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(235,97,27,.18) 58% 70%, transparent 70% 100%),
    linear-gradient(120deg, transparent 0 68%, rgba(227,226,229,.08) 68% 73%, transparent 73% 100%);
  mix-blend-mode: screen;
  opacity: .85;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(33,33,39,.55);
  color: var(--muted);
  font-size:12px;
  font-weight:900;
}
.badge .bar{
  width:26px;
  height:4px;
  border-radius: 99px;
  background: var(--grad);
}

h1{
  font-size:42px;
  line-height:1.08;
  margin:14px 0 10px;
  letter-spacing: .2px;
}
.lead{
  color: rgba(227,226,229,.88);
  font-size:16px;
  max-width: 62ch;
  margin: 0;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.hero__kpis{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.kpi{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(33,33,39,.55);
}
.kpi strong{display:block; font-weight:1000}
.kpi span{display:block; font-size:12px; color: var(--muted); margin-top:3px}

/* hero card */
.hero__card{
  background: linear-gradient(180deg, rgba(33,33,39,.86), rgba(33,33,39,.62));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero__card h3{margin:2px 0 8px; font-size:18px}
.hero__card p{margin:0 0 12px; color: var(--muted)}
.mini-list__row{
  display:flex; align-items:center; gap:10px;
  padding:10px 0;
  border-top:1px dashed rgba(227,226,229,.15);
}
.dot{
  width:10px; height:10px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(235,97,27,.16);
}
.small{font-size:12px; color: var(--muted)}

/* ---------- Sections ---------- */
.section{padding:52px 0}
.section--alt{
  background: rgba(227,226,229,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; margin-bottom:18px;
}
h2{margin:0; font-size:28px; letter-spacing:.2px}
.section__head p{margin:0; color: var(--muted)}
.hr-accent{
  height:4px;
  width:100%;
  border-radius:99px;
  background: var(--grad);
  opacity:.9;
  margin:10px 0 0;
}

/* ---------- Cards / grids ---------- */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border: 1px solid var(--line);
  background: rgba(33,33,39,.55);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color: var(--muted)}
.card .tag{
  display:inline-flex;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(235,97,27,.35);
  background: rgba(235,97,27,.10);
  font-weight:900;
  font-size:12px;
  color: rgba(227,226,229,.95);
}

/* split */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(33,33,39,.55);
  padding:16px;
}
.panel p{color: var(--muted); margin:8px 0 0}
.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.list li{
  padding:7px 0;
  color: var(--muted);
}

/* image grid */
.imggrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.thumb{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  background: rgba(33,33,39,.55);
}
.thumb img{width:100%; height:220px; object-fit:cover}
.thumb .cap{
  padding:12px;
  color: var(--muted);
  font-size:12px;
  border-top:1px solid var(--line);
}

/* CTA strip */
.cta-strip{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border: 1px solid rgba(235,97,27,.25);
  background: linear-gradient(180deg, rgba(235,97,27,.10), rgba(33,33,39,.55));
  border-radius: var(--radius);
  padding:14px;
}
.cta-strip strong{display:block; font-size:16px}
.cta-strip span{display:block; color: var(--muted); font-size:13px; margin-top:2px}

/* ---------- Contact ---------- */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.contact__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.contact__item{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px;
  background: rgba(33,33,39,.55);
  transition: transform .12s ease;
}
.contact__item:hover{transform: translateY(-1px)}
.contact__item span{
  display:block;
  color: var(--muted);
  font-size:12px;
  margin-top:6px;
}

.form{display:grid; gap:12px; margin-top:12px}
label{
  display:grid;
  gap:6px;
  color: var(--muted);
  font-size:13px;
  font-weight:900;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--light);
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(235,97,27,.55);
}

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--line);
  padding:18px 0;
  color: var(--muted);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

/* WhatsApp float */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight:1000;
  background: linear-gradient(180deg, rgba(235,97,27,1), rgba(235,97,27,.82));
  color:#120b08;
  box-shadow: var(--shadow);
  border: 1px solid rgba(235,97,27,.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero__grid, .split, .contact{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .contact__grid{grid-template-columns:1fr}
  .imggrid{grid-template-columns:1fr}
  .thumb img{height:200px}
  h1{font-size:34px}
  .header__cta{display:inline-flex}
}

/* Banner flota (responsive) */
.flota-banner{
  margin-top:40px;
  overflow:hidden;
  border-radius:16px;
}

.flota-banner img{
  width:100%;
  height:420px;       /* Desktop */
  object-fit:cover;
  object-position:center;
  display:block;
}

/* Tablet */
@media (max-width: 980px){
  .flota-banner img{
    height:300px;
  }
  .brand__img{ width:220px; }
}

/* Móvil */
@media (max-width: 520px){
  .flota-banner{
    margin-top:24px;
    border-radius:12px;
  }
  .flota-banner img{
    height:220px;
  }
  .brand__img{ width:180px; }
}

/* ---- Turismo ---- */
.tour-hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}

.tour-hero__copy{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(33,33,39,.55);
  padding:18px;
}

.tour-hero__copy h3{margin:0 0 8px}
.tour-hero__copy p{margin:0 0 12px; color: var(--muted)}

.tour-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 14px;
}
.tour-chip{
  border:1px solid rgba(235,97,27,.35);
  background: rgba(235,97,27,.10);
  color: rgba(227,226,229,.95);
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius: 999px;
}

.tour-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

.tour-hero__banner{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(235,97,27,.18) 58% 70%, transparent 70% 100%),
    linear-gradient(120deg, transparent 0 68%, rgba(227,226,229,.08) 68% 73%, transparent 73% 100%),
    rgba(33,33,39,.55);
  overflow:hidden;
  padding:18px;
}

.tour-banner__frame{
  border:1px solid rgba(227,226,229,.10);
  border-radius: 14px;
  padding:16px;
  background: rgba(0,0,0,.15);
}
.tour-banner__title{font-weight:1000; letter-spacing:.4px}
.tour-banner__line{
  height:4px;
  border-radius:99px;
  background: var(--grad);
  margin:10px 0;
}
.tour-banner__hint{color: var(--muted); font-size:13px}

/* Cards tours */
.tour-card{
  border:1px solid var(--line);
  background: rgba(33,33,39,.55);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  margin-bottom:14px;
}
.tour-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.tour-card h3{margin:0}
.tour-meta{margin:6px 0 0; color: var(--muted); font-size:13px; font-weight:700}

/* Tabla precios responsive */
.price-wrap{
  margin-top:12px;
  overflow-x:auto;
  border-radius: 14px;
  border:1px solid rgba(227,226,229,.10);
  background: rgba(0,0,0,.16);
}
.price-table{
  width:100%;
  min-width: 420px;
  border-collapse: collapse;
}
.price-table th, .price-table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(227,226,229,.10);
}
.price-table th{
  text-align:left;
  color: rgba(227,226,229,.92);
  font-weight:1000;
  background: rgba(235,97,27,.08);
}
.price-table td{
  color: var(--muted);
  font-weight:800;
}
.price-table tbody tr:last-child td{border-bottom:none}

@media (max-width: 980px){
  .tour-hero{grid-template-columns:1fr}
}

.btn--whatsapp{
  background: linear-gradient(180deg, #25D366, #1ebe5d);
  border-color: rgba(37,211,102,.4);
  color: #0f2b1c;
}

.btn--whatsapp:hover{
  filter: brightness(1.05);
}

.tour-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}

@media (max-width: 780px){
  .header__inner{
    height:auto;
    padding:10px 0;
    flex-wrap:wrap;         /* permite bajar cosas a otra línea */
  }

  .brand{
    width:100%;
    justify-content:center; /* centra el logo */
  }
  .nav{
    width:100%;
    justify-content:center;
    gap:10px;
  }

  .nav a{
    padding:8px 10px;
    font-size:12px;
  }

  .header__cta{
    width:100%;
    justify-content:center;
    margin-top:8px;
  }
}

@media (max-width: 780px){

  .header__inner{
    height:auto;          /* quitamos altura fija */
    padding:10px 0;
    flex-direction:column;
    gap:10px;
  }

  .brand{
    justify-content:center;
  }

  .brand__img{
    width:160px;          /* logo más pequeño en móvil */
  }

  .nav{
    gap:14px;
  }

  .header__cta{
    width:90%;
    justify-content:center;
  }

}