/* Tipografía base */
:root{
  --bg-image: url("assets/vito-road.jpg"); /* Cambia por tu imagen */
  --blk: #0b0b0b;
  --w: #ffffff;
  --w-70: rgba(255,255,255,.7);
  --accent: #ffd54a; /* toque taxi */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--w);
  background: #000;
}

.page{
  position:relative;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}

/* Fondo imagen carretera + Vito */
.bg{
  position:fixed;
  inset:0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.overlay{
  position:fixed;
  inset:0;
  /* degradado para legibilidad */
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.65));
}

/* Cabecera */
.top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding: clamp(16px, 2vw, 28px);
}

.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  color: var(--w);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}

.brand__mark{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  font-weight:800;
}

.brand__text{opacity:.95}

/* Botones */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.7rem 1rem;border-radius:14px;
  font-weight:700;text-decoration:none;border:1px solid transparent;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}

.btn:active{ transform: scale(.98) }

.btn--solid{
  background: var(--accent);
  color:#1a1a1a;
  border-color: rgba(0,0,0,.1);
}

.btn--solid:hover{ filter: brightness(1.05) }

.btn--ghost{
  background: rgba(255,255,255,.08);
  color: var(--w);
  border-color: rgba(255,255,255,.22);
}

.contact{
  display:flex;gap:.6rem;flex-wrap:wrap;
}

/* Hero */
.hero{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  text-align:center;
  padding: clamp(24px, 4vw, 48px);
  margin-block: clamp(24px, 6vw, 72px) auto;
}

.title{
  font-size: clamp(28px, 4.6vw, 60px);
  line-height:1.05;
  margin:0 0 .6rem;
  font-weight:800;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.subtitle{
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--w-70);
  margin:0 0 1.25rem;
}

.notify{
  display:flex;gap:.6rem;justify-content:center;align-items:center;
  width:min(640px, 92vw);
  margin: .4rem auto 1.2rem;
  backdrop-filter: blur(6px);
}

.notify input{
  flex:1;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: var(--w);
  padding:0 14px;
  outline:none;
}

.notify input::placeholder{ color: rgba(255,255,255,.6) }

/* Píldoras */
.highlights{
  list-style:none;margin:1rem 0 0;padding:0;
  display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;
}

.highlights li{
  padding:.48rem .8rem;border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
  font-size: .92rem;
}

/* Footer */
.foot{
  position:relative;z-index:2;
  margin-top:auto;
  padding: 16px;
  text-align:center;
  color: var(--w-70);
}

/* Accesibilidad oculto pero disponible para lectores de pantalla */
.visually-hidden{
  position:absolute!important;
  height:1px;width:1px;overflow:hidden;
  clip:rect(1px, 1px, 1px, 1px);
  white-space:nowrap;
}

/* Responsive */
@media (max-width:560px){
  .contact{ width:100%; justify-content: flex-end; }
  .btn{ padding:.6rem .9rem }
  .notify{ flex-direction:column; align-items:stretch; }
  .notify input{ height:46px }
  .title{ font-weight:800 }
}
