/* ==========================================
   Global Styles
   ========================================== */
/* Geometrica Font */
@font-face {
  font-family: 'Geometrica';
  src: url('../fonts/geometrica/Geometrica-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geometrica';
  src: url('../fonts/geometrica/Geometrica-Book.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geometrica';
  src: url('../fonts/geometrica/Geometrica-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geometrica';
  src: url('../fonts/geometrica/Geometrica-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geometrica';
  src: url('../fonts/geometrica/Geometrica-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Global Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--pd-font-secondary);
}

/* Icon as image fix */
img.pd-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ==========================================
   Componente - Botón
   ========================================== */
/* Mobile First */
.pd-button {
  align-items: center;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-semi-bold);
  gap: var(--pd-spacing-2);
  justify-content: var(--pd-button-justify-content, flex-start);
  padding: var(--pd-spacing-3) var(--pd-button-horizontal-padding, var(--pd-spacing-6));
  text-decoration: none;
  transition: all 0.2s ease;
  width: var(--pd-button-width, 280px);
}

.pd-button--full-width-mobile {
  justify-content: center;
  width: 100%;
}

.pd-button--full-width-desktop {
  width: 100%;
}

/* Primary */
.pd-button.primary {
  background: var(--pd-button-primary-color, var(--pd-primary-500));
  color: var(--pd-neutral-000);
}

.pd-button.primary:hover {
  background: var(--pd-button-primary-color-hover, var(--pd-primary-800));
}

/* Clear */
.pd-button.clear {
  background-color: var(--pd-neutral-000);
  border: 2px solid var(--pd-neutral-000);
  color: var(--pd-primary-500);
  height: 48px;
}

.pd-button.clear:hover {
  background-color: transparent;
  border-color: var(--pd-neutral-000);
  color: var(--pd-neutral-000);
}

/* Clear XS */
.pd-button.clear-xs {
  background-color: transparent;
  border: 1px solid var(--pd-neutral-000);
  border-radius: 8px;
  color: var(--pd-neutral-000);
  font-size: var(--pd-font-size-sm);
  height: 32px;
  padding: var(--pd-spacing-1) var(--pd-spacing-3);
}

.pd-button.clear-xs:hover {
  background-color: var(--pd-neutral-000);
  border: 1px solid var(--pd-neutral-000);
  color: var(--pd-neutral-900);
}

/* Ghost */
.pd-button.ghost {
  background-color: transparent;
  color: var(--pd-accent-500);
  justify-content: center;
  text-decoration: underline;
  width: auto;
}

.pd-button.ghost:hover {
  background-color: var(--pd-container-200);
}

/* Stroke Color */
.pd-button.strokeColor {
  background-color: var(--pd-neutral-000);
  border: 2px solid var(--pd-button-stroke-color, var(--pd-primary-500));
  color: var(--pd-button-stroke-color, var(--pd-primary-500));
  height: 48px;
}

.pd-button.strokeColor:hover {
  background-color: var(--pd-neutral-000);
  border-color: var(--pd-button-stroke-color-hover, var(--pd-primary-800));
  color: var(--pd-button-stroke-color-hover, var(--pd-primary-800));
}

/* Stroke */
.pd-button.stroke {
  background-color: transparent;
  border: 2px solid var(--pd-neutral-000);
  height: 48px;
  color: var(--pd-neutral-000);
}

.pd-button.stroke:hover {
  background-color: var(--pd-neutral-000);
  border-color: var(--pd-neutral-000);
  color: var(--pd-neutral-900);
}

/* Product */
.pd-button.product {
  background-color: var(--pd-neutral-000);
  border: 1px solid var(--pd-neutral-000);
  color: var(--pd-primary-500);
  gap: var(--pd-spacing-2);
  height: 48px;
  justify-content: center;
}

.pd-button.product:hover,
.pd-button.product-car:hover,
.pd-button.product-semi-new-car:hover,
.pd-button.product-house:hover {
  background-color: var(--pd-container-200);
  border-color: var(--pd-container-200);
}

/* Products */
.pd-button.product-car,
.pd-button.product-semi-new-car,
.pd-button.product-house {
  background-color: var(--pd-neutral-000);
  border: 1px solid var(--pd-neutral-000);
  box-sizing: border-box;
  height: 48px;
  justify-content: center;
  padding: var(--pd-spacing-3) var(--pd-spacing-8);
  width: auto;
}

/* Product Car */
.pd-button.product-car {
  color: var(--pd-new-600);
}

/* Product Semi-New Car */
.pd-button.product-semi-new-car {
  color: var(--pd-semi-new-500);
}

/* Product House */
.pd-button.product-house {
  color: var(--pd-house-500);
}

/* Product logo */
.product-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  width: auto;
}

.product-logo img,
.product-logo svg {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* New Car */
.pd-button.newCar {
  background: var(--pd-new-600);
  color: var(--pd-neutral-000);
}

.pd-button.newCar:hover {
  background-color: var(--pd-new-800);
}

/* Semi-New */
.pd-button.semiNew {
  background: var(--pd-semi-new-500);
  color: var(--pd-neutral-000);
}

.pd-button.semiNew:hover {
  background-color: var(--pd-semi-new-800);
}

/* House */
.pd-button.house {
  background: var(--pd-house-600);
  color: var(--pd-neutral-000);
}

.pd-button.house:hover {
  background-color: var(--pd-house-800);
}

/* Icon */
.pd-button__icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.pd-button__label {
  display: inline-block;
}

/* Tablet (≥ 768px) - Reset full width for tablet and desktop */
@media (min-width: 768px) {
  .pd-button--full-width-mobile {
    width: var(--pd-button-width, 280px);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-button {
    padding: var(--pd-spacing-3) var(--pd-button-horizontal-padding-desktop, var(--pd-button-horizontal-padding));
    width: var(--pd-button-width, 280px);
  }

  .pd-button--full-width-desktop {
    width: 100%;
  }

  .pd-button__label {
    line-height: 24px;
  }
}

/* ==========================================
   pd-button-icon
   ========================================== */
/* Mobile First */
.pd-button-icon {
  align-items: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 48px;
}

/* White variant */
.pd-button-icon.white {
  background-color: var(--pd-neutral-000);
  color: var(--pd-primary-500);
}

.pd-button-icon.white:hover {
  background-color: var(--pd-container-200);
}

/* Red variant */
.pd-button-icon.red {
  background-color: var(--pd-new-600);
  color: var(--pd-neutral-000);
}

.pd-button-icon.red:hover {
  background-color: var(--pd-new-800);
}

/* Orange variant */
.pd-button-icon.orange {
  background-color: var(--pd-semi-new-500);
  color: var(--pd-neutral-000);
}

.pd-button-icon.orange:hover {
  background-color: var(--pd-semi-new-800);
}

/* Teal variant */
.pd-button-icon.teal {
  background-color: var(--pd-house-600);
  color: var(--pd-neutral-000);
}

.pd-button-icon.teal:hover {
  background-color: var(--pd-house-800);
}

/* Transparent variant */
.pd-button-icon.transparent {
  background-color: transparent;
  border: 2px solid var(--pd-neutral-000);
  color: var(--pd-neutral-000);
}

/* Bone White variant */
.pd-button-icon.boneWhite {
  background-color: var(--pd-container-100);
  color: var(--pd-primary-500);
}

.pd-button-icon__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

/* ==========================================
   Componente - Icono
   ========================================== */
.pd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
}

.pd-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.pd-icon svg [stroke] {
  stroke: currentColor;
}

.pd-icon__not-found {
  font-size: 0.875rem;
  color: var(--pd-new-400);
  font-family: monospace;
}

/* ==========================================
   Componente - Título de Sección
   ========================================== */
/*Mobile First*/
.pd-section-title {
  text-align: center;
  width: 100%;
}

.pd-section-title--left {
  text-align: left;
}

.pd-section-title--right {
  text-align: right;
}

.pd-section-title__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-primary);
  font-size: var(--pd-font-size-2xl);
  font-weight: var(--pd-font-weight-regular);
  line-height: 38px;
  margin: var(--pd-spacing-2) 0 0;
}

.pd-section-title__subtitle {
  color: var(--pd-primary-500);
  font-family: var(--pd-font-primary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  margin: 0;
}

.pd-section-title--center .pd-section-title__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.pd-section-title--left .pd-section-title__subtitle {
  margin-right: auto;
}

.pd-section-title--right .pd-section-title__subtitle {
  margin-left: auto;
}

@media (min-width: 1024px) {
  .pd-section-title--desktop-left {
    text-align: left;
  }

  .pd-section-title--desktop-center {
    text-align: center;
  }

  .pd-section-title--desktop-right {
    text-align: right;
  }

  .pd-section-title--desktop-left .pd-section-title__subtitle {
    margin-left: 0;
    margin-right: auto;
  }

  .pd-section-title--desktop-center .pd-section-title__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .pd-section-title--desktop-right .pd-section-title__subtitle {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-section-title__title {
    font-size: var(--pd-font-size-6xl);
    line-height: 36px;
  }

}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-section-title__title {
    font-size: var(--pd-font-size-6xl);
    line-height: 42px;
  }

  .pd-section-title__subtitle {
    font-size: var(--pd-font-size-md);
    font-weight: var(--pd-font-weight-semi-bold);
    max-width: 600px;
  }
}

/* ==========================================
   Componente - Grupo de Acordeón
   ========================================== */
/* Mobile First */
.pd-accordion-group__container {
  box-sizing: border-box;
  padding: var(--pd-spacing-4);
}

.pd-accordion-group__container--default {
  background-color: transparent;
  padding: 0;
}

.pd-accordion-group__container--highlight {
  background-color: var(--pd-container-100);
  border-radius: var(--pd-spacing-3);
}

.pd-accordion-group {
  width: 100%;
}

.pd-accordion-group__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-accordion-group__content {
    gap: 0;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-accordion-group__content {
    align-items: flex-start;
    display: grid;
    gap: var(--pd-spacing-8);
    grid-template-columns: 1fr;
  }

  .pd-accordion-group__items {
    display: flex;
    flex-direction: column;
  }
}

/* ==========================================
   Componente - Ítem de Acordeón
   ========================================== */
/* Mobile First */
.pd-accordion-item {
  border-bottom: 1px solid var(--pd-container-500);
  box-sizing: border-box;
  width: 100%;
}

.pd-accordion-item.pd-accordion-item--last {
  border-bottom: none;
}

:host(:last-of-type) .pd-accordion-item {
  border-bottom: none;
}

:host(:only-of-type) .pd-accordion-item {
  border-bottom: 1px solid var(--pd-container-500);
}

.pd-accordion-item--default {
  background-color: var(--pd-neutral-000); 
}

.pd-accordion-item--highlight {
  background-color: var(--pd-container-100);
}

.pd-accordion-item__header {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: var(--pd-spacing-4);
  justify-content: space-between;
  padding: var(--pd-spacing-4) 0;
  text-align: left;
  transition: background-color 0.2s ease;
  width: 100%;
}

.pd-accordion-item__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
}

.pd-accordion-item__icon {
  color: var(--pd-neutral-900);
  flex-shrink: 0;
  padding: 0 var(--pd-spacing-2);
  transition: transform 0.3s ease;
}

.pd-accordion-item__icon--open {
  transform: rotate(180deg);
}

.pd-accordion-item__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.pd-accordion-item__content--open {
  grid-template-rows: 1fr;
}

.pd-accordion-item__content-inner {
  min-height: 0;
}

.pd-accordion-item__image {
  border-radius: var(--pd-spacing-2);
  display: block;
  height: auto;
  margin-bottom: var(--pd-spacing-4);
  object-fit: cover;
  width: 100%;
}

.pd-accordion-item__description {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  line-height: 1.6;
  margin: 0;
  padding: 0 var(--pd-spacing-4) var(--pd-spacing-8);
}

.pd-accordion-item__description p,
.pd-accordion-item__description ul,
.pd-accordion-item__description ol {
  margin: 0;
}

.pd-accordion-item__description p + p,
.pd-accordion-item__description ul + p,
.pd-accordion-item__description ol + p {
  margin-top: var(--pd-spacing-2, 8px);
}

.pd-accordion-item__description img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.information-current__inner-cta {
  display: flex;
  justify-content: center;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-accordion-item__header {
    padding: var(--pd-spacing-4) 0;
  }

  .pd-accordion-item__title {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .pd-accordion-item__description {
    font-size: var(--pd-font-size-base);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-accordion-item__header {
    padding: var(--pd-spacing-4) 0;
  }

  .pd-accordion-item__title {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .pd-accordion-item__description {
    font-size: var(--pd-font-size-base);
  }

  .pd-accordion-item__image {
    display: none;
  }
}

/* ==========================================
   Componente - Banner Interno
   ========================================== */
/* Mobile First */
.pd-internal-banner {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.pd-internal-banner__wrapper {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}

.pd-internal-banner__container {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

.pd-internal-banner__media {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Overlay for mobile/tablet */
.pd-internal-banner__media::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.pd-internal-banner__image-wrapper {
  display: block;
  height: 200px;
  width: 100%;
}

.pd-internal-banner__image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.pd-internal-banner__content {
  align-items: center;
  background-color: var(--pd-container-100);
  display: flex;
  flex-direction: column;
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
  position: relative;
  text-align: center;
  z-index: 2;
}

.pd-internal-banner__seo {
  background-color: var(--pd-neutral-000);
  border-radius: 1000px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08);
  color: var(--pd-primary-500);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-xs);
  font-weight: var(--pd-font-weight-semi-bold);
  line-height: 18px;
  margin-top: -46px;
  padding: var(--pd-spacing-1) var(--pd-spacing-6);
  text-align: center;
  width: fit-content;
}

.pd-internal-banner__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-primary);
  font-size: var(--pd-font-size-2xl);
  font-weight: var(--pd-font-weight-regular);
  line-height: 38px;
  margin: var(--pd-spacing-5) 0 var(--pd-spacing-2);
}

.pd-internal-banner__description {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
}

.pd-internal-banner__description .pd-internal-banner__font-weight-bold {
  color: var(--description-color, var(--pd-new-600));
  font-weight: 600;
}

.pd-internal-banner__cta {
  display: inline-block;
  margin-top: var(--pd-spacing-3);
  width: 100%;
}

.pd-internal-banner__cta pd-button {
  width: 100%;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-internal-banner__media {
    height: 320px;
  }

  .pd-internal-banner__image-wrapper {
    height: 100%;
  }

  .pd-internal-banner__content {
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
  }

  .pd-internal-banner__seo {
    font-size: var(--pd-font-size-sm);
    line-height: 22px;
  }

  .pd-internal-banner__title {
    font-size: var(--pd-font-size-5xl);
    line-height: 54px;
    margin: var(--pd-spacing-6) 0 var(--pd-spacing-2);
  }

  .pd-internal-banner__description {
    font-size: var(--pd-font-size-base);
    max-width: 600px;
  }

  .pd-internal-banner__cta {
    margin-top: var(--pd-spacing-4);
    width: auto;
  }

  .pd-internal-banner__cta pd-button {
    width: auto;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-internal-banner {
    background-color: var(--pd-container-100);
    min-height: 420px;
    padding-left: var(--pd-spacing-5);
  }

  .pd-internal-banner__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .pd-internal-banner__container {
    display: grid;
    gap: var(--pd-spacing-12);
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }

  .pd-internal-banner__media {
    border-radius: 0;
    bottom: 0;
    height: 100%;
    left: 50%;
    overflow: visible;
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    z-index: 1;
  }

  /* Remove overlay in desktop */
  .pd-internal-banner__media::before {
    display: none;
  }

  .pd-internal-banner__image-wrapper {
    clip-path: ellipse(100% 100% at 100% 50%);
    height: 100%;
    width: 100%;
  }

  .pd-internal-banner__image-wrapper--no-clip {
    clip-path: none;
  }

  .pd-internal-banner__image {
    height: 100%;
    object-position: left center;
    width: 100%;
  }

  .pd-internal-banner__content {
    align-items: flex-start;
    align-self: center;
    background-color: transparent;
    border-radius: 0;
    margin-top: 0;
    max-width: 524px;
    padding: 0;
    text-align: left;
  }

  .pd-internal-banner__seo {
    font-size: var(--pd-font-size-base);
    margin-top: 0;
  }

  .pd-internal-banner__title {
    color: var(--pd-neutral-900);
    font-size: var(--pd-font-size-8xl);
    line-height: 54px;
    margin: var(--pd-spacing-6) 0 var(--pd-spacing-2);
  }

  .pd-internal-banner__description {
    font-size: var(--pd-font-size-md);
    line-height: 1.6;
  }

  .pd-internal-banner__cta {
    margin-top: var(--pd-spacing-4);
    width: auto;
  }

  .pd-internal-banner__cta pd-button {
    width: auto;
  }
}

/* ==========================================
   Componente - Barra Superior
   ========================================== */
/* Mobile First */
.pd-top-header {
  background-color: var(--pd-primary-800);
  box-sizing: border-box;
  color: var(--pd-neutral-000);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  padding: var(--pd-spacing-6) var(--pd-spacing-4);
  width: 100%;
}

.pd-top-header--hide-mobile {
  display: none;
}

.pd-top-header--show-mobile {
  display: block;
}

.pd-top-header__container {
  margin: 0 auto;
  max-width: 1280px;
  text-align: center;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-top-header {
    font-size: var(--pd-font-size-base);
  }

  .pd-top-header--hide-mobile {
    display: block;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-top-header {
    font-size: var(--pd-font-size-base);
  }

  .pd-top-header--hide-mobile {
    display: block;
  }
}

/* ==========================================
   Componente - Cabecera Principal
   ========================================== */
/* Mobile First */
.pd-header {
  background-color: var(--pd-primary-900);
  color: var(--pd-neutral-000);
  height: auto;
  position: sticky;
  top: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, position 0.3s ease;
  width: 100%;
  z-index: 100;
}

.pd-header--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pd-header--scrolled.pd-header--transparent,
.pd-header--scrolled.pd-header--hybrid {
  background-color: var(--pd-primary-500);
}

.pd-header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--pd-spacing-3) var(--pd-spacing-4);
}

.pd-header__brand {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-3);
  order: 0;
}

.pd-header__logo {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.pd-header__logo img {
  display: block;
  width: 100px;
}

.pd-header__nav {
  display: none;
  flex: 1 1 100%;
  order: 1;
  padding: 0 var(--pd-spacing-4) var(--pd-spacing-4);
  width: 100%;
}

.pd-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-header__nav-item {
  display: flex;
}

.pd-header__link {
  align-items: center;
  color: inherit;
  display: flex;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  gap: var(--pd-spacing-1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pd-header__link-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: var(--pd-spacing-1) 0 0;
}

.pd-header__actions {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-2);
  order: 2;
}

.pd-header__actions pd-button {
  order: 0;
}

.pd-header__icon-button--search {
  order: 1;
}

.pd-header__icon-button--search:hover {
  background-color: var(--pd-neutral-000);
  border-radius: var(--pd-spacing-3);
}

.pd-header__icon-button--search:hover pd-icon {
  color: var(--pd-neutral-900);
}

.pd-header__icon-button--menu {
  order: 2;
}

.pd-header__icon-button {
  align-items: center;
  background: none;
  border: none;
  border-radius: var(--pd-spacing-3);
  color: inherit;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  transition: background-color 0.2s ease;
  width: 40px;
}

.pd-header__icon-button:focus-visible {
  outline: 2px solid var(--pd-secondary-500);
  outline-offset: 2px;
}

.pd-header__icon-button--menu {
  display: flex;
}

.pd-header--brand {
  background-color: var(--pd-primary-500);
  color: var(--pd-neutral-000);
}

.pd-header--transparent,
.pd-header--hybrid {
  background-color: transparent;
  color: var(--pd-neutral-000);
}

.pd-header--transparent .pd-header__link,
.pd-header--transparent .pd-header__dropdown-trigger,
.pd-header--transparent .pd-header__icon-button,
.pd-header--hybrid .pd-header__link,
.pd-header--hybrid .pd-header__dropdown-trigger,
.pd-header--hybrid .pd-header__icon-button {
  color: var(--pd-neutral-000);
}


/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-header__container {
    gap: var(--pd-spacing-8);
    padding: var(--pd-spacing-4) var(--pd-spacing-6);
  }

  .pd-header__nav {
    padding: 0 var(--pd-spacing-6) var(--pd-spacing-4);
  }

  .pd-header__link,
  .pd-header__dropdown-trigger {
    font-size: var(--pd-font-size-md);
  }

  .pd-header--transparent,
  .pd-header--hybrid {
    background-color: transparent;
  }

  .pd-header__logo img {
    width: 133px;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-header {
    height: 82px;
  }

  .pd-header__container {
    flex-wrap: nowrap;
    gap: var(--pd-spacing-8);
    margin: 0 auto;
    max-width: 1280px;
    padding: var(--pd-spacing-4) var(--pd-spacing-5);
  }

  .pd-header__nav {
    align-self: center;
    display: block;
    flex: 1 1 auto;
    order: 1;
    padding: 0;
    width: auto;
  }

  .pd-header__nav-list {
    align-items: center;
    flex-direction: row;
    gap: var(--pd-spacing-8);
    justify-content: flex-start;
  }

  .pd-header__actions {
    order: 2;
  }

  .pd-header__icon-button--search {
    order: 0;
  }

  .pd-header__actions pd-button {
    display: inline-flex;
    order: 1;
  }

  .pd-header__icon-button--menu {
    display: none;
  }

  .pd-header__link {
    font-size: var(--pd-font-size-md);
    gap: var(--pd-spacing-2);
  }

  .pd-header--brand,
  .pd-header--hybrid {
    background-color: var(--pd-primary-500);
    color: var(--pd-neutral-000);
  }

  .pd-header--transparent {
    background-color: transparent;
    color: var(--pd-neutral-000);
  }

  .pd-header--hybrid .pd-header__link,
  .pd-header--hybrid .pd-header__dropdown-trigger,
  .pd-header--hybrid .pd-header__icon-button {
    color: var(--pd-neutral-000);
  }

  .pd-header__logo img {
    width: 133px;
  }
}

/* ==========================================
   Componente - Cabecera Home
   ========================================== */
/* Mobile First */
.pd-header-home {
  background-color: transparent;
  color: var(--pd-neutral-000);
  height: auto;
  position: sticky;
  top: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, position 0.3s ease;
  width: 100%;
  z-index: 100;
}

.pd-header-home--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--pd-primary-500);
}

.pd-header-home__top-row {
  display: none;
}

.pd-header-home__divider {
  display: none;
}

.pd-header-home__bottom-row {
  align-items: center;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  padding: var(--pd-spacing-3) var(--pd-spacing-4);
}

.pd-header-home__brand {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-3);
  order: 0;
}

.pd-header-home__logo {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.pd-header-home__logo img {
  display: block;
  width: 100px;
}

.pd-header-home__nav {
  display: none;
  flex: 1 1 100%;
  order: 1;
  padding: 0 var(--pd-spacing-4) var(--pd-spacing-4);
  width: 100%;
}

.pd-header-home__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-header-home__nav-item {
  display: flex;
}

.pd-header-home__link {
  align-items: center;
  color: inherit;
  display: flex;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  gap: var(--pd-spacing-1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pd-header-home__link-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: var(--pd-spacing-1) 0 0;
}

.pd-header-home__actions {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-3);
  order: 2;
}

.pd-header-home__actions pd-button {
  order: 0;
}

.pd-header-home__icon-button--search {
  order: 1;
}

.pd-header-home__icon-button--menu {
  order: 2;
}

.pd-header-home__icon-button {
  align-items: center;
  background: none;
  border: none;
  border-radius: var(--pd-spacing-3);
  color: inherit;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  transition: background-color 0.2s ease;
  width: 40px;
}

.pd-header-home__icon-button:focus-visible {
  outline: 2px solid var(--pd-secondary-500);
  outline-offset: 2px;
}

.pd-header-home__icon-button--menu {
  display: flex;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-header-home {
    background-color: transparent;
  }

  .pd-header-home--scrolled {
    background-color: var(--pd-primary-500);
  }

  .pd-header-home__bottom-row {
    background-color: transparent;
    gap: var(--pd-spacing-8);
    padding: var(--pd-spacing-4) var(--pd-spacing-6);
  }

  .pd-header-home__nav {
    padding: 0 var(--pd-spacing-6) var(--pd-spacing-4);
  }

  .pd-header-home__link {
    font-size: var(--pd-font-size-md);
  }

  .pd-header-home__logo img {
    width: 133px;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-header-home {
    background-color: transparent;
    color: var(--pd-neutral-000);
  }

  .pd-header-home--scrolled {
    background-color: var(--pd-primary-500);
  }

  /* Hide top row and divider when scrolling on desktop */
  .pd-header-home--scrolled .pd-header-home__top-row {
    display: none;
  }

  .pd-header-home--scrolled .pd-header-home__divider {
    display: none;
  }

  .pd-header-home__top-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    padding: var(--pd-spacing-8) 0;
  }

  .pd-header-home__brand {
    order: 0;
  }

  .pd-header-home__top-actions {
    order: 1;
  }

  .pd-header-home__divider {
    border-top: 1px solid var(--pd-container-500);
    display: block;
    margin: 0;
    width: 100%;
  }

  .pd-header-home__bottom-row {
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--pd-spacing-8);
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    padding: var(--pd-spacing-4) 0;
  }

  /* When scrolling, logo should appear in bottom-row */
  .pd-header-home--scrolled .pd-header-home__bottom-row .pd-header-home__brand {
    display: flex;
    order: 0;
  }

  .pd-header-home--scrolled .pd-header-home__nav {
    order: 1;
  }

  .pd-header-home--scrolled .pd-header-home__actions {
    order: 2;
  }

  .pd-header-home__nav {
    align-self: center;
    display: block;
    flex: 1 1 auto;
    order: 0;
    padding: 0;
    width: auto;
  }

  .pd-header-home__nav-list {
    align-items: center;
    flex-direction: row;
    gap: var(--pd-spacing-8);
    justify-content: flex-start;
  }

  .pd-header-home__actions {
    align-items: center;
    display: flex;
    gap: var(--pd-spacing-3);
    order: 1;
  }

  .pd-header-home__icon-button--search {
    order: 0;
  }

  .pd-header-home__icon-button--search:hover {
    background-color: var(--pd-neutral-000);
    border-radius: var(--pd-spacing-3);
  }

  .pd-header-home__icon-button--search:hover pd-icon {
    color: var(--pd-neutral-900);
  }

  .pd-header-home__actions pd-button {
    display: inline-flex;
    order: 1;
  }

  .pd-header-home__icon-button--menu {
    display: none;
  }

  .pd-header-home__link {
    font-size: var(--pd-font-size-md);
    gap: var(--pd-spacing-2);
  }

  .pd-header-home__logo img {
    width: 200px;
  }

  /* When scrolling, logo should be 133px */
  .pd-header-home--scrolled .pd-header-home__logo img {
    width: 133px;
  }
}

/* ==========================================
   Componente - Megamenu
   ========================================== */
/* Mobile First - Megamenu */
@keyframes pd-megamenu-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Overlay */
.pd-megamenu__mobile-overlay {
  align-items: flex-start;
  animation: pd-megamenu-fade-in 0.2s ease-out;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 10000;
}

/* Mobile Container */
.pd-megamenu__mobile-container {
  background-color: var(--pd-neutral-000);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  width: 100%;
}

/* Mobile Header */
.pd-megamenu__mobile-header {
  align-items: center;
  background-color: var(--pd-primary-500);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: var(--pd-spacing-4);
  position: fixed;
  width: 100%;
}

.pd-megamenu__mobile-back-icon-wrapper {
  padding-top: var(--pd-spacing-2);
}

.pd-megamenu__mobile-back {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--pd-neutral-000);
  cursor: pointer;
  display: flex;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  gap: var(--pd-spacing-1);
  line-height: 24px;
}

