/* Sistema 1 - Cotización */

html {
  height: 100%;
}

.cotizacion-layout {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  background:
    linear-gradient(115deg, rgba(11, 18, 32, 0.68) 0%, rgba(11, 18, 32, 0.42) 42%, rgba(11, 18, 32, 0.2) 100%),
    url("../assets/hero-auto.jpg") center center / cover no-repeat fixed;
  isolation: isolate;
}

.site-bg-carousel,
.cotizacion-layout::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-bg-carousel {
  overflow: hidden;
  z-index: 0;
}

.cotizacion-layout::after {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.site-bg-slide {
  position: absolute;
  inset: -2%;
  opacity: 0;
  transform: scale(1.04);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: siteBgCarousel 32s ease-in-out infinite;
  will-change: opacity, transform;
}

.site-bg-slide--1 {
  opacity: 1;
  background-image: linear-gradient(115deg, rgba(11, 18, 32, 0.72) 0%, rgba(11, 18, 32, 0.46) 42%, rgba(11, 18, 32, 0.22) 100%), url("../assets/hero-auto.jpg");
  animation-delay: 0s;
}

.site-bg-slide--2 {
  background-image: linear-gradient(115deg, rgba(11, 18, 32, 0.74) 0%, rgba(11, 18, 32, 0.48) 42%, rgba(11, 18, 32, 0.24) 100%), url("../assets/bg-carrusel-2.jpg");
  animation-delay: 8s;
}

.site-bg-slide--3 {
  background-image: linear-gradient(115deg, rgba(11, 18, 32, 0.74) 0%, rgba(11, 18, 32, 0.5) 42%, rgba(11, 18, 32, 0.26) 100%), url("../assets/bg-carrusel-3.jpg");
  animation-delay: 16s;
}

.site-bg-slide--4 {
  background-image: linear-gradient(115deg, rgba(11, 18, 32, 0.74) 0%, rgba(11, 18, 32, 0.5) 42%, rgba(11, 18, 32, 0.24) 100%), url("../assets/bg-carrusel-4.jpg");
  animation-delay: 24s;
}

@keyframes siteBgCarousel {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  4% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1.08);
  }
  33% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.cotizacion-layout > header {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cotizacion-layout > #app {
  flex: 1 1 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cotizacion-layout > .corp-footer {
  flex-shrink: 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.cotizacion-main:has(.welcome-screen:not(.hidden)) {
  max-width: 100% !important;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.cotizacion-header-wrap {
  position: relative;
}

.wizard-steps {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.05rem;
  scrollbar-width: none;
}

.wizard-steps::-webkit-scrollbar {
  display: none;
}

.wizard-step {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: max-content;
  padding: 0.24rem 0.42rem;
  border-radius: 9999px;
  border: 1px solid #dbe1ea;
  background: #f8fafc;
  color: #64748b;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wizard-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 0.58rem;
  font-weight: 700;
}

.wizard-step-label {
  font-size: 0.61rem;
  font-weight: 600;
  white-space: nowrap;
}

.wizard-step.is-complete {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.wizard-step.is-complete .wizard-step-number {
  background: #1d4ed8;
  color: #fff;
}

.wizard-step.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

.wizard-step.is-active .wizard-step-number {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.step-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(96, 165, 250, 0.2), transparent 38%),
    rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.step-transition-overlay.is-visible {
  opacity: 1;
}

.step-transition-card {
  width: min(100%, 22rem);
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(191, 219, 254, 0.68);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
  text-align: center;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-transition-overlay.is-visible .step-transition-card {
  transform: translateY(0) scale(1);
}

.step-transition-spinner {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
}

.step-transition-spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 3px solid rgba(37, 99, 235, 0.14);
  border-top-color: #2563eb;
  border-right-color: #60a5fa;
  animation: step-logo-spin 0.95s linear infinite;
}

.step-transition-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  animation: step-logo-float 1.1s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(30, 58, 138, 0.18));
}

.step-transition-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}

.step-transition-title {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.step-transition-prefix.is-hidden {
  display: none;
}

body.step-transition-active {
  overflow: hidden;
}

@keyframes step-logo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes step-logo-float {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-transition-overlay,
  .step-transition-card,
  .step-transition-spinner-ring,
  .step-transition-logo {
    animation: none !important;
    transition: none !important;
  }
}

.dash-main-wrap:has(.welcome-screen:not(.hidden)) {
  padding-top: 0;
  padding-bottom: 0;
}

.welcome-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.welcome-hero-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: calc(100vh - 11rem);
  min-height: calc(100dvh - 11rem);
  background: transparent;
}

.welcome-hero-shell::before,
.welcome-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
}

.welcome-hero-shell::before {
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.72) 0%, rgba(7, 12, 20, 0.48) 44%, rgba(7, 12, 20, 0.22) 100%);
}

.welcome-hero-shell::after {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.28));
}

.welcome-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 460px);
  align-items: center;
  gap: 2rem;
  max-width: 72rem;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem 2rem;
}

