/* ========================================
   LEASING MODULE — Dedicated Stylesheet
   ========================================
   Extracted from style.css for easier maintenance.
   Includes: listing, detail, intro, bottom section.
   ======================================== */

/* ---------- Leasing page banner overrides ---------- */
#pag-leasing body main .imagens_ambiente,
#pag-leasing main .imagens_ambiente {
  height: 267px;
  padding-bottom: 0;
  background: -o-linear-gradient(210deg, #F5F5F5 0%, #F5F5F5 calc(50% + 450px), #FEC102 20%);
  background: linear-gradient(280deg, #FEC102 0%, #FEC102 calc(50% - 450px), #F5F5F5 20%);
}

#pag-leasing main .imagens_ambiente .destaque h1,
#pag-leasing main .imagens_ambiente .destaque .title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
}

/* ========================================
   LEASING LISTING (ll-)
   ======================================== */

/* ---------- Wrapper ---------- */
.ll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* ---------- Top row: Tabs + Title bar ---------- */
.ll-toprow {
  display: flex;
  align-items: flex-end;
  gap: 37px;
  width: 100%;
}

/* Tabs */
.ll-tabs {
  display: inline-flex;
  border: 1px solid #181818;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.ll-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #181818;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  white-space: nowrap;
}

.ll-tab:first-child {
  border-radius: 5px 0 0 5px;
}

.ll-tab:last-child {
  border-radius: 0 5px 5px 0;
}

.ll-tab--active {
  background: #181818;
  color: #fff;
}

.ll-tab__check {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Title bar */
.ll-titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.ll-titlebar__left {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.ll-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #181818;
  line-height: 1.5;
  margin: 0;
}

.ll-count {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  padding-bottom: 4px;
  white-space: nowrap;
}

/* Order dropdown */
.ll-order {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 7px;
}

.ll-order__label {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.ll-order__select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #181818;
}

.ll-order__arrow {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
}

.ll-order__options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 180px;
  z-index: 10;
}

.ll-order__select.open .ll-order__options {
  display: block;
}

.ll-order__options li {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.ll-order__options li:hover,
.ll-order__options li.active {
  background: #f5f5f5;
  font-weight: 600;
}

/* ---------- Content: Sidebar + Cards ---------- */
.ll-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* ---------- Sidebar ---------- */
.ll-sidebar {
  width: 287px;
  flex-shrink: 0;
}

.ll-filters {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 23px 24px 32px;
}

.ll-filters__head-mobile {
  display: none;
}

.ll-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ll-filters__title {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #181818;
}

.ll-filters__clear {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
}

.ll-filters__footer-mobile {
  display: none;
}

/* Filter sections */
.ll-filter-section {
  margin-bottom: 32px;
}

.ll-filter-section:last-of-type {
  margin-bottom: 0;
}

.ll-filter-section__title {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Filter list (vertical: categoria) */
.ll-filter-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Filter grid (wrap: combustível, transmissão, lotação) */
.ll-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

/* Custom checkbox */
.ll-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.ll-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ll-checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #181818;
  border-radius: 2px;
  background: #fff;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.ll-checkbox input[type="checkbox"]:checked + .ll-checkbox__box {
  background: #181818;
  border-color: #181818;
}

.ll-checkbox input[type="checkbox"]:checked + .ll-checkbox__box::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.ll-checkbox__label {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #181818;
  line-height: 1.5;
  white-space: nowrap;
}

/* Select (Marca e modelo) */
.ll-select-wrap {
  position: relative;
  width: 100%;
}

.ll-select {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 20px;
  border: 1px solid #666;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #181818;
  background: rgba(255,255,255,0.9);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
}

.ll-select:focus {
  outline: none;
  border-color: #000;
}

.ll-select__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ---------- Cards area ---------- */
.ll-cards-area {
  flex: 1;
  min-width: 0;
}

.ll-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.ll-no-results {
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  color: #666;
}

/* ---------- Individual card ---------- */
.ll-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  overflow: hidden;
}