.pd-megamenu__mobile-back-text {
  color: var(--pd-neutral-000);
}

.pd-megamenu__mobile-logo {
  height: 24px;
  width: auto;
}

.pd-megamenu__mobile-close {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: var(--pd-spacing-2);
}

/* Mobile Menu */
.pd-megamenu__mobile-menu {
  background-color: var(--pd-neutral-000);
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 75px;
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
  width: 100%;
}

.pd-megamenu__mobile-item {
  align-items: center;
  border-bottom: 1px solid var(--pd-container-500);
  box-sizing: border-box;
  color: var(--pd-neutral-900);
  display: flex;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  height: 48px;
  justify-content: space-between;
  line-height: 24px;
  padding: var(--pd-spacing-3) 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
}

.pd-megamenu__mobile-item:active {
  background-color: var(--pd-container-100);
}

.pd-megamenu__mobile-item:first-of-type {
  border-top: 1px solid var(--pd-container-500);
}

.pd-megamenu__mobile-item-icon-wrapper {
  padding-top: var(--pd-spacing-1);
}

/* Mobile Submenu */
.pd-megamenu__mobile-submenu {
  background-color: var(--pd-neutral-000);
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 75px;
  padding: var(--pd-spacing-6) var(--pd-spacing-4);
  width: 100%;
}