.welcome-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
}

.welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-badges {
  margin-bottom: 0.75rem;
  justify-content: flex-start;
}

.welcome-badges span {
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  gap: 0.25rem;
}

.welcome-badges span svg {
  width: 0.75rem;
  height: 0.75rem;
}

.welcome-badge-pill {
  opacity: 0;
  transform: translateY(6px);
  animation: welcomeBadgeFadeIn 0.45s ease-out forwards;
}

@keyframes welcomeBadgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.welcome-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.92);
  text-align: left;
  max-width: 34rem;
}

.welcome-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.875rem;
  align-items: stretch;
}

.welcome-hero-point {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.375rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  min-height: 100%;
  opacity: 0;
  transform: translateY(14px);
  animation: welcomeHeroPointFadeIn 0.7s ease-out forwards;
  animation-delay: 3s;
}

.welcome-hero-point strong {
  display: block;
  margin: 0;
  font-size: 0.9375rem;
  color: #fff;
}

.welcome-hero-point span {
  display: block;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.welcome-hero-point:nth-child(2) {
  animation-delay: 3.6s;
}

.welcome-hero-point:nth-child(3) {
  animation-delay: 4.2s;
}

@keyframes welcomeHeroPointFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-form-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
}

[data-screen="2"],
[data-screen="3"],
[data-screen="5"] {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
}

.welcome-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
}

.welcome-form-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.welcome-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .welcome-form-grid {
    grid-template-columns: 1fr;
  }
}

.welcome-form .input-label {
  margin-bottom: 0.1875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6B7280;
}

.welcome-form .input-field {
  height: 2.375rem;
  padding: 0 0.625rem;
  font-size: 0.9375rem;
}

.welcome-field-error {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #dc2626;
}

.welcome-form .input-field.is-invalid,
.welcome-form .phone-input-wrap.is-invalid {
  border-color: #dc2626;
}

.welcome-form .input-field.is-invalid:focus,
.welcome-form .phone-input-wrap.is-invalid:focus-within {
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.32);
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.phone-input-wrap:focus-within {
  box-shadow: 0 0 0 2px #60A5FA;
  border-color: #1E3A8A;
}

.phone-input-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border-right: 1px solid #d1d5db;
  user-select: none;
  flex-shrink: 0;
}

.welcome-form .phone-input-wrap .phone-input-field {
  flex: 1;
  min-width: 0;
  width: auto;
  border: none;
  border-radius: 0;
  height: 2.375rem;
  box-shadow: none;
}

.welcome-form .phone-input-wrap .phone-input-field:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.welcome-form-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #6B7280;
}

.welcome-checkbox {
  margin: 0;
  font-size: 0.69rem;
  line-height: 1.35;
  gap: 0.45rem;
  align-items: flex-start;
}

.welcome-checkbox input[type="checkbox"] {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.welcome-submit {
  height: 2.875rem;
  margin-top: 0.125rem;
  font-size: 0.875rem;
}

.tasacion-condiciones-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.tasacion-condiciones-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.tasacion-condiciones-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.375rem;
}

.tasacion-condiciones-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.76rem;
  line-height: 1.3;
  color: #334155;
}

.tasacion-condiciones-list li::before {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 0 0 0.125rem rgba(37, 99, 235, 0.16);
}

.tasacion-condiciones-confirm {
  padding-top: 0.125rem;
  border-top: 1px solid rgba(37, 99, 235, 0.12);
}

.brand-tagline-card {
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  padding: 0.875rem 1rem;
  box-shadow: none;
}

.brand-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .welcome-form-card {
    padding: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.9375rem;
  }

  .brand-tagline-card {
    padding: 1rem 1.125rem;
  }
}

.transparency-block {
  background: linear-gradient(to right, #f0f9ff, #eff6ff);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.motivo-options {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.motivo-options .card-selectable {
  padding: 0.5rem 0.75rem;
}

.motivo-options .card-selectable > div {
  gap: 0.625rem;
}

.motivo-options .card-selectable .font-medium {
  font-size: 0.875rem;
  line-height: 1.25;
}

.motivo-options .card-selectable svg {
  width: 1.125rem;
  height: 1.125rem;
}

.vehiculo-resumen-title {
  margin: 0 0 0.875rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0B1220;
  letter-spacing: -0.01em;
  text-align: center;
}

.vehiculo-resumen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1rem;
  margin: 0;
}

.vehiculo-resumen-item {
  min-width: 0;
}

.vehiculo-resumen-item dt {
  margin: 0 0 0.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
}

.vehiculo-resumen-item dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #374151;
}

