/* ===== Oportunidades page ===== */

.op-page {
  min-height: 100vh;
  padding-top: var(--header-h);
  position: relative;
  z-index: 5;
}

/* ── List view ── */
.op-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 36px 100px;
}

.op-hero {
  margin-bottom: 44px;
}
.op-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 16px;
}
.op-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.op-lead {
  font-size: 0.95rem;
  opacity: 0.55;
  max-width: 520px;
  line-height: 1.6;
}

.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
.op-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: white;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.op-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

.op-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(232,184,75,0.10) 0%, rgba(127,181,208,0.07) 100%);
  overflow: hidden;
}
.op-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.op-card:hover .op-card-img img { transform: scale(1.04); }

.op-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.25;
}
.op-card-img img ~ .op-img-placeholder { display: none; }
.op-card-img img.img-error ~ .op-img-placeholder { display: flex; }

/* Badge */
.op-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(232,184,75,0.92);
  color: #000;
  backdrop-filter: blur(4px);
}
.op-badge.badge-red    { background: rgba(215,55,55,0.9);  color: #fff; }
.op-badge.badge-blue   { background: rgba(40,120,200,0.88); color: #fff; }
.op-badge.badge-green  { background: rgba(30,170,85,0.88);  color: #fff; }
.op-badge.badge-purple { background: rgba(130,80,200,0.88); color: #fff; }

.op-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.op-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.op-renta-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 4px;
}
.op-renta-amount {
  font-size: 2.1rem;
  font-weight: 700;
  color: #E8B84B;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.op-renta-amount sub {
  font-size: 0.58em;
  font-weight: 500;
  opacity: 0.65;
  vertical-align: baseline;
}
.op-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.op-price-lista {
  font-size: 0.8rem;
  opacity: 0.35;
  text-decoration: line-through;
}
.op-price-oferta {
  font-size: 0.9rem;
  font-weight: 600;
}
.op-price-savings {
  font-size: 0.72rem;
  color: #5DBA7A;
  font-weight: 600;
}
.op-vigencia {
  font-size: 0.70rem;
  opacity: 0.32;
  margin-top: auto;
  padding-top: 14px;
}
.op-card-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.op-card:hover .op-card-cta { color: white; }

/* Empty / error state */
.op-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  opacity: 0.38;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Loading */
.op-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  opacity: 0.35;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Detail view ── */
.op-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 28px) 36px 100px;
}

.op-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.15s;
}
.op-back:hover { color: white; }

.op-detail-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(232,184,75,0.10) 0%, rgba(127,181,208,0.07) 100%);
  margin-bottom: 32px;
}
.op-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.op-detail-img .op-badge {
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  padding: 5px 13px;
}
.op-detail-img .op-img-placeholder {
  font-size: 0.72rem;
}

.op-detail-name {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.op-detail-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.op-price-card {
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.op-price-card.highlight {
  border-color: rgba(232,184,75,0.30);
  background: rgba(232,184,75,0.05);
}
.op-price-card-label {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 6px;
}
.op-price-card-value {
  font-size: 1.55rem;
  font-weight: 700;
  color: #E8B84B;
  line-height: 1;
}
.op-price-card-value sub {
  font-size: 0.58em;
  font-weight: 500;
  opacity: 0.65;
  vertical-align: baseline;
}
.op-price-card-note {
  font-size: 0.73rem;
  opacity: 0.38;
  margin-top: 6px;
}
.op-price-card-old {
  font-size: 0.82rem;
  opacity: 0.35;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.op-price-card-new {
  font-size: 1.45rem;
  font-weight: 700;
}

.op-detail-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.72;
  margin-bottom: 28px;
}

.op-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.op-chip {
  font-size: 0.73rem;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  opacity: 0.60;
}

/* WhatsApp CTA */
.op-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  background: #25D366;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
}
.op-wa-btn:hover {
  background: #1db954;
  transform: translateY(-2px);
}
.op-wa-btn svg { flex-shrink: 0; }

.op-detail-note {
  font-size: 0.70rem;
  opacity: 0.28;
  text-align: center;
  line-height: 1.65;
}

/* ── Mobile ── */
@media (max-width: 740px) {
  .op-wrap { padding: 32px 16px 80px; }
  .op-grid { grid-template-columns: 1fr; gap: 16px; }
  .op-detail-wrap { padding: calc(var(--header-h) + 16px) 16px 80px; }
  .op-detail-pricing { grid-template-columns: 1fr; gap: 12px; }
  .op-detail-name { font-size: 1.65rem; }
  .op-renta-amount { font-size: 1.45rem; }
}

/* ================================================================
   Rich detail page layout
   ================================================================ */

.op-detail-page {
  position: relative;
  z-index: 5;
}

/* Section shell */
.op-detail-page .section-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

/* ── Hero ── */
.detail-hero {
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hero__meta p {
  font-size: 0.75rem;
  opacity: 0.38;
  margin: 0;
}
.hero-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(232,184,75,0.15);
  color: #E8B84B;
}

.hero__grid {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 36px;
  align-items: center;
}

/* Copy */
.hero__copy .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 14px;
}