.pd-megamenu__mobile-submenu-section {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--pd-spacing-8);
}

.pd-megamenu__mobile-submenu-section:last-of-type {
  margin-bottom: 0;
}

.pd-megamenu__mobile-submenu-section-title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-md);
  font-weight: var(--pd-font-weight-normal);
  line-height: 26px;
  margin: 0 0 var(--pd-spacing-2) 0;
}

.pd-megamenu__mobile-submenu-divider {
  border-top: 1px solid var(--pd-container-500);
  margin-bottom: var(--pd-spacing-4);
  width: 100%;
}

.pd-megamenu__mobile-submenu-items {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
}

.pd-megamenu__mobile-submenu-item {
  align-items: center;
  background-color: var(--pd-neutral-000);
  box-sizing: border-box;
  display: flex;
  gap: var(--pd-spacing-3);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
  width: 100%;
}

.pd-megamenu__mobile-submenu-item:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pd-megamenu__mobile-submenu-item-icon {
  align-items: center;
  border: 1px solid;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  height: 56px;
  justify-content: center;
  padding-top: var(--pd-spacing-1);
  width: 56px;
}

.pd-megamenu__mobile-submenu-item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--pd-spacing-1);
}

.pd-megamenu__mobile-submenu-item-label {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
}

.pd-megamenu__mobile-submenu-item-subtitle {
  color: var(--pd-neutral-600);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
}

/* Mobile Submenu CTA Section */
.pd-megamenu__mobile-submenu-cta {
  background-color: var(--pd-container-100);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  padding: var(--pd-spacing-6) var(--pd-spacing-4);
  width: 100%;
}

.pd-megamenu__mobile-submenu-cta-text {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
  text-align: center;
}

/* Mobile CTA Section */
.pd-megamenu__mobile-cta {
  align-items: stretch;
  background-color: var(--pd-container-100);
  box-sizing: border-box;
  display: grid;
  gap: var(--pd-spacing-3);
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
  width: 100%;
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  /* Ocultar mobile overlay en desktop */
  .pd-megamenu__mobile-overlay {
    display: none;
  }

  /* Desktop Overlay */
  .pd-megamenu__overlay {
    align-items: flex-start;
    animation: pd-megamenu-fade-in 0.2s ease-out;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
  }

  .pd-megamenu__container {
    background-color: transparent;
    max-width: 100%;
    position: relative;
    width: 100%;
  }

  .pd-megamenu__content {
    display: grid;
    grid-template-columns: 1fr auto;
    height: 420px;
    max-width: 100%;
    position: fixed;
    top: var(--pd-megamenu-top-offset, 263px);
    width: 100%;
  }

  /* Columnas A1 y A2 (izquierda) */
  .pd-megamenu__columns-wrapper {
    background-color: var(--pd-neutral-000);
    display: grid;
    gap: var(--pd-spacing-8);
    grid-template-columns: 1fr 1fr;
    padding: var(--pd-spacing-8);
  }

  .pd-megamenu__column {
    display: flex;
    flex-direction: column;
  }

  .pd-megamenu__column-title {
    color: var(--pd-neutral-900);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-md);
    font-weight: var(--pd-font-weight-normal);
    line-height: 26px;
    margin: 0;
    padding-bottom: var(--pd-spacing-2);
  }

  .pd-megamenu__divider {
    border-top: 1px solid var(--pd-container-500);
    margin-bottom: var(--pd-spacing-4);
    width: 100%;
  }

  .pd-megamenu__items {
    display: flex;
    flex-direction: column;
    gap: var(--pd-spacing-4);
  }

  .pd-megamenu__item {
    align-items: center;
    color: var(--pd-neutral-900);
    display: flex;
    gap: var(--pd-spacing-3);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .pd-megamenu__item-icon-wrapper {
    align-items: center;
    border: 1px solid;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-shrink: 0;
    height: 56px;
    justify-content: center;
    padding-top: var(--pd-spacing-1);
    width: 56px;
  }

  .pd-megamenu__item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--pd-spacing-1);
  }

  .pd-megamenu__item-label {
    color: var(--pd-neutral-900);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-base);
    font-weight: var(--pd-font-weight-normal);
    line-height: 24px;
  }

  .pd-megamenu__item-subtitle {
    color: var(--pd-neutral-600);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-sm);
    font-weight: var(--pd-font-weight-normal);
    line-height: 22px;
  }

  /* Columna B (right) - CTA Section */
  .pd-megamenu__cta-section {
    background-color: var(--pd-container-100);
    display: flex;
    flex-direction: column;
    gap: var(--pd-spacing-4);
    justify-content: center;
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
    width: 400px;
  }

  .pd-megamenu__cta-image {
    border-radius: 12px;
    height: 212px;
    object-fit: cover;
    width: 100%;
  }

  .pd-megamenu__cta-text {
    color: var(--pd-neutral-900);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-base);
    font-weight: var(--pd-font-weight-normal);
    line-height: 24px;
    margin: 0;
    text-align: center;
  }

  .pd-megamenu__cta-section pd-button {
    width: 100%;
  }
}