@media (min-width: 768px) {
  .vehiculo-resumen-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .welcome-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .welcome-hero-copy {
    max-width: none;
  }

  .welcome-hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  [data-screen="2"],
  [data-screen="3"],
  [data-screen="5"] {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .welcome-hero-shell {
    min-height: auto;
  }

  .welcome-hero-grid {
    padding: 1.25rem 1rem 1.5rem;
  }

  .welcome-badges {
    justify-content: flex-start;
  }

  .welcome-title,
  .welcome-lead {
    text-align: left;
  }

}

/* ── Dashboard paso 6 ── */

.dash-main-wrap:has(.dash-screen:not(.hidden)),
body.is-dashboard .dash-main-wrap {
  max-width: 72rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
}

body.is-dashboard header > div {
  max-width: 72rem;
}

.post-send-card {
  max-width: 42rem;
  margin: 1rem auto 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: 1.25rem;
  padding: 2rem 1.25rem;
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.08);
  text-align: center;
}

.post-send-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1e3a8a;
}

.post-send-icon svg {
  width: 2rem;
  height: 2rem;
}

.post-send-title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0b1220;
}

.post-send-lead {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.post-send-copy {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}

.post-send-copy p {
  margin: 0 0 0.75rem;
}

.post-send-destinos {
  color: #1e3a8a;
  font-weight: 600;
}

.post-send-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.875rem;
}

.post-send-actions {
  display: flex;
  justify-content: center;
}

.dash-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .dash-layout {
    grid-template-columns: 280px 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.dash-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .dash-panel { padding: 1.125rem 1.25rem; }
}

.dash-panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1E3A8A;
  margin-bottom: 0.875rem;
}

.dash-panel--safe {
  background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 2px solid #86efac;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.1);
  padding: 1rem 1rem;
  min-height: 9.25rem;
  display: flex;
  flex-direction: column;
}

.dash-panel-title--safe {
  color: #15803d;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
}

.dash-panel-title--safe svg {
  width: 1.125rem;
  height: 1.125rem;
}

.dash-panel--metrics {
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #cbd5e1;
  box-shadow: 0 3px 10px rgba(100, 116, 139, 0.08);
  padding: 1rem 1rem;
  min-height: 9.25rem;
  display: flex;
  flex-direction: column;
}

.dash-panel-title--metrics {
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

.dash-panel-title--metrics svg {
  width: 1.125rem;
  height: 1.125rem;
}

.dash-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.dash-info-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #374151;
}

.dash-info-list li:first-child {
  font-weight: 600;
  color: #111827;
}

.dash-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1rem;
  margin: 0;
}

.dash-vehicle-grid dt {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  margin-bottom: 0.125rem;
}

.dash-vehicle-grid dd {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.dash-vehicle-grid .col-span-2 {
  grid-column: span 2;
}

.dash-tips-list {
  overflow: hidden;
  flex: 0 0 4.65rem;
  height: 4.65rem;
  min-height: 4.65rem;
  max-height: 4.65rem;
  display: flex;
  align-items: center;
}

.dash-tip-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 4.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: #14532d;
  line-height: 1.35;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
  width: 100%;
}

.dash-tip-marquee-item > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .dash-tip-marquee-item {
    font-size: 1.0625rem;
  }
}

.dash-tip-marquee-item.is-entering {
  opacity: 0;
  transform: translateY(10px);
}

.dash-tip-marquee-item.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.dash-tip-marquee-item svg {
  flex-shrink: 0;
  margin-top: 0;
  color: #16A34A;
  width: 1.25rem;
  height: 1.25rem;
}

.dash-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #166534;
  line-height: 1.4;
}

.dash-tip-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #16A34A;
}

.dash-similares-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dash-similares-featured {
  display: block;
}

.similar-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #dbeafe;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

@media (min-width: 640px) {
  .similar-featured-card {
    grid-template-columns: minmax(220px, 40%) 1fr;
    min-height: 220px;
  }
}

.similar-featured-media {
  position: relative;
  background: #0f172a;
  min-height: 180px;
}

/* Video de fondo + logo de marca */
.brand-video-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  background: #0f172a;
}

.brand-video-card__media {
  position: absolute;
  inset: 0;
}

.brand-video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-video-card__logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.brand-video-card__logo-wrap #imagenLogo {
  display: contents;
}

.brand-video-card__logo {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

@media (min-width: 640px) {
  .brand-video-card,
  .similar-featured-media {
    min-height: 220px;
  }
}

.similar-featured-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.similar-featured-img--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.8125rem;
  min-height: 180px;
}

.similar-featured-badge {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.similar-featured-body {
  padding: 1rem 1.125rem 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.similar-featured-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.similar-featured-meta {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #64748b;
}

.similar-featured-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid #dbeafe;
}

.similar-featured-spec {
  min-width: 0;
}

.similar-featured-spec--full {
  grid-column: 1 / -1;
}

.similar-featured-spec dt {
  margin: 0 0 0.2rem;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.similar-featured-spec dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  word-break: break-word;
}

.similar-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 1rem;
}

.similar-price-grid--two {
  grid-template-columns: 1fr;
}

.similar-price-grid--single {
  grid-template-columns: 1fr;
}

