@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --accent: #ea580c;
    --black: #000000;
    --zinc-dark: #09090b;
    --zinc-soft: #18181b;
    --line: rgba(255,255,255,.12);
    --muted: rgba(255,255,255,.68);
    --text: #ffffff;
    --danger: #fb7185;
    --ok: #86efac;
    --shadow: 0 30px 90px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: white;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--accent); }
::selection { background: var(--accent); color: white; }

h1, h2, h3 { letter-spacing: -0.05em; }
img { max-width: 100%; display: block; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
section { position: relative; }

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.btn-outdoor {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outdoor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}
.btn-outdoor:hover::before { left: 100%; }

.public-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(18px, 4vw, 64px);
    background: rgba(0,0,0,.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -.06em;
    text-transform: uppercase;
}
.brand span { font-size: clamp(1.35rem, 2vw, 2rem); }
.brand b { color: var(--accent); text-decoration: underline; text-underline-offset: 5px; }
.brand small { color: rgba(255,255,255,.78); font-weight: 700; letter-spacing: -.04em; }
.nav-links {
    display: flex;
    gap: 28px;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-booking {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(26px, 4vw, 64px);
    align-items: center;
    padding: 118px clamp(18px, 4vw, 64px) 72px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.58), rgba(0,0,0,.88)),
        url("../imagenes/atv.jpg") center / cover no-repeat;
}
.hero-copy { max-width: 680px; }
.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.hero-copy h1 {
    font-size: clamp(3.2rem, 7.5vw, 8.5rem);
    line-height: .82;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}
.hero-copy p {
    margin-top: 22px;
    max-width: 600px;
    color: rgba(255,255,255,.84);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    line-height: 1.5;
}
.hero-actions, .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero-actions { margin-top: 30px; }
.btn {
    min-height: 48px;
    border: 0;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.btn.primary { background: var(--accent); }
.btn.ghost { background: transparent; border: 2px solid rgba(255,255,255,.72); }
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}
.hero-stats div {
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
}
.hero-stats strong { display: block; font-size: 1.5rem; }
.hero-stats span { color: var(--muted); font-size: .84rem; }

.booking-card {
    border-radius: 10px;
    padding: clamp(18px, 2vw, 28px);
    box-shadow: var(--shadow);
}
.booking-card.glass {
    background: rgba(255,255,255,.94);
    color: #18181b;
    border-color: rgba(255,255,255,.7);
    backdrop-filter: blur(18px);
}
.booking-card .eyebrow { color: var(--accent); }
.booking-card .card-head p,
.booking-card .route-summary,
.booking-card .empty,
.booking-card .field small {
    color: #5b5b66;
}
.booking-card .form-section {
    border-top-color: rgba(24,24,27,.12);
}
.booking-card .field span {
    color: #3f3f46;
}
.booking-card input,
.booking-card select,
.booking-card textarea {
    background: #ffffff;
    color: #18181b;
    border-color: rgba(24,24,27,.18);
}
.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(234,88,12,.16);
}
.booking-card .btn.ghost {
    color: #18181b;
    border-color: rgba(24,24,27,.34);
}
.booking-card .route-picker-field select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.card-head h2, .section-title h2, .media-copy h2, .split-copy h2, .lookup-card h2 {
    font-size: clamp(2.1rem, 4vw, 4.7rem);
    line-height: .9;
    text-transform: uppercase;
}
.card-head p, .section-title p, .media-copy p, .split-copy p, .lookup-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.55;
}
.form-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.form-section h3, .cart-panel h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.field.full, .form-grid > .full { grid-column: 1 / -1; }
.field span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.78);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
input, select, textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;
    padding: 11px 12px;
    background: rgba(0,0,0,.46);
    color: white;
    outline: none;
}
select option { color: black; }
textarea { min-height: 88px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(234,88,12,.18);
}
.field small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .75rem;
}
.route-summary {
    margin: 12px 0;
    color: var(--muted);
    line-height: 1.5;
}
.route-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.route-option {
    min-height: 122px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(24,24,27,.14);
    border-radius: 8px;
    background: #fff7ed;
    color: #18181b;
    text-align: left;
    cursor: pointer;
}
.route-option strong {
    font-size: 1rem;
    text-transform: uppercase;
}
.route-option span {
    color: #52525b;
    font-size: .86rem;
    line-height: 1.35;
}
.route-option em {
    align-self: end;
    color: var(--accent);
    font-style: normal;
    font-weight: 900;
}
.route-option.active {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
    box-shadow: 0 14px 30px rgba(234,88,12,.24);
}
.route-option.active span,
.route-option.active em {
    color: #fff;
}
.vehicle-section-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin: 12px 0 10px;
}
.vehicle-section-head span {
    color: #52525b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.vehicle-section-head strong {
    color: #18181b;
    text-align: right;
}
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.transport-card {
    min-height: 128px;
    border: 1px solid rgba(24,24,27,.14);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    color: #18181b;
    text-align: left;
    cursor: pointer;
}
.transport-card.active {
    border-color: var(--accent);
    box-shadow: 0 14px 32px rgba(234,88,12,.2);
}
.transport-card img { width: 100%; height: 72px; object-fit: cover; }
.transport-card span { display: grid; gap: 2px; padding: 10px; }
.transport-card em { color: var(--accent); font-style: normal; font-weight: 900; }
.transport-card small { color: #5b5b66; }
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.checkline {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(24,24,27,.12);
    border-radius: 6px;
    color: #3f3f46;
    background: #fafafa;
}
.checkline input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--accent);
}
.cart-panel {
    margin-top: 18px;
    border: 1px solid rgba(24,24,27,.12);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}