/* ==========================================
   pd-search-box
   ========================================== */
/* Mobile First - Search Box */
@keyframes pd-search-box-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Overlay */
.pd-search-box__overlay {
  align-items: flex-start;
  animation: pd-search-box-fade-in 0.2s ease-out;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 10000;
}

/* Mobile Container */
.pd-search-box__container {
  background-color: transparent;
  max-width: 100%;
  position: relative;
  margin-top: var(--pd-search-box-mobile-margin-top, 142px);
  width: 100%;
}

.pd-search-box__content {
  background-color: var(--pd-neutral-000);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: var(--pd-spacing-4);
  width: 100%;
}

.pd-search-box__input-wrapper {
  align-items: end;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  width: 100%;
}

.pd-search-box__input-wrapper pd-input {
  flex: 1;
}

.pd-search-box__input-wrapper-inner {
  width: 100%;
}

.pd-search-box__search-button {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: var(--pd-spacing-2);
  position: absolute;
  transition: opacity 0.2s ease;
}

.pd-search-box__search-button:hover {
  opacity: 0.7;
}

.pd-search-box__search-button:active {
  opacity: 0.5;
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-search-box__overlay {
    align-items: flex-start;
    justify-content: center;
  }

  .pd-search-box__container {
    background-color: transparent;
    max-width: 100%;
    position: relative;
    margin-top: 0;
    width: 100%;
  }

  .pd-search-box__content {
    align-items: center;
    background-color: var(--pd-neutral-000);
    box-sizing: border-box;
    display: flex;
    flex-direction: column; 
    padding: var(--pd-spacing-16) var(--pd-spacing-5);
    position: fixed;
    top: var(--pd-search-box-top-offset, 263px);
    width: 100%;
  }
}

/* ==========================================
   Componente - Campo de Búsqueda
   ========================================== */
/* Mobile First */
.pd-input {
    display: flex;
    flex-direction: column;
    gap: var(--pd-spacing-2);
    width: 100%;
  }

  .pd-input__label {
    color: var(--pd-neutral-900);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--pd-font-size-base);
    font-weight: var(--pd-font-weight-normal);
    line-height: 24px;
    margin: 0;
  }

  .pd-input__label-optional {
    color: var(--pd-neutral-600);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-xs);
    font-weight: var(--pd-font-weight-normal);
    line-height: 18px;
  }
  
  .pd-input__wrapper {
    align-items: center;
    background-color: var(--pd-neutral-000);
    border: 1px solid var(--pd-container-700);
    border-radius: var(--pd-spacing-1);
    box-sizing: border-box;
    display: flex;
    gap: var(--pd-spacing-2);
    padding: 0 var(--pd-spacing-4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
  }
  
  .pd-input__wrapper:focus-within {
    border-color: var(--pd-secondary-500);
    box-shadow: 0 0 0 3px rgba(0, 71, 186, 0.1);
  }
  
  .pd-input__wrapper--error {
    border-color: var(--pd-error-500);
  }
  
  .pd-input__wrapper--error:focus-within {
    border-color: var(--pd-error-500);
    box-shadow: 0 0 0 3px rgba(209, 58, 59, 0.1);
  }
  
  .pd-input__wrapper--disabled {
    background-color: var(--pd-neutral-100);
    cursor: not-allowed;
    opacity: 0.6;
  }

  .pd-input__wrapper--search {
    border: none;
    border-bottom: 1px solid var(--pd-container-700);
    border-radius: 0;
  }

  .pd-input__wrapper--search:focus-within {
    border-bottom: 1px solid var(--pd-container-700)!important;
  }

  .pd-input__wrapper--search:focus-within {
    border-bottom-color: var(--pd-secondary-500);
    box-shadow: none;
  }

  .pd-input__wrapper--select {
    cursor: pointer;
  }

  .pd-input__wrapper--textarea {
    align-items: flex-start;
    min-height: 120px;
    height: auto;
    padding: var(--pd-spacing-4);
  }
  
  .pd-input__wrapper--medium {
    height: 50px;
  }

  .pd-input__wrapper--medium.pd-input__wrapper--textarea {
    height: auto;
  }
  
  .pd-input__wrapper--large {
    height: 56px;
  }

  .pd-input__wrapper--large.pd-input__wrapper--textarea {
    height: auto;
  }
  
  .pd-input__icon {
    color: var(--pd-container-700);
    display: flex;
    flex-shrink: 0;
  }
  
  .pd-input__icon--error {
    align-items: center;
    background-color: var(--pd-error-500);
    border-radius: 50%;
    display: flex;
    height: 24px;
    justify-content: center;
    width: 24px;
  }

  .pd-input__icon--error pd-icon {
    display: flex;
  }

  .pd-input__icon--clear {
    align-items: center;
    background-color: var(--pd-container-200);
    border-radius: 50%;
    display: flex;
    height: 24px;
    justify-content: center;
    width: 24px;
  }

  .pd-input__icon--clear pd-icon {
    display: flex;
  }

  .pd-input__icon--clickable pd-icon,
  .pd-input__icon pd-icon {
    display: flex;
  }
  
  .pd-input__icon--clickable {
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .pd-input__icon--clickable:hover {
    color: var(--pd-neutral-900);
  }
  
  .pd-input__field {
    background: transparent;
    border: none;
    color: var(--pd-neutral-900);
    flex: 1;
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-sm);
    font-weight: var(--pd-font-weight-normal);
    line-height: 24px;
    outline: none;
    width: 100%;
    pointer-events: auto;
    position: relative;
    z-index: 1;
  }

  .pd-input__field--textarea {
    min-height: 100px;
    resize: none;
    line-height: 1.5;
    padding: 0;
  }

  select.pd-input__field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    width: 100%;
    min-width: 0;
  }

  select.pd-input__field:invalid {
    color: var(--pd-container-700);
  }

  select.pd-input__field option {
    color: var(--pd-neutral-900);
    width: 100%;
  }

  select.pd-input__field option:disabled {
    color: var(--pd-container-700);
  }

  .pd-input__wrapper--select {
    width: 100%;
    box-sizing: border-box;
  }
  
  .pd-input__field::placeholder {
    color: var(--pd-container-700);
  }
  
  .pd-input__field:disabled {
    cursor: not-allowed;
  }
  
  .pd-input__actions {
    align-items: center;
    display: flex;
    gap: var(--pd-spacing-2);
    flex-shrink: 0;
  }

  .pd-input__icon--clickable {
    pointer-events: auto;
  }

  .pd-input__wrapper--select {
    position: relative;
    padding: 0; /
  }

  .pd-input__wrapper--select .pd-input__field {
    cursor: pointer;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 0 var(--pd-spacing-4); 
    padding-right: calc(var(--pd-spacing-4) + 40px);
    box-sizing: border-box;
  }

  .pd-input__wrapper--select .pd-input__actions {
    pointer-events: none;
    flex-shrink: 0;
    position: absolute;
    right: var(--pd-spacing-4); 
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .pd-input__wrapper--select .pd-input__actions .pd-input__icon--clickable {
    pointer-events: none;
    position: relative;
    z-index: 1;
  }

  .pd-input__icon--select {
    pointer-events: none !important;
  }
  
  .pd-input__error-message {
    color: var(--pd-error-500);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-sm);
    font-weight: var(--pd-font-weight-normal);
    line-height: 22px;
    margin: 0;
  }
  
  /* Tablet (≥ 768px y ≤ 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .pd-input__wrapper--large {
      height: 60px;
    }
  
    .pd-input__field {
      font-size: var(--pd-input-font-size, var(--pd-font-size-base));
    }
  }
  
  /* Desktop (≥ 1024px) */
  @media (min-width: 1024px) {
    .pd-input__wrapper--large {
      height: 60px;
    }

    .pd-input__field {
      font-size: var(--pd-input-font-size, 16px);
    }

    .pd-input__label {
      font-size: var(--pd-font-size-md);
      line-height: 26px;
    }
  }

  /* The width of the native dropdown is controlled by the browser/OS */
  /* However, we can ensure that the select has the correct width */
  select.pd-input__field {
    min-width: 100%;
    box-sizing: border-box;
  }

  /* For some browsers, the dropdown will take the width of the select */
  @supports (-webkit-appearance: none) {
    select.pd-input__field {
      width: 100%;
    }
  }

/* ==========================================
   Componente - Carrusel con Bullets
   ========================================== */
/* Mobile First */
.pd-bullets {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.pd-bullets__container {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.pd-bullets__container--fade {
  transition: opacity 0.4s ease-in-out;
}

.pd-bullets__slide {
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  width: 100%;
}

.pd-bullets__container--fade .pd-bullets__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.pd-bullets__container--fade .pd-bullets__slide--active {
  opacity: 1;
  position: relative;
}

.pd-bullets__navigation {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-2, 8px);
  justify-content: center;
  margin-top: var(--pd-spacing-6, 24px);
}

.pd-bullets__bullet {
  background-color: var(--pd-container-500);
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: all 0.3s ease;
  width: 12px;
}

.pd-bullets__bullet--active {
  background-color: var(--pd-secondary-500);
  border-radius: 4px;
  width: 36px;
}

.pd-bullets__bullet:hover {
  background-color: var(--pd-secondary-500);
}

/* Hide bullets on tablet and desktop by default */
@media (min-width: 768px) {
  .pd-bullets__navigation {
    display: none;
  }

  .pd-bullets__container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--pd-spacing-4);
    justify-content: center;
    transform: none !important;
  }

  .pd-bullets__slide {
    width: auto;
    flex-shrink: 1;
  }

  .pd-bullets__container--fade .pd-bullets__slide {
    opacity: 1;
    position: relative;
  }
}

/* Show bullets on tablet if explicitly enabled */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-bullets--show-bullets-tablet .pd-bullets__navigation {
    display: flex;
  }

  .pd-bullets--show-bullets-tablet .pd-bullets__container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .pd-bullets--show-bullets-tablet .pd-bullets__slide {
    width: 100%;
    flex-shrink: 0;
  }

  .pd-bullets--show-bullets-tablet .pd-bullets__container--fade .pd-bullets__slide {
    opacity: 0;
    position: absolute;
  }

  .pd-bullets--show-bullets-tablet .pd-bullets__container--fade .pd-bullets__slide--active {
    opacity: 1;
    position: relative;
  }
}

