:root {
    --brand: #e67e22;
    --brand-dark: #d35400;
}
.hero-landing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(56, 189, 248, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 20%, rgba(129, 140, 248, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e3a5f 42%, #0369a1 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.35);
}
.hero-landing__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    flex: 1 1 auto;
}
.hero-landing__car {
    flex: 0 0 auto;
    width: clamp(5rem, 14vw, 9rem);
    color: rgba(255, 255, 255, 0.22);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    transition: color 0.25s ease, transform 0.25s ease;
}
.hero-landing:hover .hero-landing__car {
    color: rgba(255, 255, 255, 0.32);
}
.hero-landing__car--classic {
    transform: scaleX(-1) rotate(-2deg);
}
.hero-landing__car--modern {
    transform: rotate(2deg);
}
.hero-landing:hover .hero-landing__car--classic {
    transform: scaleX(-1) rotate(-2deg) translateX(-4px);
}
.hero-landing:hover .hero-landing__car--modern {
    transform: rotate(2deg) translateX(4px);
}
.hero-landing__car svg {
    width: 100%;
    height: auto;
    display: block;
}
.hero-landing .lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.55;
}
.hero-landing__tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}
.btn-hero-primary {
    background: #fff;
    color: #0f172a;
    border: none;
    font-weight: 600;
}
.btn-hero-primary:hover {
    background: #e0f2fe;
    color: #0f172a;
}
.btn-hero-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}
.landing-credits {
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
    letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
    .hero-landing {
        flex-direction: column;
        padding: 2.5rem 1.25rem;
    }
    .hero-landing__car {
        width: 4.5rem;
        order: 0;
    }
    .hero-landing__car--classic { order: -1; }
    .hero-landing__content { order: 0; }
    .hero-landing__car--modern { order: 1; }
}
.stat-card {
    border-left: 4px solid var(--brand);
    transition: transform .15s, box-shadow .15s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .35rem 1rem rgba(0,0,0,.08);
}
.table-actions .btn {
    padding: .2rem .45rem;
    font-size: .85rem;
}
.vehiculo-patente {
    font-family: ui-monospace, monospace;
    font-weight: 700;
    letter-spacing: .05em;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    padding: .15rem .45rem;
    display: inline-block;
}
.timeline-item {
    border-left: 3px solid var(--brand);
    padding-left: 1rem;
    margin-bottom: 1.25rem;
}
.timeline-item.entregado { border-left-color: #198754; }
.timeline-item.cancelado { border-left-color: #dc3545; }
.login-card {
    max-width: 420px;
    margin: 0 auto;
}
.navbar-brand i {
    margin-right: .35rem;
}
.presupuesto-doc-header {
    padding: 0.5rem 0 1rem;
}
.presupuesto-doc-titulo {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    line-height: 1.15;
}
.presupuesto-doc-numero {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.35rem;
}
.orden-estado-form .btn-sm {
    line-height: 1.3;
}
.presupuesto-item-fila {
    display: none;
}
.presupuesto-item-fila td {
    vertical-align: middle;
}
@media print {
    .no-print { display: none !important; }
    .container { max-width: 100% !important; }
    body.pagina-presupuesto .alert { display: none !important; }
    .presupuesto-doc-header {
        padding-top: 0;
        margin-bottom: 1.5rem !important;
    }
    .presupuesto-doc-titulo {
        font-size: 3.5rem;
        font-weight: 800;
    }
    .pagina-presupuesto .card-header { display: none !important; }
    .pagina-presupuesto .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .presupuesto-item-fila {
        display: table-row !important;
    }
    .presupuesto-print-resumen th {
        font-weight: 600;
        padding-right: 1rem;
    }
}