.hero__copy h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 12px;
}
.hero__copy h1 span { display: block; }
.hero-h1-year {
  color: rgba(255,255,255,0.38) !important;
  font-size: 0.65em !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.hero__description {
  font-size: 0.95rem;
  opacity: 0.58;
  line-height: 1.68;
  max-width: 440px;
  margin-bottom: 0;
}

/* Vehicle price row (below h1) */
.hero-vehicle-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hvp-lista {
  font-size: 0.88rem;
  opacity: 0.30;
  text-decoration: line-through;
}
.hvp-oferta {
  font-size: 1.2rem;
  font-weight: 700;
}
.hvp-single {
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0.72;
}
.hvp-label {
  font-size: 0.62rem;
  opacity: 0.32;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Version string (short, below prices) */
.hero__description {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Orange line */
.orange-line {
  display: block;
  width: 44px;
  height: 3px;
  background: #E8B84B;
  border-radius: 2px;
  margin: 14px 0;
}
.orange-line--center {
  margin: 14px auto 0;
}

/* Price display */
.hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-price span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
}
.hero-price strong {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #E8B84B;
  letter-spacing: -0.03em;
}
.hero-price em {
  font-style: normal;
  font-size: 0.78rem;
  opacity: 0.45;
}

/* Term cards */
.term-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.term-card {
  padding: 13px 18px;
  flex: 1;
}
.term-card dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 5px;
}
.term-card dd {
  font-size: 0.92rem;
  font-weight: 600;
}

/* Action buttons */
.d-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.d-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.d-button--primary {
  background: #E8B84B;
  color: #000;
}
.d-button--primary:hover {
  background: #f0c55e;
  transform: translateY(-1px);
}
.d-button--secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
}
.d-button--secondary:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.30);
  color: white;
}

/* Vehicle image */
.vehicle-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vehicle-stage img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 70px rgba(0,0,0,0.5));
}
.vehicle-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}

/* ── Gallery ── */
.gallery-section {
  padding-top: 0;
  padding-bottom: 48px;
}
.gallery-heading {
  text-align: center;
  margin-bottom: 32px;
}
.gallery-heading h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  aspect-ratio: 16 / 9;
}
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gallery-item {
  flex: 0 0 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.15s;
}
.gallery-arrow:hover { background: rgba(0,0,0,0.78); }
.gallery-arrow--prev { left: 14px; }
.gallery-arrow--next { right: 14px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.gallery-dot.active {
  background: #E8B84B;
  transform: scale(1.35);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 4px; }
.gallery-thumb {
  flex: 0 0 88px;
  height: 58px;
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  padding: 0;
  opacity: 0.48;
  transition: border-color 0.15s, opacity 0.15s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: #E8B84B; opacity: 1; }

/* ── Specs ── */
.specs-section { padding: 0 0 16px; }
.specs-card { padding: 24px 28px !important; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px 24px;
}
.spec-item { display: flex; flex-direction: column; gap: 5px; }
.spec-item dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.33);
}
.spec-item dd {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}