/* Show bullets on desktop if explicitly enabled */
@media (min-width: 1024px) {
  .pd-bullets--show-bullets-desktop .pd-bullets__navigation {
    display: flex;
  }

  .pd-bullets--show-bullets-desktop .pd-bullets__container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .pd-bullets--show-bullets-desktop .pd-bullets__slide {
    flex-shrink: 0;
    width: 100%;
  }

  .pd-bullets--show-bullets-desktop .pd-bullets__container--fade .pd-bullets__slide {
    opacity: 0;
    position: absolute;
  }

  .pd-bullets--show-bullets-desktop .pd-bullets__container--fade .pd-bullets__slide--active {
    opacity: 1;
    position: relative;
  }
}

/* ==========================================
   Componente - Tarjeta de Testimonio
   ========================================== */
/* Mobile First */
.pd-card-testimonial {
  background-color: var(--pd-neutral-000);
  border: 1px solid var(--pd-neutral-000);
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
}

.pd-card-testimonial__media {
  background-color: var(--pd-neutral-900);
  height: 344px;
  overflow: hidden;
  position: relative;
}

.pd-card-testimonial__media-img,
.pd-card-testimonial__media-video {
  filter: brightness(0.88);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pd-card-testimonial__play-button {
  align-items: center;
  background: transparent;
  border: 2px solid var(--pd-neutral-000);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  left: 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
  width: 46px;
}

.pd-card-testimonial__play-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pd-card-testimonial__play-icon {
  padding: var(--pd-spacing-2) 0 var(--pd-spacing-1) var(--pd-spacing-1);
}

.pd-card-testimonial__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-2);
  padding: 36px var(--pd-spacing-4) var(--pd-spacing-6);
  position: relative;
  text-align: center;
}

.pd-card-testimonial__chip {
  background-color: var(--pd-neutral-000);
  border-radius: 1000px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-xs);
  font-weight: var(--pd-font-weight-semi-bold);
  height: 26px;
  left: 50%;
  line-height: 18px;
  padding: var(--pd-spacing-1) var(--pd-spacing-4);
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pd-card-testimonial__chip--auto {
  color: var(--pd-new-600);
}

.pd-card-testimonial__chip--casa {
  color: var(--pd-house-500);
}

.pd-card-testimonial__chip--seminuevo {
  color: var(--pd-semi-new-500);
}

.pd-card-testimonial__text {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: var(--pd-spacing-6);
  margin: 0;
}

.pd-card-testimonial__author {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  margin: 0;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pd-card-testimonial {
    width: 416px;
  }

  .pd-card-testimonial__content {
    gap: var(--pd-spacing-2);
    padding: 40px var(--pd-spacing-4) var(--pd-spacing-6);
  }

  .pd-card-testimonial__chip {
    font-size: var(--pd-font-size-sm);
    height: 30px;
    line-height: 22px;
    top: -15px;
  }

  .pd-card-testimonial__text {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .pd-card-testimonial__author {
    font-size: var(--pd-font-size-base);
    line-height: var(--pd-spacing-6);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-card-testimonial {
    width: 416px;
  }

  .pd-card-testimonial__content {
    gap: var(--pd-spacing-2);
    justify-content: space-between;
    min-height: 180px;
    padding: var(--pd-spacing-6) var(--pd-spacing-4) var(--pd-spacing-4);
  }

  .pd-card-testimonial__chip {
    font-size: var(--pd-font-size-sm);
    height: 30px;
    line-height: 22px;
    top: -15px;
  }

  .pd-card-testimonial__text {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .pd-card-testimonial__author {
    font-size: var(--pd-font-size-base);
    line-height: var(--pd-spacing-6);
  }
}

/* ==========================================
   pd-card-car
   ========================================== */
/* Mobile First */
.pd-card-car {
  background: var(--pd-neutral-000);
  border-radius: var(--pd-spacing-3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  padding: var(--pd-spacing-4);
}

.pd-card-car__media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--pd-spacing-3);
  position: relative;
}

.pd-card-car__media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.pd-card-car__mileage {
  position: absolute;
  top: var(--pd-spacing-2);
  right: var(--pd-spacing-2);
}

.pd-card-car__content {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-1);
  padding-top: var(--pd-spacing-4);
  border-top: 1px solid var(--pd-container-500);
}

.pd-card-car__caption {
  display: flex;
  flex-direction: column;
}

.pd-card-car__pretitle {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
}

.pd-card-car__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-medium);
  line-height: 26px;
  margin: 0;
}

.pd-card-car__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pd-card-car__price {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pd-card-car__price-label {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
}

.pd-card-car__price-value {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-semi-bold);
  line-height: 26px;
}

.pd-card-car--new-car .pd-card-car__price-value {
  color: var(--pd-new-600);
}

.pd-card-car--house .pd-card-car__price-value {
  color: var(--pd-house-500);
}

.pd-card-car--semi-new-car .pd-card-car__price-value {
  color: var(--pd-semi-new-500);
}

/* Tablet (≥ 768px) */
.pd-card-car__title {
  font-size: var(--pd-font-size-md);
}

.pd-card-car__price-value {
  font-size: var(--pd-font-size-md);
}

/* ==========================================
   pd-card-horizontal
   ========================================== */
/* Mobile First */
.pd-card-horizontal {

  background-color: var(--pd-neutral-000) !important;
  border-radius: var(--pd-spacing-3) !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;

}

.pd-card-horizontal__image {
  flex-shrink: 0 !important;
  height: 200px !important;
  overflow: hidden !important;
  width: 100% !important;
}

.pd-card-horizontal__image img {
  height: 100% !important;
  object-fit: cover !important;
}

.pd-card-horizontal__content {


  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: var(--pd-spacing-4) !important;
  gap: var(--pd-spacing-3) !important;
  text-align: center !important;


}

.pd-card-horizontal__title {


  color: var(--pd-neutral-900) !important;
  font-family: var(--pd-font-secondary) !important;
  font-size: var(--pd-font-size-md) !important;
  font-weight: var(--pd-font-weight-medium) !important;
  line-height: 26px !important;
  margin: 0 !important;


}

.pd-card-horizontal__description {


  color: var(--pd-neutral-900) !important;
  font-family: var(--pd-font-secondary) !important;
  font-size: var(--pd-font-size-sm) !important;
  font-weight: var(--pd-font-weight-normal) !important;
  line-height: 22px !important;
  margin: 0 !important;


}

/* Tablet and Desktop (≥ 768px) */
@media (min-width: 768px) {
  .pd-card-horizontal {

    flex-direction: row !important;
    height: 100% !important;
    min-height: 222px !important;
  
}

  .pd-card-horizontal__image {


    height: auto !important;
    flex: 1 !important;
    width: 316px !important;
  

}

  .pd-card-horizontal__content {


    justify-content: center !important;
    padding: var(--pd-spacing-8) var(--pd-spacing-6) !important;
    flex: 1 !important;
    text-align: left !important;
  

}

  .pd-card-horizontal__description {


    font-size: var(--pd-font-size-base) !important;
    line-height: 24px !important;
  

}
}

/* ==========================================
   Componente - Chip
   ========================================== */
/* Mobile First */
.pd-chip {
  background-color: var(--pd-container-100);
  border-radius: var(--pd-spacing-3);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08);
  color: var(--pd-neutral-900);
  display: inline-block;
  font-family: var(--pd-font-primary);
  font-size: var(--pd-font-size-xs);
  font-weight: var(--pd-font-weight-semi-bold);
  line-height: 18px;
  padding: var(--pd-spacing-1) var(--pd-spacing-4);
  text-transform: uppercase;
  white-space: nowrap;
}

.pd-chip--new-car {
  color: var(--pd-new-600);
}

.pd-chip--house {
  color: var(--pd-house-500);
}

.pd-chip--semi-new-car {
  color: var(--pd-semi-new-500);
}

/* ==========================================
   Sección Cabecera Compartida
   ========================================== */
/* Mobile First */
.shared-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shared-header__top {
  flex-shrink: 0;
}

.shared-header__top pd-top-header {
  flex-shrink: 0;
}

.shared-header__main {
  flex-shrink: 0;
}

.shared-header__main pd-header {
  display: block;
  width: 100%;
}

/* ==========================================
   shared-testimonials
   ========================================== */
/* Mobile First */
.shared-testimonials {
  background-color: var(--pd-container-100);
  padding: var(--pd-spacing-8) 0;
  width: 100%;
}

.shared-testimonials__container {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-8);
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 var(--pd-spacing-4);
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .shared-testimonials {
    padding: var(--pd-spacing-16) 0;
  }

  .shared-testimonials__container {
    gap: var(--pd-spacing-8);
    padding: 0 var(--pd-spacing-6);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .shared-testimonials {
    padding: var(--pd-spacing-16) var(--pd-spacing-5);
  }

  .shared-testimonials__container {
    gap: var(--pd-spacing-8);
    padding: 0;
  }
}

/* ==========================================
   pd-video-modal (popup video testimonios)
   ========================================== */
.pd-video-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: var(--pd-spacing-4);
  position: fixed;
  z-index: 9999;
}

.pd-video-modal[hidden] {
  display: none;
}

body.pd-video-modal-open {
  overflow: hidden;
}

.pd-video-modal__backdrop {
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.pd-video-modal__box {
  max-height: calc(100vh - var(--pd-spacing-8));
  max-width: 900px;
  position: relative;
  width: 100%;
}

.pd-video-modal__close {
  background: var(--pd-neutral-000) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/20px no-repeat;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 40px;
  z-index: 1;
}

.pd-video-modal__close:hover {
  opacity: 0.9;
}

.pd-video-modal__content {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pd-video-modal__content video,
.pd-video-modal__content iframe {
  display: block;
  height: auto;
  max-height: calc(100vh - var(--pd-spacing-8) - 60px);
  width: 100%;
}

.pd-video-modal__content video {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.pd-video-modal__content iframe {
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

/* ==========================================
   shared-close
   ========================================== */
/* Mobile First */
.shared-close {
    background-color: var(--pd-neutral-000);
    box-sizing: border-box;
    padding: var(--pd-spacing-8) 0;
    width: 100%;
  }
  
  .shared-close__container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 var(--pd-spacing-4);
  }
  
  .shared-close__card {
    background-color: var(--pd-neutral-100);
    border-radius: var(--pd-spacing-4);
    overflow: hidden;
    position: relative;
  }

  .shared-close__background {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .shared-close__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(30, 33, 33, 0.8) 50%
    );
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }

  .shared-close__cta .pd-button.clear {
    font-size: var(--pd-font-size-md) !important;
    }

  .shared-close__content {
    display: flex;
    flex-direction: column;
    gap: var(--pd-spacing-6);
    height: 400px;
    justify-content: flex-end;
    padding: var(--pd-spacing-4);
    position: relative;
    z-index: 1;
  }
  
  .shared-close__description {
    color: var(--pd-neutral-000);
    font-family: var(--pd-font-secondary);
    font-size: var(--pd-font-size-base);
    font-weight: var(--pd-font-weight-normal);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
  }
  
  .shared-close__cta {
    display: flex;
  }
  
  /* Tablet (≥ 768px y ≤ 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .shared-close {
      padding: var(--pd-spacing-16) var(--pd-spacing-5);
    }
  
    .shared-close__container {
      padding: 0 var(--pd-spacing-6);
    }
  
    .shared-close__card {
      border-radius: var(--pd-spacing-6);
    }
  
    .shared-close__content {
      gap: var(--pd-spacing-8);
      padding: var(--pd-spacing-12) var(--pd-spacing-10);
    }
  
    .shared-close__description {
      font-size: var(--pd-font-size-md);
      max-width: 500px;
    }
  }
  
  /* Desktop (≥ 1024px) */
  @media (min-width: 1024px) {
    .shared-close {
      padding: var(--pd-spacing-16) var(--pd-spacing-5);
    }
  
    .shared-close__container {
      padding: 0;
    }
  
    .shared-close__card {
      border-radius: var(--pd-spacing-6);
      min-height: 420px;
    }
  
    .shared-close__content {
      box-sizing: border-box;
      gap: var(--pd-spacing-8);
      height: 420px;
      padding: var(--pd-spacing-16) 116px;
    }
  
    .shared-close__overlay {
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(30, 33, 33, 0.8) 50%
      );
    }
  
    .shared-close__description {
      font-size: var(--pd-font-size-md);
      max-width: 650px;
    }
  }

/* ==========================================
   shared-side-sheet
   ========================================== */
/* 1. Wrapper del side sheet - SIEMPRE position: fixed (BLOQUES-README) */
section.shared-side-sheet {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
}

/* 2. Mostrar side sheet (remover clase --hidden) */
section.shared-side-sheet:not(.shared-side-sheet--hidden) {
  display: block;
  pointer-events: auto;
}

section.shared-side-sheet:not(.shared-side-sheet--hidden) .shared-side-sheet__overlay {
  display: flex;
}

/* 3. Estado oculto */
.shared-side-sheet--hidden {
  display: none !important;
}

/* Mobile First */
/* 4. Overlay oscuro - position: fixed y flex para alinear (BLOQUES-README) */
.shared-side-sheet__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 5. Panel blanco (aside) - SOLO este tiene background (BLOQUES-README) */
aside.shared-side-sheet {
  background-color: var(--pd-neutral-000);
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.shared-side-sheet__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--pd-spacing-4) var(--pd-spacing-4) var(--pd-spacing-4) var(--pd-spacing-6);
}