.ll-card:hover {
  border-color: #FEC102;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.ll-card--campanha {
  border-color: #FEC102;
}

/* Campaign badge — ribbon style from Figma */
.ll-card__badge {
  position: absolute;
  top: 8px;
  right: 9px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.ll-card__badge-flag {
  flex-shrink: 0;
}

.ll-card__badge-text {
  background: #FEC102;
  color: #181818;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  height: 30px;
  display: flex;
  align-items: center;
  padding-right: 10px;
  border-radius: 0 10px 0 0;
}

/* Card header */
.ll-card__header {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
}

.ll-card__brand {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #181818;
  line-height: 1.5;
}

.ll-card__model {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #181818;
  line-height: 1.5;
}

/* Card image area */
.ll-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  margin: 0 -24px;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}

.ll-card__image::before {
  content: '';
  position: absolute;
  top: -54px;
  left: -1px;
  right: -1px;
  height: 161px;
  background: #f5f5f5;
  border-radius: 15px 15px 0 0;
  z-index: 0;
}

.ll-card__image img {
  position: relative;
  z-index: 1;
  max-width: 236px;
  max-height: 148px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Savings badge */
.ll-card__savings {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.ll-card__savings-tag {
  display: inline-block;
  background: #156a36;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 0 4px 4px 0;
  line-height: normal;
}

/* Price section */
.ll-card__price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 21px;
}

.ll-card__price-value {
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #181818;
  line-height: 1.25;
}

.ll-card__price-old {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
}

.ll-card__price-old-text {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444;
}

.ll-card__price-old-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #444;
  transform: rotate(-16.26deg);
}

.ll-card__price-period {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #181818;
  padding-bottom: 6px;
}

/* Details */
.ll-card__details {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin-top: 12px;
}

/* Specs */
.ll-card__specs {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
}

/* Features */
.ll-card__features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ll-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #181818;
  line-height: 1.5;
}

.ll-card__feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* CTA button */
.ll-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: #FEC102;
  color: #181818;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 20px;
  border-radius: 5px;
  margin-top: 24px;
  transition: background 0.2s;
  line-height: 1.5;
  box-sizing: border-box;
}

.ll-card:hover .ll-card__cta {
  background: #e5ad00;
}

/* ---------- Responsive: Listing ---------- */
@media (max-width: 1280px) {
  .ll-card {
    width: calc((100% - 48px) / 3);
  }
}