@media (min-width: 400px) {
  .similar-price-grid--two {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

@media (max-width: 767px) {
  .similar-featured-specs {
    grid-template-columns: 1fr;
  }
}

.similar-price-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
}

.similar-price-item--highlight {
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
  text-align: center;
}

.similar-price-item dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
}

.similar-price-item dd {
  margin-top: 0.375rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.15;
}

.similar-price-item--highlight dd {
  color: #2563eb;
  font-size: 1.6rem;
}

@media (min-width: 640px) {
  .similar-price-item dd {
    font-size: 1.25rem;
  }

  .similar-price-item--highlight dd {
    font-size: 1.375rem;
  }
}

.dash-similares-row::-webkit-scrollbar {
  height: 4px;
}

.dash-similares-row::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 9999px;
}

.dash-panel--similares {
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 100%);
  border: 2px solid #93c5fd;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  padding: 1.25rem 1.125rem;
}

.dash-panel-title--similares {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1E3A8A;
  margin-bottom: 1rem;
}

.dash-panel-title--similares svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563EB;
}

@media (min-width: 768px) {
  .dash-panel-title--similares {
    font-size: 1.1875rem;
  }
}

.similar-car-card {
  flex: 0 0 160px;
  border-radius: 0.625rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .similar-car-card { flex: 1; min-width: 0; }
}

.similar-car-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.similar-car-card .similar-body {
  padding: 0.625rem 0.75rem;
}

.similar-car-card .similar-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
}

.similar-car-card .similar-meta {
  font-size: 0.6875rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.similar-car-card .similar-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563EB;
  margin-top: 0.375rem;
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.dash-metric {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  padding: 0.875rem 0.5rem;
  text-align: center;
}

.dash-metric-value {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1E3A8A;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .dash-metric-value { font-size: 1.625rem; }
}

.dash-metric-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  margin-top: 0.125rem;
}

.dash-metric-desc {
  display: block;
  font-size: 0.625rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

.dash-metrics-list {
  overflow: hidden;
  flex: 0 0 4.65rem;
  height: 4.65rem;
  min-height: 4.65rem;
  max-height: 4.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-metric-marquee-item {
  width: 100%;
  min-height: 4.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 0.7rem 0.75rem;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.dash-metric-marquee-item.is-entering {
  opacity: 0;
  transform: translateY(10px);
}

.dash-metric-marquee-item.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.dash-metric-marquee-item .dash-metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #1E3A8A;
  letter-spacing: -0.02em;
}

.dash-metric-marquee-item .dash-metric-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0.12rem;
}

.dash-metric-marquee-item .dash-metric-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 0.08rem;
}

.dash-metric-marquee-item--copy {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-color: #cbd5e1;
  padding: 0.85rem 0.9rem;
}

.dash-metric-message {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e3a8a;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .dash-metric-marquee-item .dash-metric-value {
    font-size: 2.25rem;
  }

  .dash-metric-marquee-item .dash-metric-label {
    font-size: 1rem;
  }

  .dash-metric-message {
    font-size: 1.03rem;
  }
}

.dash-desglose-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
  margin-top: 0;
  opacity: 0;
}

.dash-desglose-wrapper.is-open {
  grid-template-rows: 1fr;
  margin-top: 0.125rem;
  margin-bottom: 0.5rem;
  opacity: 1;
}

.dash-desglose-content {
  overflow: hidden;
}

.dash-desglose {
  margin: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
}

.dash-desglose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.dash-desglose-wrapper.is-open .dash-chevron,
.dash-desglose-btn.is-active .dash-desglose-btn-icon {
  transform: rotate(180deg);
}

.dash-chevron,
.dash-desglose-btn-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9ca3af;
  flex-shrink: 0;
}

.dash-offer-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1rem;
  margin-bottom: 0.25rem;
}

.dash-offer-block {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}

.dash-desglose-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.875rem;
  margin-bottom: 0.25rem;
}

.dash-desglose-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  line-height: 1.35;
  text-align: center;
  max-width: 100%;
}

.dash-desglose-btn-info {
  color: #93c5fd;
  flex-shrink: 0;
}

.dash-desglose-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.dash-desglose-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.25);
}

.dash-desglose-btn-icon {
  color: rgba(255, 255, 255, 0.85);
}

.dash-offer-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: center;
}

.dash-offer-card {
  background: linear-gradient(135deg, #0B1220 0%, #1E3A8A 100%);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.dash-offer-label {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .dash-offer-price { font-size: 3.5rem; }
  .dash-offer-label { font-size: 1.0625rem; }
  .dash-offer-card { padding: 1.75rem 1.5rem; }
}

.dash-offer-range {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.dash-offer-note {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.625rem;
}

.dash-flow-title {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.dash-flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  --dash-flow-step-gap: 0.5rem;
  gap: var(--dash-flow-step-gap);
  margin-top: 0.95rem;
  padding-top: 0.2rem;
  text-align: center;
}

.dash-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: calc(50% + 1rem);
  width: calc(100% + var(--dash-flow-step-gap) - 2rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  z-index: 0;
  pointer-events: none;
}

.dash-flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.dash-flow-step.is-current {
  color: #ffffff;
}

.dash-flow-step-dot {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #152347;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #dbeafe;
  flex-shrink: 0;
}

.dash-flow-step.is-current .dash-flow-step-dot {
  background: #4ade80;
  border-color: rgba(255, 255, 255, 0.36);
  color: #052e16;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.14);
}

.dash-flow-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.25;
  max-width: 7rem;
}

@media (max-width: 639px) {
  .dash-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
  }

  .dash-flow-step::after {
    display: none;
  }
}