.cart-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: #fff7ed;
}
.cart-head strong { color: var(--accent); font-size: 1.2rem; }
.cart-list { display: grid; gap: 8px; padding: 12px; }
.empty { color: var(--muted); }
.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(24,24,27,.1);
    border-radius: 6px;
    background: #fafafa;
}
.cart-item strong, .cart-item span, .cart-item small { display: block; }
.cart-item span, .cart-item small { color: #5b5b66; margin-top: 3px; }
.cart-item b { display: block; color: var(--accent); white-space: nowrap; }
.remove-cart {
    margin-top: 8px;
    border: 0;
    color: #18181b;
    background: transparent;
    text-decoration: underline;
    cursor: pointer;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}
.summary-grid div {
    padding: 12px;
    border: 1px solid rgba(24,24,27,.12);
    background: #fafafa;
}
.summary-grid span {
    display: block;
    color: #5b5b66;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}
.summary-grid strong { display: block; margin-top: 5px; }
.submit-actions { margin-top: 14px; }
.notice {
    display: none;
    margin-top: 14px;
    padding: 13px;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.45;
}
.notice.show { display: block; }
.notice.ok { color: #dcfce7; background: rgba(22,163,74,.22); border: 1px solid rgba(134,239,172,.25); }
.notice.bad { color: #ffe4e6; background: rgba(225,29,72,.24); border: 1px solid rgba(251,113,133,.25); }
.notice.info { color: #ffedd5; background: rgba(234,88,12,.2); border: 1px solid rgba(251,146,60,.25); }
.notice-link {
    display: inline-flex;
    margin-top: 10px;
    color: white;
    text-decoration: underline;
}

.section-band, .media-section, .split-section, .lookup-section {
    padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 64px);
}
.section-title { max-width: 860px; margin: 0 auto 36px; text-align: center; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.steps-grid article {
    padding: 28px;
    border-radius: 8px;
}
.steps-grid strong {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--accent);
}
.steps-grid h3 { font-size: 1.55rem; text-transform: uppercase; }
.steps-grid p { margin-top: 8px; color: var(--muted); line-height: 1.5; }

.media-section { background: var(--zinc-dark); }
.media-copy {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 32px;
}
.media-copy p { max-width: 460px; }
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.media-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.1);
}
.media-grid img:hover { transform: scale(1.03); }

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 72px);
    align-items: center;
    background: #050505;
}
.split-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow);
}
.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255,255,255,.82);
    list-style: none;
}
.feature-list li {
    padding-left: 18px;
    position: relative;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.lookup-section { background: var(--zinc-dark); }
.lookup-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 10px;
}
.lookup-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 18px;
}
.lookup-result {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.lookup-result div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.lookup-result span { color: var(--muted); }
.lookup-result strong { text-align: right; }

.public-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 28px clamp(18px, 4vw, 64px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #000;
}
.public-footer a { color: white; font-weight: 900; text-transform: uppercase; }

@media (max-width: 1100px) {
    .hero-booking, .split-section { grid-template-columns: 1fr; }
    .booking-card { max-width: 860px; }
    .media-copy { display: block; }
    .media-copy p { margin-top: 12px; }
}
@media (max-width: 820px) {
    .public-nav { align-items: flex-start; }
    .nav-links { display: none; }
    .hero-booking { padding-top: 96px; }
    .form-grid, .route-options, .transport-grid, .extras-grid, .summary-grid, .steps-grid, .media-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .lookup-row { grid-template-columns: 1fr; }
    .cart-item, .public-footer { display: grid; }
    .brand { flex-wrap: wrap; }
    .vehicle-section-head { display: grid; }
    .vehicle-section-head strong { text-align: left; }
}