@media (max-width: 1024px) {
  .ll-toprow {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ll-titlebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .ll-card {
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .ll-content {
    flex-direction: column;
    gap: 0;
  }

  .ll-sidebar {
    width: 100%;
    order: -1;
  }

  .ll-filters {
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  .ll-filters__head-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
  }

  .ll-filters__mobile-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #181818;
  }

  .ll-filters__mobile-arrow {
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23181818' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s;
  }

  .ll-sidebar--open .ll-filters__mobile-arrow {
    transform: rotate(180deg);
  }

  .ll-filters__header,
  .ll-filter-section,
  .ll-filters form {
    display: none;
  }

  .ll-sidebar--open .ll-filters__header,
  .ll-sidebar--open .ll-filter-section,
  .ll-sidebar--open .ll-filters form {
    display: flex;
  }

  .ll-sidebar--open .ll-filters__header {
    margin-top: 16px;
  }

  .ll-sidebar--open .ll-filters {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 16px 24px 24px;
  }

  .ll-sidebar--open .ll-filter-section {
    flex-direction: column;
  }

  .ll-sidebar--open .ll-filters form {
    flex-direction: column;
  }

  .ll-filters__footer-mobile {
    display: none;
  }

  .ll-sidebar--open .ll-filters__footer-mobile {
    display: block;
    margin-top: 24px;
    text-align: center;
  }

  .ll-filters__footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: #FEC102;
    color: #181818;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
  }

  .ll-card {
    width: 100%;
  }

  .ll-tabs {
    width: 100%;
  }

  .ll-tab {
    flex: 1;
    justify-content: center;
    font-size: 14px;
  }

  .ll-tab:first-child,
  .ll-tab:last-child {
    width: auto;
  }

  .ll-order {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   LEASING DETAIL PAGE (ld-)
   ========================================================================== */

/* Hide the banner on leasing detail pages */
#pag-leasing main:has(.leasing-detalhe) > .imagens_ambiente {
  display: none;
}

/* --- Hero background --- */
.ld-hero-bg {
  background: #f5f5f5;
  height: 488px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.leasing-detalhe {
  position: relative;
}

/* --- Two-column layout --- */
.ld-layout {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.ld-left {
  flex: 1;
  min-width: 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.ld-right {
  width: 427px;
  flex-shrink: 0;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}

/* --- Badge --- */
.ld-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FEC102;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  height: 40px;
  padding: 4px 20px;
  border-radius: 0 0 8px 0;
  border-top-left-radius: 8px;
  align-self: flex-start;
}

/* --- Car image --- */
.ld-hero__image {
  text-align: center;
  max-width: 723px;
}

.ld-hero__image img {
  width: 100%;
  max-width: 723px;
  height: auto;
  display: block;
}

/* --- Hero card --- */
.ld-hero__card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ld-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #181818;
  margin: 0;
}

.ld-hero__brand {
  display: block;
}

.ld-hero__subtitle {
  display: block;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  color: #181818;
}

/* --- Pricing block --- */
.ld-hero__pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ld-hero__price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 0;
}

.ld-hero__price-current {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.25;
  color: #181818;
}

.ld-hero__price-original {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #444;
  text-decoration: line-through;
}

.ld-hero__price-period {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #181818;
  padding-bottom: 6px;
}

.ld-hero__price-meta {
  display: flex;
  flex-direction: column;
}

.ld-hero__price-info {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
}

.ld-hero__savings {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #156a36;
  margin: 0;
}

/* --- Select fields --- */
.ld-hero__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-hero__selects {
  display: flex;
  gap: 16px;
  margin: 0;
}

.ld-hero__select-group {
  flex: 1;
}

.ld-hero__select-group--full {
  width: 100%;
  margin-bottom: 0;
}

.ld-hero__select-group label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #444;
  margin-bottom: 8px;
}

.ld-hero__select-wrap {
  position: relative;
  height: 48px;
  background: #f5f5f5;
  border-radius: 4px;
}

.ld-hero__select-wrap--bordered {
  background: transparent;
  border: 1px solid #181818;
}

.ld-hero__select-wrap select {
  width: 100%;
  height: 100%;
  padding: 0 36px 0 16px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #181818;
  border: none;
  border-radius: 4px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: default;
  box-sizing: border-box;
}

.ld-hero__select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* --- CTA button --- */
.ld-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 69px;
  background: #FEC102;
  color: #181818;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 4px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.ld-hero__cta:hover {
  background: #e5ad00;
  color: #181818;
  text-decoration: none;
}

/* --- Benefits bar --- */
.ld-benefits {
  background: rgba(254, 193, 2, 0.1);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.ld-benefits__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ld-benefits__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
}

.ld-benefits__icon {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
}

.ld-benefits__separator {
  height: 1px;
  background: #e5e5e5;
}

.ld-benefits__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.ld-benefits__stars {
  display: flex;
  align-items: center;
}

/* --- Inclusions --- */
.ld-inclusions {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-inclusions__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000;
  margin: 0;
}

.ld-inclusions__grid {
  display: flex;
  gap: 52px;
}

.ld-inclusions__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ld-inclusions__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.ld-check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Separator --- */
.ld-separator {
  height: 2px;
  background: #e5e5e5;
}

/* --- Specs & Equipment --- */
.ld-specs {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0;
}