.dash-oferta-bonus {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-oferta-bonus-label {
  margin-bottom: 0.25rem;
}

.dash-offer-price--bonus {
  font-size: 1.75rem;
  color: #fde047;
  text-align: center;
}

@media (min-width: 768px) {
  .dash-offer-price--bonus { font-size: 2rem; }
}

.dash-oferta-bonus-note {
  margin-top: 0.375rem;
  color: rgba(253, 224, 71, 0.65);
}

.dash-offer-primary-cta {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid rgba(34, 197, 94, 0.22);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.08);
}

.dash-cta-encourage {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #166534;
  letter-spacing: -0.01em;
}

.dash-cta-reassurance {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

@keyframes ctaHeroPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(22, 163, 74, 0.45),
      0 16px 34px rgba(22, 163, 74, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(22, 163, 74, 0),
      0 20px 40px rgba(22, 163, 74, 0.34);
  }
}

@keyframes ctaHeroShine {
  0% { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
  18% { opacity: 0.55; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes ctaHeroArrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.dash-offer-primary-cta .btn-action-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 4.15rem;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 52%, #15803d 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  animation: ctaHeroPulse 2.4s ease-in-out infinite;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.dash-offer-primary-cta .btn-action-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 100%
  );
  transform: translateX(-130%) skewX(-18deg);
  animation: ctaHeroShine 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.dash-offer-primary-cta .btn-action-hero.is-countdown,
.dash-offer-primary-cta .btn-action-hero.is-loading,
.dash-offer-primary-cta .btn-action-hero.is-ready {
  animation: none;
  overflow: hidden;
  transform: none;
  filter: none;
}

.dash-offer-primary-cta .btn-action-hero.is-countdown::after,
.dash-offer-primary-cta .btn-action-hero.is-loading::after,
.dash-offer-primary-cta .btn-action-hero.is-ready::after {
  animation: none;
  opacity: 0;
  transform: none;
}

.dash-offer-primary-cta .btn-action-hero.is-countdown .btn-action-hero__glow,
.dash-offer-primary-cta .btn-action-hero.is-loading .btn-action-hero__glow,
.dash-offer-primary-cta .btn-action-hero.is-ready .btn-action-hero__glow {
  display: none;
}

.dash-offer-primary-cta {
  overflow: hidden;
  max-width: 100%;
}

.btn-action-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.btn-action-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.btn-action-hero__countdown {
  position: relative;
  z-index: 1;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  min-width: 2.85rem;
  margin-left: auto;
  padding-left: 0.5rem;
  font-size: 2.125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-align: right;
}

.btn-action-hero__countdown:not([hidden]) {
  display: flex;
}

.btn-action-hero__label {
  font-size: 1.0625rem;
  line-height: 1.2;
}

.btn-action-hero__sub {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
}

.btn-action-hero__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: ctaHeroArrowNudge 1.8s ease-in-out infinite;
}

.btn-action-hero__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
}

.dash-offer-primary-cta .btn-action-hero:hover {
  transform: translateY(-2px) scale(1.015);
  filter: saturate(1.06) brightness(1.03);
  animation-play-state: paused;
}

.dash-offer-primary-cta .btn-action-hero:active {
  transform: translateY(0) scale(0.995);
}

.dash-offer-primary-cta .btn-action-hero:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
}

.dash-offer-primary-cta .btn-action-hero:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  animation: none;
  transform: none;
}

.dash-offer-primary-cta .btn-action-hero.is-countdown {
  opacity: 1;
  cursor: pointer;
  animation: ctaHeroPulse 2.4s ease-in-out infinite;
}

.dash-offer-primary-cta .btn-action-hero.is-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.2) var(--cta-countdown-progress, 0%),
    transparent var(--cta-countdown-progress, 0%),
    transparent 100%
  );
  transition: background 0.35s ease;
}

.btn-action-hero.is-countdown .btn-action-hero__icon {
  display: none;
}

.btn-action-hero.is-countdown .btn-action-hero__label {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
}

.btn-action-hero.is-countdown .btn-action-hero__sub {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.95;
}

.btn-action-hero.is-countdown .btn-action-hero__countdown {
  font-size: 2.375rem;
}

@media (min-width: 640px) {
  .btn-action-hero.is-countdown .btn-action-hero__label {
    font-size: 1.125rem;
  }

  .btn-action-hero.is-countdown .btn-action-hero__sub {
    font-size: 0.9375rem;
  }

  .btn-action-hero.is-countdown .btn-action-hero__countdown {
    font-size: 2.625rem;
    min-width: 3.25rem;
  }
}

