2026-04-06 06:39:36 +00:00

511 lines
13 KiB
PHP

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@yield('title', 'TAXILANZ Demo | Taxi + recomendaciones + reserva')</title>
<meta name="description" content="@yield('meta_description', 'Demo TAXILANZ: el taxi como punto de entrada para activar recomendaciones útiles y reservas medibles en el momento exacto.')">
<meta name="author" content="TAXILANZ Demo">
<style>
:root {
--bg: #f7f7f1;
--surface: rgba(255, 255, 255, 0.84);
--surface-strong: #ffffff;
--text: #0f172a;
--muted: #64748b;
--line: rgba(15, 23, 42, 0.08);
--accent: #0f766e;
--accent-strong: #115e59;
--accent-soft: rgba(15, 118, 110, 0.12);
--warm: #f59e0b;
--warm-soft: rgba(245, 158, 11, 0.12);
--success: #dcfce7;
--danger: #fef2f2;
--danger-text: #b91c1c;
--shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
--radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background:
radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 22%),
radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 24%),
linear-gradient(180deg, #fcfcf8 0%, #f2f4ef 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
padding: 0.12rem 0.4rem;
border-radius: 8px;
background: rgba(15, 23, 42, 0.06);
font-size: 0.92em;
}
.shell {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}
.topbar {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(18px);
background: rgba(247, 247, 241, 0.82);
border-bottom: 1px solid var(--line);
}
.topbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 16px 0;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
font-weight: 800;
letter-spacing: -0.03em;
}
.brand-mark {
width: 40px;
height: 40px;
border-radius: 14px;
background: linear-gradient(135deg, var(--accent), #14b8a6);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 16px 32px rgba(15, 118, 110, 0.18);
}
.brand-copy small {
display: block;
color: var(--muted);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.16em;
}
.nav-links {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 18px;
color: var(--muted);
font-size: 14px;
}
.nav-links a:hover { color: var(--text); }
main { padding: 42px 0 80px; }
.hero {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
gap: 24px;
margin-bottom: 28px;
}
.card {
background: var(--surface);
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow);
backdrop-filter: blur(18px);
}
.hero-copy {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.03em;
background: var(--accent-soft);
color: var(--accent);
}
h1, h2, h3 {
margin: 0 0 12px;
letter-spacing: -0.04em;
}
h1 {
font-size: clamp(2.5rem, 5vw, 4.9rem);
line-height: 0.93;
max-width: 12ch;
}
h2 { font-size: clamp(1.55rem, 3vw, 2.4rem); }
h3 { font-size: 1.12rem; }
p {
margin: 0;
color: var(--muted);
line-height: 1.68;
}
.muted { color: var(--muted); }
.stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.stat {
padding: 18px;
border-radius: 20px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.68);
}
.stat strong {
display: block;
margin-bottom: 6px;
font-size: 1.8rem;
letter-spacing: -0.04em;
}
.stat span {
color: var(--muted);
font-size: 14px;
}
.orb-wrap {
position: relative;
overflow: hidden;
min-height: 100%;
}
.orb-wrap::before,
.orb-wrap::after {
content: "";
position: absolute;
border-radius: 999px;
filter: blur(2px);
}
.orb-wrap::before {
width: 130px;
height: 130px;
inset: auto auto 24px 16px;
background: rgba(15, 118, 110, 0.18);
}
.orb-wrap::after {
width: 170px;
height: 170px;
inset: 16px 18px auto auto;
background: rgba(245, 158, 11, 0.16);
}
.stack {
position: relative;
z-index: 1;
display: grid;
gap: 16px;
}
.mini-card {
background: rgba(255, 255, 255, 0.82);
border: 1px solid rgba(15, 23, 42, 0.06);
border-radius: 22px;
padding: 18px;
}
.mini-card small {
display: block;
margin-bottom: 8px;
color: var(--muted);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.14em;
}
.success {
background: linear-gradient(180deg, rgba(220, 252, 231, 0.92), rgba(255, 255, 255, 0.86));
}
.split,
.cards,
.list,
.offer-meta,
.cta-row {
display: grid;
gap: 16px;
}
.split { grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.list { margin-top: 18px; }
.list-item {
padding: 16px 18px;
border-radius: 18px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.7);
color: var(--text);
}
.list-item p { margin-top: 6px; }
.section { margin-top: 28px; }
.proof-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
.proof-card {
display: grid;
gap: 10px;
align-content: start;
min-height: 100%;
}
.proof-stat {
font-size: clamp(2rem, 5vw, 2.8rem);
letter-spacing: -0.05em;
line-height: 1;
}
.inline-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent-strong);
font-weight: 600;
}
.btn-secondary {
background: rgba(15, 23, 42, 0.92);
color: white;
}
.btn-secondary:hover {
transform: translateY(-1px);
box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}
.offer-card {
display: grid;
gap: 16px;
align-content: start;
}
.offer-visual {
aspect-ratio: 16 / 10;
border-radius: 22px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(245, 158, 11, 0.85));
}
.offer-visual::before,
.offer-visual::after {
content: "";
position: absolute;
border-radius: 999px;
}
.offer-visual::before {
width: 150px;
height: 150px;
background: rgba(255, 255, 255, 0.16);
top: -30px;
right: -10px;
}
.offer-visual::after {
width: 94px;
height: 94px;
background: rgba(15, 23, 42, 0.14);
left: 18px;
bottom: 18px;
}
.offer-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
}
.pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(15, 23, 42, 0.06);
color: var(--text);
font-size: 12px;
font-weight: 700;
}
form { display: grid; gap: 14px; }
label {
display: grid;
gap: 8px;
font-size: 14px;
font-weight: 700;
}
input,
select,
textarea {
width: 100%;
padding: 14px 16px;
border-radius: 16px;
border: 1px solid rgba(15, 23, 42, 0.12);
background: #ffffff;
color: var(--text);
font: inherit;
}
textarea {
min-height: 110px;
resize: vertical;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 20px;
border: 0;
border-radius: 16px;
cursor: pointer;
font: inherit;
font-weight: 800;
color: #fff;
background: linear-gradient(135deg, var(--accent), #14b8a6);
box-shadow: 0 16px 36px rgba(15, 118, 110, 0.24);
}
.btn-secondary {
color: var(--text);
background: rgba(15, 23, 42, 0.06);
box-shadow: none;
}
.btn:hover { transform: translateY(-1px); }
.errors,
.notice {
padding: 16px 18px;
border-radius: 18px;
margin-top: 12px;
}
.errors {
background: var(--danger);
border: 1px solid rgba(239, 68, 68, 0.16);
color: var(--danger-text);
}
.notice {
background: rgba(15, 118, 110, 0.08);
border: 1px solid rgba(15, 118, 110, 0.16);
color: var(--accent-strong);
}
.footer-note {
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--line);
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
color: var(--muted);
font-size: 13px;
}
@media (max-width: 980px) {
.hero,
.split,
.cards,
.proof-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 720px) {
.topbar-inner,
.footer-note {
flex-direction: column;
align-items: flex-start;
}
.stats,
.grid-2 {
grid-template-columns: 1fr;
}
main { padding-top: 28px; }
.card { padding: 22px; }
.nav-links { gap: 12px; }
}
</style>
@stack('head')
</head>
<body>
<header class="topbar">
<div class="shell topbar-inner">
<a href="{{ route('home') }}" class="brand" aria-label="Ir al inicio de TAXILANZ Demo">
<span class="brand-mark" aria-hidden="true"></span>
<span class="brand-copy">
<strong>TAXILANZ Demo</strong>
<small>Taxi sugerencia reserva</small>
</span>
</a>
<nav class="nav-links" aria-label="Navegación principal">
<a href="{{ route('home') }}#request">Pedir taxi</a>
<a href="{{ route('home') }}#how">Cómo funciona</a>
<a href="/admin/login">Panel demo</a>
<a href="{{ route('healthz') }}">Health</a>
</nav>
</div>
</header>
<main>
<div class="shell">
@yield('content')
<footer class="footer-note">
<span>No es un marketplace infinito: activa la mejor propuesta en el momento exacto.</span>
<span>{{ now()->format('Y') }} · Laravel + Filament demo slice</span>
</footer>
</div>
</main>
</body>
</html>