.ld-specs__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #181818;
  margin: 0;
  font-style: normal;
}

.ld-specs__row {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 1.5;
}

.ld-specs__card {
  flex: 1 0 0;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: none;
}

.ld-specs__card:last-child {
  border-right: none;
}

.ld-specs__card-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}

.ld-specs__card-value {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

/* Equipment categories */
.ld-equipment {
  margin-top: 0;
}

.ld-equipment__content {
  display: flex;
  gap: 49px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #000;
}

.ld-equipment__content h3,
.ld-equipment__content h4,
.ld-equipment__content strong {
  font-weight: 700;
  color: #181818;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.ld-equipment__content ul {
  list-style: disc;
  padding-left: 21px;
  margin: 0;
}

.ld-equipment__content ul li {
  margin-bottom: 0;
  font-size: 14px;
}

/* --- CTA Banner --- */
.ld-cta-banner {
  background: #fff9e6;
  border-radius: 8px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ld-cta-banner__text {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #181818;
  margin: 0;
}

.ld-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #181818;
  height: 56px;
  padding: 4px 20px;
  background: #FEC102;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.ld-cta-banner__btn:hover {
  background: #e5ad00;
  color: #181818;
  text-decoration: none;
}

/* --- Gallery --- */
.ld-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld-gallery__main {
  border-radius: 8px;
  overflow: hidden;
  height: 433px;
}

.ld-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ld-gallery__thumbs {
  display: flex;
  gap: 16px;
}

.ld-gallery__thumb {
  width: 142px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  padding: 0;
  background: none;
  flex-shrink: 0;
}

.ld-gallery__thumb.active {
  border: 6px solid #FEC102;
}

.ld-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- FAQ --- */
.ld-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.ld-faq__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000;
  margin: 0;
}

.ld-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ld-faq__item {
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  overflow: hidden;
}

.ld-faq__item:last-child {
  border-bottom: none;
}

.ld-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 21px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
  cursor: pointer;
  list-style: none;
}

.ld-faq__question::-webkit-details-marker {
  display: none;
}

.ld-faq__question::marker {
  display: none;
  content: "";
}

.ld-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 12px;
  height: 6px;
}

details[open] > .ld-faq__question .ld-faq__chevron {
  transform: rotate(180deg);
}

