/* Hero directorio – home */
.home-directorio-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-primary-dark) center/cover no-repeat;
  padding: 48px 16px 32px;
  margin-bottom: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Portada: el banner llena hasta el newsletter (sin hueco del fondo del sitio) */
@media (min-width: 992px) {
  body.page-inicio {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  body.page-inicio > header.site-header,
  body.page-inicio > .home-directorio-hero,
  body.page-inicio > footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.page-inicio > .home-directorio-hero {
    flex: 1 1 auto;
    overflow-x: hidden;
  }

  body.page-inicio > footer {
    margin-top: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
  }
}

/* Celular: sin flex en body (rompe el ancho); hero a viewport y sin desborde */
@media (max-width: 991px) {
  body.page-inicio {
    overflow-x: hidden;
    max-width: 100%;
  }

  body.page-inicio > header.site-header,
  body.page-inicio > .home-directorio-hero,
  body.page-inicio > footer {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.page-inicio > .home-directorio-hero {
    width: 100%;
    min-height: calc(100dvh - var(--header-height, 56px) + 10px - env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }

  body.page-inicio > .home-directorio-hero .home-directorio-hero__inner {
    max-width: 100%;
    box-sizing: border-box;
  }

  body.page-inicio > .home-directorio-hero .home-directorio-hero__red-social-btn {
    max-width: calc(100% - 24px);
  }

  body.page-inicio > footer {
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
}

/* Portada principal: cabecera siempre visible (sin ocultar al bajar) */
@media (min-width: 992px) {
  body.page-inicio > header.site-header {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    will-change: auto;
    transition: none;
  }

  body.page-inicio > header.site-header.site-header--past-hero,
  body.page-inicio > header.site-header.site-header--hiding,
  body.page-inicio > header.site-header.site-header--hiding > nav {
    pointer-events: auto !important;
  }

  body.page-inicio--portada-collapsed > header.site-header {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-inicio > header.site-header {
    transition: none;
  }
}

/* Celular / tablet: cabecera fija, sin animación de ocultar */
@media (max-width: 1024px) {
  body.page-inicio > header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 1000;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    will-change: auto !important;
    transition: none !important;
  }

  body.page-inicio {
    padding-top: var(--header-height, 96px);
    box-sizing: border-box;
  }

  body.page-inicio > header.site-header.site-header--past-hero,
  body.page-inicio > header.site-header.site-header--hiding,
  body.page-inicio > header.site-header.site-header--hiding > nav {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.page-inicio--portada-collapsed > header.site-header {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

.home-directorio-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-directorio-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--dir-hero-overlay);
  pointer-events: none;
}

.home-directorio-hero__slide {
  position: absolute;
  inset: 0;
  background-color: var(--color-brand-primary-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.home-directorio-hero__slide.is-active {
  opacity: 1;
}

.home-directorio-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
  text-align: center;
  transform: translateY(-40px);
}

.home-directorio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.home-directorio-hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}

.dir-search-bar-shell {
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 6px;
  background: var(--dir-glass-border, rgba(255, 255, 255, 0.22));
  border-radius: var(--dir-search-radius, 999px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.home-directorio-hero__map-btn {
  position: absolute;
  top: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-gold, #B9984B);
  background: #f8f6f0;
  color: var(--color-brand-gold-dark, #947A3C);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-directorio-hero__map-btn:not(.home-directorio-hero__map-btn--left) {
  right: 16px;
}

.home-directorio-hero__map-btn--left {
  left: 16px;
}

.home-directorio-hero__map-btn:hover {
  background: #fff;
  border-color: var(--color-brand-gold-dark, #947A3C);
  transform: translateY(-1px);
}

.home-directorio-hero__map-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (min-width: 1100px) {
  .home-directorio-hero__map-btn:not(.home-directorio-hero__map-btn--left) {
    right: max(16px, calc((100% - var(--container-max, 1320px)) / 2 + 16px));
  }

  .home-directorio-hero__map-btn--left {
    left: max(16px, calc((100% - var(--container-max, 1320px)) / 2 + 16px));
  }

  .home-directorio-hero__conoce-btn {
    left: max(16px, calc((100% - var(--container-max, 1320px)) / 2 + 16px));
  }
}

.home-directorio-hero__conoce-btn {
  position: absolute;
  left: 16px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  border: 2px solid var(--color-brand-gold, #B9984B);
  background: #f8f6f0;
  color: var(--color-brand-gold-dark, #947A3C);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-directorio-hero__conoce-btn .fa-landmark {
  font-size: 0.95rem;
  color: var(--color-brand-gold, #B9984B);
}

.home-directorio-hero__conoce-btn-arrow {
  font-size: 0.8rem;
  transition: transform 0.15s ease;
}

.home-directorio-hero__conoce-btn:hover {
  background: #fff;
  border-color: var(--color-brand-gold-dark, #947A3C);
  color: var(--color-brand-gold-dark, #947A3C);
  transform: translateY(-1px);
}

.home-directorio-hero__conoce-btn:hover .home-directorio-hero__conoce-btn-arrow {
  transform: translateX(3px);
}

.home-directorio-hero__conoce-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-directorio-hero__red-social-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--color-brand-gold, #B9984B);
  background: #f8f6f0;
  color: var(--color-brand-gold-dark, #947A3C);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.home-directorio-hero__red-social-btn i {
  font-size: 1rem;
  color: var(--color-brand-gold, #B9984B);
}

.home-directorio-hero__red-social-btn:hover {
  background: #fff;
  border-color: var(--color-brand-gold-dark, #947A3C);
  color: var(--color-brand-gold-dark, #947A3C);
  transform: translateX(-50%) translateY(-1px);
}

.home-directorio-hero__red-social-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-guia-mapa-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: #fff;
}

.home-guia-mapa-modal[hidden] {
  display: none !important;
}

body.home-guia-mapa-open {
  overflow: hidden;
}

.home-guia-mapa-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
}

.home-guia-mapa-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border-light, #e8e8e8);
  background: #fff;
  flex-shrink: 0;
}

.home-guia-mapa-modal__head-text h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark, #1f2937);
}

.home-guia-mapa-modal__head-text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-medium, #64748b);
}

.home-guia-mapa-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-light, #e8e8e8);
  border-radius: 50%;
  background: #fff;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.home-guia-mapa-modal__close:hover {
  background: #f8fafc;
}

.home-guia-mapa-modal__map {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.home-guia-mapa-modal__empty,
.home-guia-mapa-modal__loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border-light, #e8e8e8);
  border-radius: 10px;
  color: var(--color-text-medium, #64748b);
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dir-search-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--dir-search-bg);
  border-radius: calc(var(--dir-search-radius, 999px) - 6px);
  overflow: hidden;
  max-width: none;
  margin: 0;
  min-height: 0;
}

.dir-search-bar__field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 6px 12px;
  border-right: 1px solid var(--color-border-light);
  text-align: left;
  gap: 2px;
}

.dir-search-bar__field:first-of-type {
  padding-left: 18px;
}

.dir-search-bar__field:last-of-type {
  border-right: none;
}

.dir-search-bar__label {
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-brand-gold-dark, #927e3d);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.1;
  min-height: 0.72rem;
}

.dir-search-bar__field:has(.dir-search-bar__select) {
  padding: 6px 8px;
}

.dir-search-bar__input {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--color-text-dark);
  width: 100%;
  outline: none;
  padding: 0;
  line-height: 1.35;
  min-height: 32px;
  box-sizing: border-box;
}

/* Combos: estilo cuenta, compactos y sin borde */
.dir-search-bar__select {
  flex: 0 0 auto;
  width: 100%;
  padding: 5px 1.75rem 5px 10px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-surface, #fff);
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  appearance: auto;
  min-height: 32px;
  line-height: 1.3;
  transition: box-shadow 0.15s ease, background-color 0.15s ease;
}

.dir-search-bar__select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(185, 152, 75, 0.22);
}

.dir-search-bar__select:disabled {
  background-color: var(--color-background, #f5f5f5);
  cursor: not-allowed;
  opacity: 0.85;
}

.dir-search-bar__btn {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0 22px;
  background: var(--color-brand-gold);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-heading);
  min-height: 44px;
}

.dir-search-bar__btn:hover {
  background: var(--color-brand-gold-dark);
}

/* Portada: etiquetas y casilla de búsqueda centradas; combos a la izquierda */
.home-directorio-hero .dir-search-bar__field {
  align-items: stretch;
}

.home-directorio-hero .dir-search-bar__field:first-of-type {
  padding-left: 12px;
}

.home-directorio-hero .dir-search-bar__label {
  text-align: center;
  width: 100%;
}

.home-directorio-hero .dir-search-bar__input {
  text-align: center;
}

.home-directorio-hero .dir-search-bar__input::placeholder {
  text-align: center;
}

.home-directorio-hero .dir-search-bar__select {
  text-align: left;
  text-align-last: left;
}

.dir-rubros-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 4px;
}

/* Botón circular scroll portada (banner ↔ columnas) */
.home-portada-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-gold, #B9984B);
  background: #f8f6f0;
  color: var(--color-brand-gold-dark, #947A3C);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.home-portada-scroll-btn:hover {
  background: #fff;
  border-color: var(--color-brand-gold-dark, #947A3C);
  transform: translateY(-1px);
}

.home-portada-scroll-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-portada-scroll-btn--down {
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 3;
  display: flex;
  margin: 0;
  transform: translateX(-50%);
}

.home-portada-scroll-btn--down:hover {
  transform: translateX(-50%) translateY(-1px);
}

.home-portada-scroll-btn--down[hidden],
.home-portada-scroll-btn--up[hidden] {
  display: none !important;
}

.dir-rubro-chip {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
  padding: calc(var(--dir-rubro-glass-border-width, 7px) + 12px) calc(var(--dir-rubro-glass-border-width, 7px) + 14px);
  background: var(--dir-glass-border, rgba(255, 255, 255, 0.22));
  border-radius: calc(var(--dir-chip-radius, 10px) + var(--dir-rubro-glass-border-width, 7px));
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.15s;
}

.dir-rubro-chip::after {
  content: '';
  position: absolute;
  inset: var(--dir-rubro-glass-border-width, 7px);
  background: var(--dir-chip-bg);
  border-radius: var(--dir-chip-radius, 10px);
  z-index: -1;
  transition: background 0.2s;
}

.dir-rubro-chip i {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
}

.dir-rubro-chip span {
  position: relative;
  z-index: 1;
}

.dir-rubro-chip:hover {
  transform: translateY(-2px);
  color: #fff;
}

.dir-rubro-chip:hover::after {
  background: var(--dir-chip-bg-hover);
}

.dir-carousel-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.dir-carousel {
  display: flex;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.dir-carousel .dir-card {
  flex: 0 0 280px;
  width: 280px;
  max-width: 280px;
  margin: 0;
  height: 100%;
}

.dir-carousel.slick-initialized .slick-track {
  display: flex !important;
  align-items: stretch;
}

.dir-carousel.slick-initialized .slick-slide {
  padding: 0;
  height: auto;
  display: flex !important;
}

.dir-carousel.slick-initialized .slick-slide > div {
  display: flex;
  width: 100%;
  height: 100%;
}

.dir-carousel.slick-initialized {
  display: block;
  overflow: visible;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}

.dir-carousel.slick-initialized .slick-list {
  margin: 0;
  overflow: visible;
}

.dir-carousel.slick-initialized .dir-card {
  margin: 0 12px;
}

.dir-carousel::-webkit-scrollbar {
  display: none;
}

.dir-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--color-brand-gold);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dir-carousel__nav--prev { left: 0; }
.dir-carousel__nav--next { right: 0; }
.dir-carousel__nav:disabled { opacity: 0.35; cursor: default; }

.home-section--directorio-cta {
  padding: 32px 0 48px;
  text-align: center;
}

.home-section--directorio-cta .section-header {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-section--directorio-cta .section-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.home-section--directorio-cta .section-link-all {
  display: inline-flex;
  padding: 10px 22px;
  background: var(--color-brand-gold);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.home-section--directorio-cta .section-link-all:hover {
  background: var(--color-brand-gold-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .home-directorio-hero { min-height: 420px; padding-top: 32px; }
  .home-directorio-hero__map-btn { top: 12px; width: 40px; height: 40px; font-size: 0.95rem; }
  .home-directorio-hero__map-btn:not(.home-directorio-hero__map-btn--left) { right: 12px; }
  .home-directorio-hero__map-btn--left { left: 12px; }
  .home-directorio-hero__conoce-btn {
    left: 12px;
    bottom: 18px;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
  .dir-search-bar-shell { border-radius: 20px; padding: 6px; }
  .dir-search-bar { border-radius: 14px; flex-direction: column; }
  .dir-search-bar__field { border-right: none; border-bottom: 1px solid var(--color-border-light); padding: 8px 12px; }
  .home-directorio-hero .dir-search-bar__field:first-of-type { padding-left: 12px; }
  .dir-search-bar__field:has(.dir-search-bar__select) { padding: 6px 10px 8px; }
  .dir-search-bar__select { width: 100%; min-height: 32px; }
  .dir-search-bar__btn { padding: 11px; width: 100%; border-radius: 0 0 14px 14px; min-height: 0; }
  .dir-rubro-chip { min-width: calc(33% - 10px); flex: 1; }
  .dir-carousel-wrap { padding: 0 36px; }
}

/* Celular / tablet: título más abajo, casillas compactas, sin botón Conoce Chincha */
@media (max-width: 1024px) {
  .home-directorio-hero {
    align-items: flex-start;
    padding-top: calc(32px + 45px);
    padding-bottom: 24px;
    min-height: 0;
  }

  .home-directorio-hero__inner {
    transform: none;
  }

  .home-directorio-hero__title {
    margin-bottom: 6px;
  }

  .home-directorio-hero__subtitle {
    margin-bottom: 16px;
  }

  .home-directorio-hero__conoce-btn {
    display: none !important;
  }

  .home-directorio-hero__red-social-btn {
    display: none !important;
  }

  .home-directorio-hero .dir-search-bar-shell {
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 16px;
    height: auto !important;
    max-height: none;
  }

  .home-directorio-hero .dir-search-bar {
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Evitar que flex:1 1 160px estire cada casilla en columna */
  .home-directorio-hero .dir-search-bar__field {
    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding: 6px 10px !important;
    gap: 2px;
  }

  .home-directorio-hero .dir-search-bar__field:first-of-type {
    padding-left: 10px !important;
  }

  .home-directorio-hero .dir-search-bar__field:has(.dir-search-bar__select) {
    padding: 6px 8px !important;
  }

  .home-directorio-hero .dir-search-bar__field:last-of-type {
    border-bottom: none;
  }

  .home-directorio-hero .dir-search-bar__label {
    font-size: 0.58rem;
    min-height: 0;
    line-height: 1.05;
    margin: 0;
  }

  .home-directorio-hero .dir-search-bar__input,
  .home-directorio-hero .dir-search-bar__select {
    flex: 0 0 auto !important;
    width: 100%;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    font-size: 0.85rem;
    line-height: 28px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box;
  }

  .home-directorio-hero .dir-search-bar__select {
    padding-left: 8px !important;
    padding-right: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .home-directorio-hero .dir-search-bar__btn {
    flex: 0 0 auto !important;
    align-self: stretch;
    padding: 10px 14px !important;
    width: 100%;
    height: auto !important;
    min-height: 40px !important;
    max-height: none;
    border-radius: 0 0 12px 12px;
    font-size: 0.88rem;
  }
}