/* ── Features ── */
.features-section { padding-bottom: 48px; }
.features-heading {
  text-align: center;
  margin-bottom: 28px;
}
.features-heading .eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 10px;
}
.features-heading h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.features-card {
  padding: 28px 32px;
  border-radius: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 24px;
  list-style: none;
}
.features-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  line-height: 1.45;
  opacity: 0.78;
}
.features-grid li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E8B84B;
  margin-top: 7px;
}

/* ── Final CTA ── */
.final-section { padding-bottom: 36px; }
.final-card {
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 36px;
  align-items: center;
  border-radius: 18px;
}
.final-card__brand img {
  height: 44px;
  width: auto;
  display: block;
  opacity: 0.82;
}
.final-card__divider {
  background: rgba(255,255,255,0.09);
  align-self: stretch;
}
.final-card__copy h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.final-card__copy p {
  font-size: 0.85rem;
  opacity: 0.50;
  line-height: 1.65;
  margin-bottom: 22px;
}
.d-footer-note {
  text-align: center;
  font-size: 0.70rem;
  opacity: 0.26;
  margin-top: 18px;
  line-height: 1.6;
}

/* ── Contact footer ── */
.footer-separator {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1140px;
  margin: 0 auto;
}
.page-footer {
  padding-top: 36px;
  padding-bottom: 32px;
}
.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.footer-contact__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact__icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.36;
  display: block;
  margin-bottom: 4px;
}
.footer-contact__value {
  font-size: 0.80rem;
  color: white;
  text-decoration: none;
  opacity: 0.65;
  font-style: normal;
  line-height: 1.45;
  display: block;
  transition: opacity 0.15s;
}
.footer-contact__value:hover { opacity: 1; }
.footer-bottom-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 20px 0;
}
.footer-legal {
  font-size: 0.68rem;
  opacity: 0.22;
  text-align: center;
  line-height: 1.65;
}
.footer-admin-link {
  text-align: center;
  margin-top: 14px;
}
.footer-admin-link a,
a.footer-admin-link {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.18);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.15s;
}
.footer-admin-link a:hover,
a.footer-admin-link:hover { color: rgba(255,255,255,0.55); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Rich detail responsive ── */
@media (max-width: 900px) {
  .op-detail-page .section-shell { padding-left: 20px; padding-right: 20px; }
  .detail-hero { padding-top: calc(var(--header-h) + 16px); padding-bottom: 28px; }
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__visual { order: -1; }
  .vehicle-stage { justify-content: center; }
  .vehicle-stage img { max-width: 380px; margin: 0 auto; display: block; }
  .hero__copy h1 { font-size: 1.9rem; }
  .hero-price strong { font-size: 1.9rem; }
  .final-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
  .final-card__divider { display: none; }
  .footer-contact { grid-template-columns: 1fr 1fr; }
  .gallery-section { padding-bottom: 36px; }
  .features-section { padding-bottom: 36px; }
}
@media (max-width: 600px) {
  .hero__top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__meta { align-items: flex-start; }
  .hero__meta .hero-badge { font-size: 0.56rem; }
  .hero__copy h1 { font-size: 1.65rem; }
  .hero-vehicle-price { flex-wrap: wrap; }
  .hero-price { margin-bottom: 12px; }
  .hero-price strong { font-size: 1.65rem; }
  .term-cards { flex-wrap: wrap; }
  .term-card { flex: 1 1 calc(50% - 5px); min-width: 100px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-template-columns: 1fr; }
  .d-hero-actions { flex-direction: column; }
  .d-button { width: 100%; justify-content: center; }
  .gallery-section { padding-bottom: 28px; }
  .features-section { padding-bottom: 28px; }
  .final-section { padding-bottom: 24px; }
  .vehicle-stage img { max-width: 260px; }
  .orange-line { margin: 10px 0; }
  .hero__copy .eyebrow { margin-bottom: 8px; }
  .gallery-heading { margin-bottom: 20px; }
  .features-heading { margin-bottom: 20px; }
  .features-card { padding: 20px; }
}

/* ── Tabs (Leasing / Usados) ── */
.op-tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.op-tab {
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 26px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.15s;
}
.op-tab:hover {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.04);
}
.op-tab.active {
  background: white;
  color: #000;
  border-color: white;
}

/* Km chip in usado card */
.op-km-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(127,181,208,0.85);
  letter-spacing: 0.02em;
}