.dash-offer-primary-cta .btn-action-hero:disabled::after,
.dash-offer-primary-cta .btn-action-hero:disabled .btn-action-hero__icon {
  animation: none;
}

@media (min-width: 640px) {
  .dash-offer-primary-cta .btn-action-hero {
    min-height: 4.35rem;
    padding: 0.95rem 1.15rem 0.95rem 1.25rem;
  }

  .btn-action-hero__label {
    font-size: 1.125rem;
  }

  .btn-action-hero__sub {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dash-offer-primary-cta .btn-action-hero,
  .dash-offer-primary-cta .btn-action-hero::after,
  .btn-action-hero__icon {
    animation: none !important;
  }

  .dash-offer-primary-cta .btn-action-hero {
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.28);
  }
}

.dash-offer-primary-cta .btn-action:not(.btn-action-hero) {
  width: 100%;
  min-height: 3.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 32px rgba(22, 163, 74, 0.24);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.dash-offer-primary-cta .btn-action:not(.btn-action-hero):hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 36px rgba(22, 163, 74, 0.28);
  filter: saturate(1.04);
}

.dash-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.dash-cta-row .btn-action,
.dash-cta-row .btn-secondary {
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .dash-cta-row .btn-action,
  .dash-cta-row .btn-secondary {
    font-size: 0.9375rem;
  }
}

.dash-cta-policy-msg {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fca5a5;
  text-align: center;
  margin-top: 0.25rem;
}

.dash-cta-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: saturate(0.7);
}

@media (max-width: 1023px) {
  .dash-layout {
    display: flex;
    flex-direction: column;
  }

  .dash-sidebar { order: 2; }
  .dash-main { order: 1; }
}

/* Espacio al final del dashboard — compacto */
body.is-dashboard .dash-screen {
  padding-bottom: 0.5rem;
}

body.is-dashboard.desglose-open .dash-main-wrap {
  padding-bottom: 2rem;
}