.shared-side-sheet__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
}

.shared-side-sheet__close {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--pd-neutral-700);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: var(--pd-spacing-2);
  transition: color 0.2s ease;
}

.shared-side-sheet__close:hover {
  color: var(--pd-neutral-900);
}

.shared-side-sheet__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--pd-spacing-6) var(--pd-spacing-4);
}

.shared-side-sheet__content pd-side-sheet-slides {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 0;
  margin-bottom: var(--pd-spacing-4);
}

.shared-side-sheet__slide {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

.shared-side-sheet__illustration {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin: 0 auto;
  max-height: min(13.75rem, 50vh);
  max-width: 100%;
  min-height: 0;
  overflow: visible;
  width: 100%;
}

.shared-side-sheet__image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: min(13.75rem, 50vh);
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  width: auto;
}

.shared-side-sheet__slide-info {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: var(--pd-spacing-4);
  margin-top: var(--pd-spacing-4);
}

.shared-side-sheet__bullets {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: var(--pd-spacing-2);
  justify-content: center;
  margin-top: var(--pd-spacing-4);
}

.shared-side-sheet__bullet {
  background-color: var(--pd-container-500);
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: all 0.3s ease;
  width: 12px;
}

.shared-side-sheet__bullet--active {
  background-color: var(--pd-secondary-500);
  border-radius: 4px;
  width: 36px;
}

.shared-side-sheet__bullet:hover {
  background-color: var(--pd-secondary-500);
}

.shared-side-sheet__slide-title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-primary);
  font-size: var(--pd-font-size-md);
  font-weight: var(--pd-font-weight-regular);
  line-height: 26px;
  margin: 0;
  text-align: left;
}

.shared-side-sheet__slide-description {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  margin: 0;
  text-align: left;
}

.shared-side-sheet__footer {
  flex-shrink: 0;
  padding: var(--pd-spacing-4) var(--pd-spacing-4);
}

.shared-side-sheet__actions {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-4);
  justify-content: space-between;
}

.shared-side-sheet__actions--centered {
  justify-content: center;
}

.shared-side-sheet__actions--centered pd-button {
  flex: 1;
  width: 100%;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .shared-side-sheet__overlay {
    align-items: flex-end;
    justify-content: flex-end;
  }

  aside.shared-side-sheet {
    height: 100vh;
    max-height: 100vh;
    max-width: 480px;
    width: 480px;
    animation: slideInRight 0.3s ease;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .shared-side-sheet__header {
    padding: var(--pd-spacing-6);
  }

  .shared-side-sheet__content {
    padding: var(--pd-spacing-8) var(--pd-spacing-6);
  }

  .shared-side-sheet__footer {
    padding: var(--pd-spacing-6);
  }

  .shared-side-sheet__slide {
    align-self: stretch;
    gap: var(--pd-spacing-6);
    height: 100%;
  }

  .shared-side-sheet__illustration {
    flex: 1;
    flex-shrink: 1;
    max-height: none;
    overflow: hidden;
  }

  .shared-side-sheet__image {
    height: 100%;
    max-height: none;
    object-position: center;
    width: 100%;
  }

  .shared-side-sheet__slide-title {
    font-size: var(--pd-font-size-2xl);
    line-height: 26px;
  }

  .shared-side-sheet__slide-description {
    font-size: var(--pd-font-size-base);
    line-height: 24px;
  }

  .shared-side-sheet__actions--centered pd-button {
    flex: none;
    width: auto;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .shared-side-sheet__overlay {
    align-items: flex-end;
    justify-content: flex-end;
  }

  aside.shared-side-sheet {
    height: 100vh;
    max-height: 100vh;
    max-width: 460px;
    width: 460px;
    animation: slideInRight 0.3s ease;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .shared-side-sheet__header {
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
  }

  .shared-side-sheet__title {
    font-size: var(--pd-font-size-base);
    line-height: 26px;
  }

  .shared-side-sheet__content {
    padding: 0 var(--pd-spacing-4);
  }

  .shared-side-sheet__footer {
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
  }

  .shared-side-sheet__slide {
    align-self: stretch;
    gap: var(--pd-spacing-8);
    height: 100%;
  }

  .shared-side-sheet__illustration {
    flex: 1;
    flex-shrink: 1;
    max-height: none;
    overflow: hidden;
  }

  .shared-side-sheet__image {
    height: 100%;
    max-height: none;
    object-position: center;
    width: 100%;
  }

  .shared-side-sheet__slide-title {
    font-size: var(--pd-font-size-md);
    line-height: 38px;
  }

  .shared-side-sheet__slide-description {
    font-size: var(--pd-font-size-sm);
    line-height: 24px;
  }

  .shared-side-sheet__actions--centered pd-button {
    flex: none;
    width: auto;
  }
}

/* ==========================================
   shared-basic-side-sheet
   ========================================== */
/* Mobile First */
.shared-basic-side-sheet__overlay {
  animation: fadeIn 0.3s ease;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shared-basic-side-sheet {
  animation: slideInRight 0.3s ease;
  background-color: var(--pd-neutral-000);
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.shared-basic-side-sheet__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--pd-spacing-4) var(--pd-spacing-4) var(--pd-spacing-4) var(--pd-spacing-6);
}

.shared-basic-side-sheet__title {
  color: var(--pd-neutral-900);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-normal);
  line-height: 24px;
  margin: 0;
}

.shared-basic-side-sheet__close {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--pd-neutral-700);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: var(--pd-spacing-2);
  transition: color 0.2s ease;
}

.shared-basic-side-sheet__close:hover {
  color: var(--pd-neutral-900);
}

.shared-basic-side-sheet__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: var(--pd-spacing-6) var(--pd-spacing-4);
}

.shared-basic-side-sheet__footer {
  flex-shrink: 0;
  padding: var(--pd-spacing-4) var(--pd-spacing-4);
}

.shared-basic-side-sheet__actions {
  align-items: center;
  display: flex;
  gap: var(--pd-spacing-4);
  justify-content: space-between;
}

.shared-basic-side-sheet__actions--centered {
  justify-content: center;
}

.shared-basic-side-sheet__actions--centered pd-button {
  flex: 1;
  width: 100%;
}

/* Tablet (≥ 768px y ≤ 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .shared-basic-side-sheet__overlay {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .shared-basic-side-sheet {
    animation: slideInRight 0.3s ease;
    height: 100vh;
    max-height: 100vh;
    max-width: 480px;
    width: 480px;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .shared-basic-side-sheet__header {
    padding: var(--pd-spacing-6);
  }

  .shared-basic-side-sheet__content {
    padding: var(--pd-spacing-8) var(--pd-spacing-6);
  }

  .shared-basic-side-sheet__footer {
    padding: var(--pd-spacing-6);
  }

  .shared-basic-side-sheet__actions--centered pd-button {
    flex: none;
    width: auto;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .shared-basic-side-sheet__overlay {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .shared-basic-side-sheet {
    animation: slideInRight 0.3s ease;
    height: 100vh;
    max-height: 100vh;
    max-width: 460px;
    width: 460px;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .shared-basic-side-sheet__header {
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
  }

  .shared-basic-side-sheet__title {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .shared-basic-side-sheet__content {
    padding: 0 var(--pd-spacing-4);
  }

  .shared-basic-side-sheet__footer {
    padding: var(--pd-spacing-8) var(--pd-spacing-4);
  }

  .shared-basic-side-sheet__actions--centered pd-button {
    flex: none;
    width: auto;
  }
}

/* ==========================================
   Sección Compartida - Información Esencial
   ========================================== */
/* Mobile First */
.shared-essential-information {
  background-color: var(--pd-container-100);
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
}

.shared-essential-information__container {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  margin: 0 auto;
  max-width: var(--pd-container-max-width);
}

.shared-essential-information__list {
  background-color: var(--pd-neutral-000);
  border-radius: var(--pd-spacing-3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-1);
  list-style: none;
  margin: 0;
  padding: var(--pd-spacing-4);
  width: 100%;
}

.shared-essential-information__item {
  border-bottom: 1px solid var(--pd-container-500);
  cursor: pointer;
  padding: var(--pd-spacing-2) 0;

  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.shared-essential-information__button {
  align-items: center;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  font-family: var(--pd-font-secondary);
  gap: var(--pd-spacing-2);
  height: 42px;
  justify-content: space-between;
  padding: var(--pd-spacing-2) 0;
  text-align: left;
  width: 100%;
}

.shared-essential-information__label {
  color: var(--pd-neutral-900);
  flex-grow: 1;
  font-size: var(--pd-font-size-base);
  line-height: 24px;
}

.shared-essential-information__documents {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  width: 100%;
}

/* Tablet (≥ 768px) */
@media (min-width: 768px) {
  .shared-essential-information {
    padding: var(--pd-spacing-12) var(--pd-spacing-6);
  }

  .shared-essential-information__container {
    gap: var(--pd-spacing-6);
  }

  .shared-essential-information__list {
    margin: 0 auto;
    max-width: 600px;
  }

  .shared-essential-information__label {
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .shared-essential-information {
    padding: var(--pd-spacing-16) 0;
  }
}

/* ==========================================
   Componente - Footer
   ========================================== */
/* Mobile First */
.pd-footer {
  border-top: 2px solid var(--pd-neutral-000);
  color: var(--pd-neutral-900);
  width: 100%;
}

.pd-footer__main {
  background-color: var(--pd-container-100);
  padding: var(--pd-spacing-8) var(--pd-spacing-4) var(--pd-spacing-2);
}

.pd-footer__offices-wrapper {
  background-color: var(--pd-container-200);
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
}

.pd-footer__container {
  margin: 0 auto;
  max-width: var(--pd-container-max-width);
}

.pd-footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
}

.pd-footer__column {
  border-bottom: 1px solid var(--pd-neutral-200);
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  padding-bottom: var(--pd-spacing-6);
}

.pd-footer__column:last-child {
  border-bottom: none;
}

.pd-footer__brand {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
}

.pd-footer__logo {
  height: var(--pd-spacing-6);
  width: auto;
}

.pd-footer__description {
  color: var(--pd-neutral-black);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  margin: 0;
}

.pd-footer__title {
  color: var(--pd-primary-500);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-base);
  font-weight: var(--pd-font-weight-semi-bold);
  line-height: 24px;
  margin: 0;
}