.ld-faq__answer {
  padding: 0 21px 16px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.ld-faq__answer p {
  margin: 0;
}

.ld-faq__answer strong {
  font-weight: 700;
  color: #000;
}

.ld-faq__footer {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
  margin: 0;
}

.ld-faq__footer a {
  color: #181818;
  font-weight: 700;
  text-decoration: underline;
}

.ld-faq__footer a:hover {
  color: #FEC102;
}

/* --- Responsive: Detail Page --- */
@media (max-width: 1200px) {
  .ld-layout {
    gap: 40px;
  }

  .ld-right {
    width: 360px;
  }

  .ld-hero__price-current {
    font-size: 44px;
  }

  .ld-hero__cta {
    height: 56px;
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .ld-layout {
    gap: 24px;
  }

  .ld-right {
    width: 320px;
  }

  .ld-hero__title {
    font-size: 26px;
  }

  .ld-hero__price-current {
    font-size: 38px;
  }

  .ld-inclusions__grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ld-inclusions__col {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .ld-hero-bg {
    height: 300px;
  }

  .ld-layout {
    flex-direction: column;
    gap: 32px;
    padding-top: 30px;
  }

  .ld-left {
    max-width: 100%;
    gap: 28px;
  }

  .ld-right {
    width: 100%;
    position: static;
  }

  .ld-hero__card {
    padding: 24px;
  }

  .ld-hero__title {
    font-size: 24px;
  }

  .ld-hero__price-current {
    font-size: 36px;
  }

  .ld-hero__cta {
    height: 52px;
    font-size: 16px;
  }

  .ld-benefits {
    padding: 20px;
  }

  .ld-benefits__items {
    gap: 16px;
    flex-direction: column;
  }

  .ld-inclusions {
    padding-left: 0;
  }

  .ld-inclusions__grid {
    flex-direction: column;
    gap: 16px;
  }

  .ld-specs__row {
    flex-wrap: wrap;
    gap: 8px;
    white-space: normal;
  }

  .ld-specs__card {
    flex: 0 0 calc(50% - 4px);
  }

  .ld-equipment__content {
    flex-direction: column;
    gap: 24px;
  }

  .ld-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .ld-gallery__main {
    height: 260px;
  }

  .ld-gallery__thumbs {
    gap: 8px;
    overflow-x: auto;
  }

  .ld-gallery__thumb {
    width: 80px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .ld-hero__subtitle {
    font-size: 24px;
  }

  .ld-hero__price-current {
    font-size: 32px;
  }

  .ld-hero__price-original {
    font-size: 18px;
  }

  .ld-hero__selects {
    flex-direction: column;
    gap: 12px;
  }

  .ld-specs__card {
    flex: 0 0 100%;
  }

  .ld-gallery__main {
    height: 200px;
  }

  .ld-faq__question {
    padding: 14px 16px;
  }

  .ld-faq__answer {
    padding: 0 16px 14px;
  }
}

/* ========================================
   LEASING BOTTOM SECTION
   ======================================== */

#pag-leasing .leasing-bottom-section {
  background: #F5F5F5;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#pag-leasing .leasing-bottom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(135deg, #E91E63 0%, #E91E63 50%, transparent 50%);
  z-index: 1;
}

#pag-leasing .leasing-bottom-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

#pag-leasing .leasing-bottom-left {
  flex: 1;
  min-width: 0;
}

#pag-leasing .leasing-bottom-title {
  font-size: 28px;
  font-weight: 800;
  color: #181818;
  margin: 0 0 24px;
  line-height: 1.2;
}

#pag-leasing .leasing-bottom-text {
  column-count: 2;
  column-gap: 32px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

#pag-leasing .leasing-bottom-text p {
  margin: 0 0 16px;
}

#pag-leasing .leasing-bottom-text p:last-child {
  margin-bottom: 0;
}

#pag-leasing .leasing-bottom-text strong {
  font-weight: 700;
}

#pag-leasing .leasing-bottom-cta {
  margin-top: 20px;
}

#pag-leasing .leasing-bottom-cta a,
#pag-leasing .leasing-bottom-cta span {
  font-size: 14px;
  color: #181818;
  font-style: italic;
}

#pag-leasing .leasing-bottom-cta a {
  text-decoration: underline;
  text-decoration-color: #FEC102;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}

#pag-leasing .leasing-bottom-cta a:hover {
  color: #000;
}

#pag-leasing .leasing-bottom-right {
  flex: 0 0 380px;
  max-width: 380px;
  border-radius: 8px;
  overflow: hidden;
}

#pag-leasing .leasing-bottom-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#pag-leasing .leasing-bottom-promo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #FEC102;
  border-radius: 8px;
}

/* Responsive — Leasing Bottom Section */
@media (max-width: 1029px) {
  #pag-leasing .leasing-bottom-content {
    flex-direction: column;
  }

  #pag-leasing .leasing-bottom-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  #pag-leasing .leasing-bottom-section::before {
    width: 80px;
  }
}

@media (max-width: 767px) {
  #pag-leasing .leasing-bottom-section {
    padding: 40px 0;
  }

  #pag-leasing .leasing-bottom-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  #pag-leasing .leasing-bottom-text {
    column-count: 1;
    font-size: 14px;
  }

  #pag-leasing .leasing-bottom-section::before {
    width: 50px;
  }

  #pag-leasing .leasing-bottom-right {
    max-width: 100%;
  }
}

.sem-resultados {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 16px;
  width: 100%;
}