/* Dashboard oferta — menos márgenes verticales */
body.is-dashboard .cotizacion-header-wrap {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

body.is-dashboard .progress-track {
  margin-top: 0.25rem;
}

body.is-dashboard .wizard-steps {
  margin-top: 0.25rem;
}

body.is-dashboard .dash-layout,
body.is-dashboard .dash-main,
body.is-dashboard .dash-sidebar {
  gap: 0.4rem;
}

body.is-dashboard .dash-panel {
  padding: 0.625rem 0.75rem;
}

body.is-dashboard .dash-panel-title {
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

body.is-dashboard {
  --dash-similares-stack-height: 18.5rem;
}

@media (min-width: 640px) {
  body.is-dashboard {
    --dash-similares-stack-height: 21.5rem;
  }
}

body.is-dashboard .dash-panel--datos {
  min-height: calc(var(--dash-similares-stack-height) - 9.25rem - 0.4rem);
  padding: 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.is-dashboard .dash-panel--datos .dash-panel-title {
  margin-bottom: 0.55rem;
  padding-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
  border-bottom: 1px solid rgba(30, 58, 138, 0.15);
}

body.is-dashboard .dash-panel--datos .dash-panel-title svg {
  width: 1.125rem;
  height: 1.125rem;
}

body.is-dashboard .dash-info-list {
  gap: 0.7rem;
  flex: 1;
  justify-content: center;
}

body.is-dashboard .dash-info-list li {
  font-size: 0.8125rem;
  line-height: 1.35;
}

@media (min-width: 640px) {
  body.is-dashboard .dash-info-list li {
    font-size: 0.875rem;
  }
}

body.is-dashboard .dash-panel--safe,
body.is-dashboard .dash-panel--metrics {
  min-height: 9.25rem;
  padding: 0.9rem 0.95rem;
}

body.is-dashboard .dash-panel-title--safe,
body.is-dashboard .dash-panel-title--metrics {
  margin-bottom: 0.55rem;
  padding-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
}

body.is-dashboard .dash-panel-title--safe {
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
}

body.is-dashboard .dash-panel-title--metrics {
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

body.is-dashboard .dash-panel-title--safe svg,
body.is-dashboard .dash-panel-title--metrics svg {
  width: 1.125rem;
  height: 1.125rem;
}

body.is-dashboard .dash-tips-list,
body.is-dashboard .dash-metrics-list {
  flex: 0 0 4.65rem;
  height: 4.65rem;
  min-height: 4.65rem;
  max-height: 4.65rem;
}

body.is-dashboard .dash-panel--similares {
  padding: 1.15rem 1.2rem;
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  min-height: var(--dash-similares-stack-height);
  box-sizing: border-box;
}

body.is-dashboard .dash-panel-title--similares {
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #1E3A8A;
}

body.is-dashboard .dash-panel-title--similares svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (min-width: 768px) {
  body.is-dashboard .dash-panel-title--similares {
    font-size: 1.3125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
  }

  body.is-dashboard .dash-panel-title--similares svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

body.is-dashboard .similar-featured-card {
  min-height: 184px;
  grid-template-columns: minmax(112px, 36%) 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  body.is-dashboard .similar-featured-card {
    grid-template-columns: minmax(180px, 38%) 1fr;
    min-height: 240px;
  }
}

body.is-dashboard .similar-featured-media {
  min-height: 0;
  height: 100%;
}

body.is-dashboard .brand-video-card,
body.is-dashboard .similar-featured-img,
body.is-dashboard .similar-featured-img--placeholder {
  min-height: 100%;
  height: 100%;
}

body.is-dashboard .brand-video-card {
  min-height: 184px;
}

@media (min-width: 640px) {
  body.is-dashboard .brand-video-card {
    min-height: 240px;
  }
}

body.is-dashboard .brand-video-card__logo-wrap {
  padding: 1rem;
}

body.is-dashboard .brand-video-card__logo {
  max-width: 92%;
  max-height: 92%;
}

body.is-dashboard .similar-featured-body {
  padding: 1rem 1.05rem 1.1rem;
  gap: 0.7rem;
  justify-content: center;
}

body.is-dashboard .similar-featured-specs {
  padding: 0.85rem 0.95rem;
  gap: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767px) {
  body.is-dashboard .similar-featured-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.is-dashboard .similar-featured-spec dt {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

body.is-dashboard .similar-featured-spec dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 640px) {
  body.is-dashboard .similar-featured-spec dt {
    font-size: 0.72rem;
  }

  body.is-dashboard .similar-featured-spec dd {
    font-size: 1.0625rem;
  }
}

body.is-dashboard .similar-price-grid {
  margin-top: 0.5rem;
  gap: 0.4rem;
}

body.is-dashboard .similar-price-item {
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
}

body.is-dashboard .similar-price-item dt {
  font-size: 0.6875rem;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

body.is-dashboard .similar-price-item dd,
body.is-dashboard .similar-price-item--highlight dd {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  body.is-dashboard .similar-price-item dd,
  body.is-dashboard .similar-price-item--highlight dd {
    font-size: 1.25rem;
  }
}

body.is-dashboard .dash-offer-block {
  gap: 0.5rem;
}

body.is-dashboard .dash-offer-card {
  padding: 1.15rem 1rem 1rem;
  gap: 0.85rem;
}

body.is-dashboard .dash-offer-label {
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.2;
}

body.is-dashboard .dash-offer-price {
  font-size: 2.25rem;
  line-height: 1.05;
}

@media (min-width: 768px) {
  body.is-dashboard .dash-offer-price {
    font-size: 2.875rem;
  }

  body.is-dashboard .dash-offer-card {
    padding: 1.35rem 1.2rem 1.15rem;
    gap: 1rem;
  }
}

body.is-dashboard .dash-desglose-btn-wrap {
  margin-top: 0;
  margin-bottom: 0;
}

body.is-dashboard .dash-desglose-btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.25;
}

body.is-dashboard .dash-offer-note {
  margin-top: 0;
  line-height: 1.35;
  font-size: 0.6875rem;
}

body.is-dashboard .dash-oferta-bonus {
  margin-top: 0;
  padding-top: 0.5rem;
}

body.is-dashboard .dash-offer-primary-cta {
  margin-top: 0;
  padding: 0.85rem 0.9rem;
}

body.is-dashboard .dash-cta-encourage {
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.25;
}

body.is-dashboard .dash-cta-reassurance {
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  line-height: 1.3;
}

body.is-dashboard .dash-offer-primary-cta .btn-action-hero {
  min-height: 3.15rem;
  padding: 0.55rem 0.75rem;
}

body.is-dashboard .dash-offer-primary-cta .btn-action-hero.is-countdown {
  min-height: 4.25rem;
  padding: 0.7rem 0.85rem;
  overflow: hidden;
}

body.is-dashboard .dash-offer-primary-cta .btn-action-hero.is-ready {
  min-height: 3.75rem;
  overflow: hidden;
}

body.is-dashboard .btn-action-hero__label {
  font-size: 0.9375rem;
  line-height: 1.15;
}

body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__label {
  font-size: 1.0625rem;
  line-height: 1.2;
  font-weight: 800;
}

body.is-dashboard .btn-action-hero__sub {
  font-size: 0.625rem;
  line-height: 1.2;
}

body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__sub {
  font-size: 0.8125rem;
  line-height: 1.3;
}

body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__countdown {
  display: flex !important;
  font-size: 2.35rem;
  min-width: 3rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__label {
    font-size: 1.0625rem;
  }

  body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__sub {
    font-size: 0.875rem;
  }

  body.is-dashboard .btn-action-hero.is-countdown .btn-action-hero__countdown {
    font-size: 2.25rem;
  }
}

body.is-dashboard .dash-flow-title {
  margin-top: 0;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  font-size: 0.6875rem;
}

body.is-dashboard .dash-flow-steps {
  margin-top: 0.25rem;
  padding-top: 0;
}

body.is-dashboard .dash-flow-step {
  gap: 0.2rem;
}

body.is-dashboard .dash-flow-step-dot {
  width: 1.45rem;
  height: 1.45rem;
}

body.is-dashboard .dash-flow-step-dot svg {
  width: 0.75rem;
  height: 0.75rem;
}

body.is-dashboard .dash-flow-step-label {
  font-size: 0.625rem;
  line-height: 1.1;
}

@media (max-width: 639px) {
  body.is-dashboard .dash-flow-steps {
    row-gap: 0.45rem;
  }
}

body.is-dashboard .corp-footer-wrap {
  padding-top: 1rem;
}

body.is-dashboard .corp-footer-grid {
  gap: 1rem;
}

body.is-dashboard .corp-footer-bar {
  padding: 0.75rem 0 1rem;
}

body.is-dashboard .dash-desglose-wrapper.is-open .dash-desglose {
  scroll-margin-bottom: 2.5rem;
}

/* Pie de página corporativo */
.corp-footer {
  background: #0B1220;
  color: #94a3b8;
  width: 100%;
}

.corp-footer-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.25rem 1rem 0;
}

.corp-footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

@media (min-width: 768px) {
  .corp-footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.corp-footer-logo-link {
  display: inline-block;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  margin-bottom: 1rem;
  line-height: 0;
}

.corp-footer-logo {
  height: 1.75rem;
  width: auto;
  display: block;
}

.corp-footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.corp-footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
}

.corp-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.corp-footer-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s ease;
}

.corp-footer-list a:hover {
  color: #fff;
}

.corp-footer-bar {
  padding: 1.125rem 0 max(1.125rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}

@media (min-width: 768px) {
  .corp-footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.corp-footer-bar p {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

.corp-footer-bar-note {
  max-width: 28rem;
  line-height: 1.4;
}

/* Patente estilo placa chilena */
.patente-field {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.patente-field-title {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1220;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .patente-field-title {
    font-size: 1.375rem;
  }
}

.patente-plate {
  position: relative;
  width: min(100%, 18.5rem);
  background: #fff;
  border: 3px solid #111827;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  box-shadow:
    inset 0 0 0 1px #111827,
    0 2px 8px rgba(15, 23, 42, 0.08);
}

.patente-plate.is-valid {
  border-color: #16a34a;
  box-shadow:
    inset 0 0 0 1px #16a34a,
    0 2px 10px rgba(22, 163, 74, 0.16);
}

.patente-plate.is-invalid {
  border-color: #dc2626;
  box-shadow:
    inset 0 0 0 1px #dc2626,
    0 2px 10px rgba(220, 38, 38, 0.14);
}

.patente-plate.is-loading {
  border-color: #2563eb;
}

.patente-plate-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
}

.patente-plate-input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.375rem, 5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
  padding: 0.125rem 0.25rem;
  line-height: 1;
  outline: none;
  caret-color: #1E3A8A;
}

.patente-plate-input::placeholder {
  color: #cbd5e1;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.patente-plate-input:focus {
  outline: none;
}

.patente-plate:focus-within {
  box-shadow:
    inset 0 0 0 1px #111827,
    0 0 0 3px rgba(30, 58, 138, 0.18);
}

.patente-field-hint {
  align-self: stretch;
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

.patente-status-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.patente-status-icon--valid {
  color: #16a34a;
}

.patente-status-icon--invalid {
  color: #dc2626;
}

.patente-status-icon--loading {
  color: #2563eb;
}

.patente-status-msg {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: center;
}

.patente-status-msg.is-error {
  color: #dc2626;
}

/* Odómetro — kilometraje */
.odometer-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.25rem;
}

.odometer-field-title {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1220;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .odometer-field-title {
    font-size: 1.375rem;
  }
}

.odometer-display {
  width: min(100%, 18.5rem);
  background: #f3f4f6;
  border: 2px solid #d1d5db;
  border-radius: 0.625rem;
  padding: 0.75rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.odometer-display-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0.4375rem 0.625rem;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.03) 0,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px,
      transparent 1.25rem
    ),
    #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.odometer-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  text-align: right;
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.3125rem, 4.5vw, 1.625rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111827;
  padding: 0;
  line-height: 1;
  outline: none;
  caret-color: #1E3A8A;
}

.odometer-input::placeholder {
  color: #cbd5e1;
}

.odometer-unit {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6b7280;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 0.0625rem;
}

.odometer-display:focus-within {
  border-color: #93c5fd;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    0 0 0 3px rgba(30, 58, 138, 0.12);
}

.dash-no-cotiza {
  background: linear-gradient(145deg, #1e3a5f 0%, #1e3a8a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.dash-no-cotiza-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fde047;
  margin-bottom: 0.75rem;
}

.dash-no-cotiza-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.625rem;
}

.dash-no-cotiza-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}