.pd-footer__social {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
}

.pd-footer__social-links {
  display: flex;
  gap: var(--pd-spacing-4);
  justify-content: center;
}

.pd-footer__nav {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
}

.pd-footer__nav-item {
  display: flex;
  justify-content: center;
}

.pd-footer__link {
  color: var(--pd-neutral-900);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  text-decoration-line: underline;
}

.pd-footer__link:hover {
  color: var(--pd-primary-500);
}

.pd-footer__complaints-book-wrapper {
  border-top: 1px solid var(--pd-neutral-200);
  padding-top: var(--pd-spacing-6);
}

.pd-footer__complaints-book {
  align-items: center;
  color: var(--pd-primary-500);
  display: flex;
  gap: var(--pd-spacing-2);
  justify-content: center;
  text-decoration: none;
}

.pd-footer__complaints-book span {
  text-decoration: underline;
  line-height: 22px;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
}

.pd-footer__offices {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
}

.pd-footer__offices-title {
  color: var(--pd-primary-500);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-md);
  font-weight: var(--pd-font-weight-semi-bold);
  line-height: 24px;
  margin: 0;
}

.pd-footer__offices-grid {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
}

.pd-footer__office {
  align-items: center;
  border-bottom: 1px solid var(--pd-neutral-200);
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-4);
  padding-bottom: var(--pd-spacing-6);
}

.pd-footer__office:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pd-footer__office-addresses {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-2);
}

.pd-footer__office-address {
  color: var(--pd-neutral-900);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  margin: 0;
}

.pd-footer__bottom {
  background-color: var(--pd-primary-500);
  color: var(--pd-neutral-000);
  padding: var(--pd-spacing-8) var(--pd-spacing-4);
}

.pd-footer__bottom-container {
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
  margin: 0 auto;
  max-width: var(--pd-container-max-width);
}

.pd-footer__legal-links {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--pd-spacing-6);
  justify-content: center;
}

.pd-footer__legal-separator {
  color: var(--pd-neutral-000);
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  display: none;
}

.pd-footer__bottom .pd-footer__link {
  color: var(--pd-neutral-000);
}

.pd-footer__copyright {
  color: var(--pd-neutral-000);
  text-align: center;
  font-family: var(--pd-font-secondary);
  font-size: var(--pd-font-size-sm);
  font-weight: var(--pd-font-weight-normal);
  line-height: 22px;
  margin: 0;
  text-decoration: underline;
}

/* Tablet (≥ 768px) */
@media (min-width: 768px) {
  .pd-footer__main {
    padding: var(--pd-spacing-12) var(--pd-spacing-6);
  }

  .pd-footer__offices-wrapper {
    padding: var(--pd-spacing-8) var(--pd-spacing-6);
  }

  .pd-footer__bottom {
    padding: var(--pd-spacing-4) var(--pd-spacing-6);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pd-footer__main {
    padding: var(--pd-spacing-16) var(--pd-spacing-5);
  }

  .pd-footer__offices-wrapper {
    padding: var(--pd-spacing-8) var(--pd-spacing-5);
  }

  .pd-footer__bottom {
    padding: var(--pd-spacing-4) var(--pd-spacing-5);
  }

  .pd-footer__content {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: var(--pd-spacing-8);
  }

  .pd-footer__column {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
    gap: var(--pd-spacing-6);
  }

  .pd-footer__brand {
    align-items: flex-start;
  }

  .pd-footer__description {
    font-size: var(--pd-font-size-base);
    text-align: left;
  }

  .pd-footer__title {
    text-align: left;
    font-size: var(--pd-font-size-md);
    line-height: 26px;
  }

  .pd-footer__social {
    align-items: flex-start;
    padding-top: var(--pd-spacing-6);
    border-top: 1px solid var(--pd-neutral-200);
  }

  .pd-footer__social-links {
    justify-content: flex-start;
  }

  .pd-footer__nav {
    gap: var(--pd-spacing-6);
    align-items: flex-start;
  }

  .pd-footer__link {
    font-size: var(--pd-font-size-base);
    text-align: left;
  }

  .pd-footer__complaints-book span {
    font-size: var(--pd-font-size-base);
  }

  .pd-footer__complaints-book-wrapper {
    margin-top: 0;
  }

  .pd-footer__complaints-book {
    justify-content: flex-start;
  }

  .pd-footer__offices {
    gap: var(--pd-spacing-3);
  }

  .pd-footer__offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pd-spacing-6);
  }

  .pd-footer__office {
    border-bottom: none;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .pd-footer__offices-title {
    text-align: left;
    font-size: var(--pd-font-size-lg);
    line-height: 30px;
  }

  .pd-footer__office-address {
    font-size: var(--pd-font-size-base);
    text-align: left;
  }

  .pd-footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .pd-footer__legal-links {
    flex-direction: row;
    gap: var(--pd-spacing-6);
  }

  .pd-footer__legal-links .pd-footer__link {
    font-size: var(--pd-font-size-sm);
  }

  .pd-footer__legal-separator {
    display: inline-block;
  }
}


/* ==========================================
   Utilidades para Exportación Estática
   ========================================== */

/* Icon styles for img tags and SVG inline (overrides for static export) */
img.pd-icon,
.pd-icon svg {
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
}

.pd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Icon sizes - using img and svg selectors for higher specificity */
img.pd-icon.pd-icon--14,
.pd-icon.pd-icon--14 svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
}

img.pd-icon.pd-icon--16,
.pd-icon.pd-icon--16 svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
}

img.pd-icon.pd-icon--20,
.pd-icon.pd-icon--20 svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
}

img.pd-icon.pd-icon--24,
.pd-icon.pd-icon--24 svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
}

img.pd-icon.pd-icon--40,
.pd-icon.pd-icon--40 svg {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px;
  max-height: 40px;
}

img.pd-icon.pd-icon--28,
.pd-icon.pd-icon--28 svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
}

img.pd-icon.pd-icon--48,
.pd-icon.pd-icon--48 svg {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px;
  max-height: 48px;
}

/* Icon colors using CSS filters (for img tags) */
img.pd-icon.pd-icon--white {
  filter: brightness(0) invert(1);
}

/* Icon colors using CSS filters (for img tags) */
/* Success color: #7cd04c (green) - RGB(124, 208, 76) */
/* Filter calculated to convert black SVG to #7cd04c */
img.pd-icon.pd-icon--success {
  filter: brightness(0) saturate(100%) invert(67%) sepia(95%) saturate(2000%) hue-rotate(75deg) brightness(120%) contrast(90%);
}

/* Error color: #d13a3b (red) - RGB(209, 58, 59) */
/* Filter calculated to convert black SVG to #d13a3b */
img.pd-icon.pd-icon--error {
  filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(5000%) hue-rotate(338deg) brightness(97%) contrast(96%);
}

/* Section Title Color Variants */
.pd-section-title__title--white {
  color: #ffffff;
}

.pd-section-title__title--dark {
  color: #1e2121;
}

/* Internal Banner SEO Color */
.pd-internal-banner__seo--blue {
  color: #0047ba;
}

/* Top Header Blue Background */
.pd-top-header--blue {
  background-color: #001970;
  color: #ffffff;
}

/* Header Icon White Color */
.pd-header__icon-button .pd-icon,
.pd-header__link-icon .pd-icon {
  color: #ffffff;
}

/* Card Goal Full Width */
.pd-card-goal--full-width {
  --pd-card-goal-width: 100%;
}

/* Input Clear Icon Hidden */
.pd-input__clear-icon--hidden {
  display: none;
}

/* Information Document Link */
.information-document__link {
  text-decoration: none;
  color: #1e2121;
}

/* Button Auto Width */
.pd-button--auto-width {
  --pd-button-width: auto;
  --pd-button-horizontal-padding: var(--pd-spacing-6);
}

/* Button Center Content */
.pd-button--full-width-mobile {
  justify-content: center;
}

/* Button Submit - Smaller size */
.pd-button--submit {
  width: 280px !important;
}

/* Button Submit - Auto width on mobile */
@media (max-width: 1023px) {
  .pd-button--submit {
    width: auto !important;
  }
}

/* Card Goal Flex Start */
.pd-card-goal--flex-start {
  --pd-card-goal-justify-content: flex-start;
}

/* Form Content Step - Completed steps maintain active visual style */
.pd-form-content__step--completed .pd-form-content__step-number {
  background-color: transparent;
  border-color: #8c4942;
  color: #8c4942;
}

.pd-form-content__step--completed .pd-form-content__step-label {
  color: var(--pd-neutral-900);
}

/* Active step number color */
.pd-form-content__step--active .pd-form-content__step-number {
  color: #8c4942;
}

/* Button Submit - Full styles with CSS variables */
.pd-button--submit {
  --pd-button-horizontal-padding: var(--pd-spacing-6);
  --pd-button-horizontal-padding-desktop: var(--pd-spacing-6);
  --pd-button-width: auto;
  justify-content: center;
}

/* Form connector - Active state (step 2) */
.pandero-renew-quote .pd-form-content__connector--active {
  background-color: var(--pd-accent-500);
}

@media (min-width: 1024px) {
  .pandero-renew-quote .pd-form-content__connector--active {
    border-left: 1px solid var(--pd-accent-500);
    background-color: transparent;
  }
}

/* Ghost button padding - ensure default padding is applied */
.pandero-renew-quote .pd-button.ghost,
.shared-side-sheet .pd-button.ghost,
.who-we-are-goals__cta .pd-button.ghost {
  --pd-button-horizontal-padding: var(--pd-spacing-6);
  --pd-button-horizontal-padding-desktop: var(--pd-spacing-6);
  padding: var(--pd-spacing-3) var(--pd-button-horizontal-padding, var(--pd-spacing-6));
}

/* NewCar button padding - ensure default padding is applied */
.shared-side-sheet .pd-button.newCar {
  --pd-button-horizontal-padding: var(--pd-spacing-6);
  --pd-button-horizontal-padding-desktop: var(--pd-spacing-6);
  padding: var(--pd-spacing-3) var(--pd-button-horizontal-padding, var(--pd-spacing-6));
}

.shared-side-sheet .pd-button.semiNew {
  --pd-button-horizontal-padding: var(--pd-spacing-6);
  --pd-button-horizontal-padding-desktop: var(--pd-spacing-6);
  padding: var(--pd-spacing-3) var(--pd-button-horizontal-padding, var(--pd-spacing-6));
}

/* House button padding - ensure default padding is applied */
.pd-button.house {
  --pd-button-horizontal-padding: var(--pd-spacing-6);
  --pd-button-horizontal-padding-desktop: var(--pd-spacing-6);
}

/* Hidden elements - replace inline display: none */
/* .shared-side-sheet--hidden tiene su propia regla con !important en shared-side-sheet */
.pandero-renew-quote__form-step--hidden,
.pandero-renew-quote__confirmation--hidden,
.pd-input__error-message--hidden,
.pandero-renew-quote__form-wrapper--hidden,
.pd-button--hidden {
  display: none;
}

/* Select dropdown width fix for mobile and tablet */
@media (max-width: 1023px) {
  /* Container restrictions - strict width control */
  .pandero-renew-quote__form-fields {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
  }
  
  .pandero-renew-quote__field {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
  }
  
  .pd-input {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
  }
  
  .pd-input__wrapper--select {
    overflow: hidden;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    position: relative;
    contain: layout style paint;
    isolation: isolate;
  }
  
  .pd-input__wrapper--select .pd-input__field {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    position: relative;
  }
  
  /* Ensure select doesn't exceed container */
  select.pd-input__field {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    min-width: 0;
    text-overflow: ellipsis;
    position: relative;
    /* Force select to respect container width */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* Limit option width to prevent dropdown overflow */
  select.pd-input__field option {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* Force options to respect parent width */
    width: 100%;
  }
  
  /* Prevent select dropdown from exceeding viewport */
  select.pd-input__field:focus {
    max-width: 100% !important;
    width: 100% !important;
    outline: none;
    /* Ensure focus state doesn't break layout */
    position: relative;
  }
  
  /* Additional fix for iOS Safari */
  @supports (-webkit-appearance: none) {
    .pd-input__wrapper--select {
      appearance: none;
      -webkit-appearance: none;
      overflow: hidden;
      max-width: 100% !important;
      width: 100% !important;
      position: relative;
    }
    
    select.pd-input__field {
      width: 100% !important;
      max-width: 100% !important;
      appearance: none;
      -webkit-appearance: none;
      position: relative;
    }
  }
  
  /* Force container to respect viewport width */
  .pandero-renew-quote__container {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  .pandero-renew-quote__content {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Additional fix: Ensure form wrapper doesn't allow overflow */
  .pd-form-content__form {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Prevent body/html overflow on mobile when select is open */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Force select dropdown to respect viewport */
  select.pd-input__field:active,
  select.pd-input__field:focus {
    max-width: calc(100vw - 2rem) !important;
    width: 100% !important;
  }
  
  /* Critical fix: Limit select dropdown width when open */
  /* This targets the native dropdown menu */
  select.pd-input__field {
    /* Calculate max width based on viewport minus padding */
    max-width: min(100%, calc(100vw - 2rem)) !important;
  }
  
  /* Ensure parent containers don't allow overflow */
  .pandero-renew-quote__form-step {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Additional containment for select wrapper */
  .pd-input__wrapper--select {
    /* Use CSS containment to prevent overflow */
    contain: layout style paint;
    /* Ensure wrapper doesn't expand beyond viewport */
    max-width: min(100%, calc(100vw - 2rem));
  }
}

/* Shared Side Sheet Slides */
.shared-side-sheet__slide--hidden {
  display: none;
}

.shared-side-sheet__slide--active {
  display: flex;
}

/* Shared Side Sheet Slides Container (static HTML version) */
.shared-side-sheet__slides {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 0;
  margin-bottom: 1rem;
}

/* Ensure aside (the actual side sheet panel) has correct flexbox structure */
section.shared-side-sheet aside.shared-side-sheet {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

/* Ensure footer stays at bottom */
section.shared-side-sheet aside.shared-side-sheet .shared-side-sheet__footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Center the "Ir al formulario" button */
.shared-side-sheet__actions--centered {
  justify-content: center;
}

/* Mobile: full width button */
.shared-side-sheet__actions--centered .pd-button {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

/* Tablet and Desktop: auto width button, centered */
@media (min-width: 768px) {
  .shared-side-sheet__actions--centered .pd-button,
  .shared-side-sheet__actions--centered .pd-button.pd-button--full-width-mobile {
    width: 100% !important;
    max-width: none;
    flex: none;
    justify-content: center;
  }

  section.shared-side-sheet aside.shared-side-sheet {
		height: 100vh;
  	max-height: 100vh;
	}
}



/* ==========================================
   Megamenu - Visibility Rules
   ========================================== */
/* Megamenu oculto por defecto */
/* El megamenu solo se muestra cuando se hace clic en "Sobre nosotros", "Productos" o "Asociados" */
.pd-megamenu__overlay[data-megamenu-overlay] {
  display: none !important;
}

.pd-megamenu__overlay[data-megamenu-overlay][style*="display: flex"] {
  display: flex !important;
}

/* Mobile megamenu también oculto por defecto */
.pd-megamenu__mobile-overlay[data-megamenu-mobile-overlay] {
  display: none !important;
}

.pd-megamenu__mobile-overlay[data-megamenu-mobile-overlay][style*="display: flex"] {
  display: flex !important;
}

/* Mobile submenus ocultos por defecto */
.pd-megamenu__mobile-submenu[data-megamenu-mobile-submenu] {
  display: none !important;
}

.pd-megamenu__mobile-submenu[data-megamenu-mobile-submenu][style*="display: flex"] {
  display: flex !important;
}

/* Megamenu - Icon wrapper default border color */
.pd-megamenu__item-icon-wrapper {
  border-color: #57C9E8;
}

.pd-megamenu__mobile-submenu-item-icon {
  border-color: #57C9E8;
}

/* Megamenu - Icon wrapper color variants via data attributes */
.pd-megamenu__item-icon-wrapper[data-icon-color="red"] {
  border-color: #CC0D12;
}

.pd-megamenu__item-icon-wrapper[data-icon-color="orange"] {
  border-color: #FF9800;
}

.pd-megamenu__item-icon-wrapper[data-icon-color="teal"] {
  border-color: #1BA99E;
}

.pd-megamenu__mobile-submenu-item-icon[data-icon-color="red"] {
  border-color: #CC0D12;
}

.pd-megamenu__mobile-submenu-item-icon[data-icon-color="orange"] {
  border-color: #FF9800;
}

.pd-megamenu__mobile-submenu-item-icon[data-icon-color="teal"] {
  border-color: #1BA99E;
}

/* Megamenu - Icon size 28px */
.pd-megamenu__item-icon-wrapper .pd-icon--28,
.pd-megamenu__mobile-submenu-item-icon .pd-icon--28 {
  width: 28px !important;
  height: 28px !important;
}

/* Megamenu - Remove padding-top from icon wrapper */
.pd-megamenu__item-icon-wrapper {
  padding-top: 0 !important;
}

/* Megamenu - Remove padding-top from mobile submenu item icon */
.pd-megamenu__mobile-submenu-item-icon {
  padding-top: 0 !important;
}

/* Megamenu - Ensure icons inside wrappers display correctly */
.pd-megamenu__item-icon-wrapper img,
.pd-megamenu__mobile-submenu-item-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Megamenu - Mobile submenu hidden by default */
.pd-megamenu__mobile-submenu[data-megamenu-mobile-submenu] {
  display: none !important;
}

.pd-megamenu__mobile-submenu[data-megamenu-mobile-submenu][style*="display: flex"] {
  display: flex !important;
}

/* Megamenu - Mobile header visibility and positioning */
/* Asegurar que el header esté fijo en la parte superior con todos los estilos necesarios */
.pd-megamenu__mobile-header[data-megamenu-mobile-header] {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10001 !important;
  position: fixed !important;
  align-items: center !important;
  background-color: var(--pd-primary-500) !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: space-between !important;
  padding: var(--pd-spacing-4) !important;
  width: 100% !important;
}

/* Header principal visible por defecto */
.pd-megamenu__mobile-header[data-megamenu-mobile-header][data-megamenu-header-type="main"] {
  display: flex !important;
}

/* Headers de submenu ocultos por defecto */
.pd-megamenu__mobile-header[data-megamenu-mobile-header][data-megamenu-header-type]:not([data-megamenu-header-type="main"]) {
  display: none !important;
}

/* Mostrar header de submenu cuando se muestra el submenu correspondiente */
/* Esta regla debe tener mayor especificidad para sobrescribir la regla anterior */
.pd-megamenu__mobile-header[data-megamenu-mobile-header][data-megamenu-header-type="about"][style*="display: flex"],
.pd-megamenu__mobile-header[data-megamenu-mobile-header][data-megamenu-header-type="products"][style*="display: flex"],
.pd-megamenu__mobile-header[data-megamenu-mobile-header][data-megamenu-header-type="associates"][style*="display: flex"] {
  display: flex !important;
}

/* Asegurar que los elementos del botón "Atrás" se muestren correctamente */
.pd-megamenu__mobile-back {
  align-items: center !important;
  background: transparent !important;
  border: none !important;
  color: var(--pd-neutral-000) !important;
  cursor: pointer !important;
  display: flex !important;
  font-family: var(--pd-font-secondary) !important;
  font-size: var(--pd-font-size-base) !important;
  font-weight: var(--pd-font-weight-normal) !important;
  gap: var(--pd-spacing-1) !important;
  line-height: 24px !important;
}

.pd-megamenu__mobile-back-icon-wrapper {
  padding-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pd-megamenu__mobile-back-text {
  color: var(--pd-neutral-000) !important;
}

/* Megamenu - Mobile submenu CTA hidden by default */
.pd-megamenu__mobile-submenu-cta[data-megamenu-mobile-submenu-cta] {
  display: none !important;
}

.pd-megamenu__mobile-submenu-cta[data-megamenu-mobile-submenu-cta][style*="display: flex"] {
  display: flex !important;
  align-items: center;
}

/* Megamenu - Mobile submenu CTA button centered */
.pd-megamenu__mobile-submenu-cta .pd-button {
  justify-content: center;
}

/* Megamenu - Mobile CTA */
.pd-megamenu__mobile-cta {
  justify-content: normal;
}

/* Megamenu - Mobile CTA centered on tablet */
@media (min-width: 768px) {
  .pd-megamenu__mobile-cta {
    justify-content: center;
  }
}

/* Megamenu - CTA button content centered */
.pd-megamenu__cta-button-wrapper .pd-button {
  justify-content: center;
}

@media (min-width: 1024px) {
  .pd-megamenu__cta-button-wrapper .pd-button {
    justify-content: center;
  }
}

/* Search Box - Hidden by default */
.pd-search-box__overlay[data-search-box-overlay]:not([style*="display: flex"]) {
  display: none !important;
  --pd-search-box-top-offset: 263px;
  --pd-search-box-mobile-margin-top: 142px;
}

/* Search Box - Show when JavaScript sets display: flex */
.pd-search-box__overlay[data-search-box-overlay][style*="display: flex"],
.pd-search-box__overlay[data-search-box-overlay][style*="display:flex"] {
  display: flex !important;
}

/* Search Box - Input font size */
.pd-input__wrapper--search {
  --pd-input-font-size: 28px;
}
