/* =========================================
   INICIO - SEARCH PANEL ANIMATED
========================================= */

.lucy-search-panel {
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #cfcfcd;
  border-bottom: 1px solid #cfcfcd;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-24px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.4s ease,
    max-height 0.45s ease,
    visibility 0s linear 0.45s;
}

.lucy-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 260px;
  pointer-events: auto;
  transition:
    opacity 0.35s ease,
    transform 0.4s ease,
    max-height 0.45s ease,
    visibility 0s linear 0s;
}

.lucy-search-panel__inner {
  width: min(100% - 80px, 1920px);
  margin: 0 auto;
  padding: 56px 0 64px;
}

.lucy-search-panel__form {
  width: 100%;
  position: relative;
}

.lucy-search-panel__form::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #8A8C8E;
  transition: width 0.45s ease 0.1s;
}

.lucy-search-panel.is-open .lucy-search-panel__form::after {
  width: 100%;
}

.lucy-search-panel__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdbdbb;
  background: transparent;
  padding: 0 0 14px;
  margin: 0;
  box-shadow: none;
  outline: none;

  font-family: "Beausite Classic Trial", serif;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1;
  font-weight: 200;
  color: #8A8C8E;

  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease 0.08s,
    transform 0.4s ease 0.08s,
    border-color 0.2s ease;
}

.lucy-search-panel.is-open .lucy-search-panel__input {
  opacity: 1;
  transform: translateY(0);
}

.lucy-search-panel__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 45%, #737373 45%, #737373 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #737373 45%, #737373 55%, transparent 55%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.lucy-search-panel__input::placeholder {
  color: #8A8C8E;
  opacity: 1;
}

.lucy-search-panel__input:focus {
  border-bottom-color: #9a9a98;
}

/* Toggle */
.lucy-search-toggle {
  cursor: pointer;
  position: relative;
}

body.lucy-search-open {
  overflow-x: hidden;
}

/* Estado abierto del icono */
.lucy-search-toggle.is-active .elementor-icon i,
.lucy-search-toggle.is-active .elementor-icon svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lucy-search-toggle::before,
.lucy-search-toggle::after {
  content: "";
  position: absolute;
  top: 30%;
  /*left: 50%;*/
	right:-10px;
  width: 24px;
  height: 1.5px;
  background: #8A8C8E;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lucy-search-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(0.85);
}

.lucy-search-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(0.85);
}

.lucy-search-toggle.is-active::before,
.lucy-search-toggle.is-active::after {
  opacity: 1;
}

.lucy-search-toggle.is-active::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.lucy-search-toggle.is-active::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}

/* Mobile */
@media (max-width: 767px) {
  .lucy-search-panel.is-open {
    max-height: 180px;
  }

  .lucy-search-panel__inner {
    width: min(100% - 32px, 1920px);
    padding: 34px 0 38px;
  }

  .lucy-search-panel__input {
    font-size: 34px;
    padding-bottom: 10px;
  }

  .lucy-search-toggle::before,
  .lucy-search-toggle::after {
    width: 20px;
  }
}

/* =========================================
   FIN - SEARCH PANEL ANIMATED
========================================= */

.lucy-home-exhibitions {
  padding: 8px;
}

.lucy-home-exhibitions__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.lucy-home-exhibitions__featured,
.lucy-home-exhibitions__secondary,
.lucy-home-exhibitions__small-card {
  background: #f5f5f5;
  padding: 14px;
  height: 100%;
  box-sizing: border-box;
}

/* EL CURRENT YA NO OCUPA 2 FILAS */
.lucy-home-exhibitions__featured {
  grid-row: auto;
}

.lucy-home-exhibitions__bottom-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lucy-home-exhibitions__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* CURRENT: horizontal */
.lucy-home-exhibitions__featured .lucy-home-exhibitions__card-link {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 8px;
  align-items: stretch;
  height: 100%;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__media {
  overflow: hidden;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: auto;
}

/* OTRAS CARDS */
.lucy-home-exhibitions__secondary .lucy-home-exhibitions__card-link,
.lucy-home-exhibitions__small-card .lucy-home-exhibitions__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lucy-home-exhibitions__secondary .lucy-home-exhibitions__media img,
.lucy-home-exhibitions__small-card .lucy-home-exhibitions__media img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 0.65;
}

.lucy-home-exhibitions__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 10px;
  min-height: 180px;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__body {
  padding: 6px 4px 6px 6px;
  min-height: 0;
}

.lucy-home-exhibitions__subtitle,
.lucy-home-exhibitions__artist {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  line-height: 1;
  color: #737373;
  margin-bottom: 6px;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__subtitle {
  font-size: 34px;
}

.lucy-home-exhibitions__title {
  margin: 0 0 10px;
  font-family: "Libre Caslon Display", serif;
  font-size: 28px;
  line-height: 1;
  color: #737373;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__title {
  font-size: 46px;
}

.lucy-home-exhibitions__title-sm {
  margin: 0 0 10px;
  font-family: "Libre Caslon Display", serif;
  font-size: 40px;
  line-height: 1.1;
  color: #737373;
}

.lucy-home-exhibitions__excerpt {
  max-width: 397px;
  margin-bottom: 10px;
  font-family: "Beausite Classic Trial", serif;
  font-size: 16px;
  line-height: 1.25;
  color: #737373;
}

.lucy-home-exhibitions .lucy-text-link {
  margin-top: auto;
  align-self: flex-start;
}

.lucy-home-exhibitions__date {
  margin-top: 20px;
  align-self: flex-end;
  text-align: right;
  font-family: "Beausite Classic Trial", sans-serif;
  font-size: 16px;
	line-height:24px;
	font-weight:400;
  color: #737373;
  text-transform: capitalize;
}

.lucy-home-exhibitions__featured .lucy-home-exhibitions__date {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .lucy-home-exhibitions__grid {
    grid-template-columns: 1fr;
  }

  .lucy-home-exhibitions__featured .lucy-home-exhibitions__card-link {
    grid-template-columns: 1fr;
  }

  .lucy-home-exhibitions__featured .lucy-home-exhibitions__media img {
    aspect-ratio: 1 / 0.65;
    height: auto;
  }

  .lucy-home-exhibitions__bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
	.lucy-home-exhibitions__featured .lucy-home-exhibitions__media img {
    aspect-ratio: 1 / 1.45;
    height: auto;
  }
}

/* =========================================
   INICIO -  GALLERY SLIDER
========================================= */

.lucy-gallery-slider-section {
  width: 100%;
  position: relative;
}

.lucy-gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.home-slider .lucy-gallery-slider {
  height: calc(100dvh - 80px);
}

.lucy-gallery-slider {
  height: min(75dvh, 900px);
}

.lucy-gallery-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.lucy-gallery-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.lucy-gallery-slider__slide.is-active {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

img.lucy-gallery-slider__media,
video.lucy-gallery-slider__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.lucy-gallery-slider__caption {
  position: absolute;
  left: 32px;
  bottom: 84px;
  z-index: 3;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.lucy-gallery-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
}

.lucy-gallery-slider__pagination {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex: 1 1 auto;
  max-width: 100%;
}

.lucy-gallery-slider__dot {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  height: 2px;
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.lucy-gallery-slider__dot.is-active {
  background: rgba(255, 255, 255, 0.95);
}

.lucy-gallery-slider__actions {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  transform: translateY(9px);
}

.lucy-gallery-slider__nav,
.lucy-gallery-slider__pause {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.lucy-gallery-slider__nav img {
  width: 18px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.lucy-gallery-slider__pause {
  width: 31px;
  height: 20px;
}

.lucy-gallery-slider__pause-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}

.lucy-gallery-slider__pause-icon::before,
.lucy-gallery-slider__pause-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 3px;
  height: 19px;
  background: #f0ece9;
  border-radius: 1px;
}

.lucy-gallery-slider__pause-icon::before {
  left: 1px;
}

.lucy-gallery-slider__pause-icon::after {
  right: 1px;
}

.lucy-gallery-slider.is-paused .lucy-gallery-slider__pause-icon::before {
  left: 0;
  width: 23px;
  height: 18px;
  background: transparent;
  border-top: 11px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.lucy-gallery-slider.is-paused .lucy-gallery-slider__pause-icon::after {
  display: none;
}

@media (max-width: 1100px) {
.lucy-gallery-slider__controls {
    padding: 0 24px;
  }

  .lucy-gallery-slider__pagination {
    max-width: 240px;
  }
}


@media (max-width: 767px) {
	
.lucy-gallery-slider {
    height: calc(100dvh - 80px)
    min-height: 420px;
  }

  .lucy-gallery-slider__track,
  .lucy-gallery-slider__slide,
  .lucy-gallery-slider__slide.is-active,
  img.lucy-gallery-slider__media,
  video.lucy-gallery-slider__media {
    height: 100%;
    min-height: 100%;
  }

  .lucy-gallery-slider__controls {
    bottom: 25px;
    padding: 0 16px;
    gap: 16px;
  }

  .lucy-gallery-slider__pagination {
    gap: 8px;
    max-width: 100%;
  }

  .lucy-gallery-slider__nav img {
    width: 20px;
  }

  .lucy-dual-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lucy-dual-links__item {
    padding-bottom: 14px;
  }

  .lucy-dual-links__label {
    font-size: 66px;
  }
}

/* =========================================
   FIN - GALLERY SLIDER
========================================= */

.lucy-text-slider {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 760px;
  color: #7f7f7f;
}

.lucy-text-slider__viewport {
  position: relative;
  flex: 1 1 auto;
}

.lucy-text-slider__slide {
  display: none;
}

.lucy-text-slider__slide.is-active {
  display: block;
}

.lucy-text-slider__content {
  max-width: 430px;
}

.lucy-text-slider__content p {
  margin: 0 0 38px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 300;
  color: #8A8C8E;
  font-family: "Beausite Classic Trial", serif;
}

.lucy-text-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.lucy-text-slider__pagination {
  display: flex;
  align-items: center;
  gap: 54px;
}

.lucy-text-slider__dot {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1;
  color: #c7c7c7;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lucy-text-slider__dot.is-active {
  color: #8a8a88;
}

.lucy-text-slider__next {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #8a8a88;
}

.lucy-text-slider__arrow {
  font-size: 28px;
  line-height: 1;
}

.lucy-dual-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 110px;
  align-items: end;
}

.lucy-dual-links__item {
  display: block;
  padding-bottom: 18px;
  border-bottom: 2px solid #c6c6c6;
  text-decoration: none;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.lucy-dual-links__label {
  display: inline-block;
  font-family: "Beausite Classic Trial", sans-serif;
  font-size: clamp(42px, 4vw, 78px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #c6c6c6;
  transition: color 0.25s ease;
}

.lucy-dual-links__item:hover .lucy-dual-links__label {
  color: #8a8a88;
}

.lucy-dual-links__item:hover {
  border-bottom-color: #9c9c9c;
}
/* =========================================
   INICIO - ARTISTS HOVER SLIDER
========================================= */

.lucy-artists-hover-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(100dvh - 80px);
  min-height: 100vh;
  min-height: calc(100dvh - 80px);
  padding: 24px 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.lucy-artists-hover-slider__label {
  position: absolute;
  top: 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a88;
  z-index: 5;
}

.lucy-artists-hover-slider__label--left {
  left: 24px;
}

.lucy-artists-hover-slider__label--right {
  right: 24px;
}

.lucy-artists-hover-slider__stage {
  position: relative;
  height: 100%;
  max-height: 100%;
}

.lucy-artists-hover-slider__marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.lucy-artists-hover-slider__track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
  will-change: transform;
}

.lucy-artists-hover-slider__group {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex: 0 0 auto;
  height: 100%;
  padding-right: 28px;
  box-sizing: border-box;
}

.lucy-artists-hover-slider__name {
  padding: 0;
  margin: 0;
  min-width: 0;
  width: fit-content;
  height: 100%;
  align-self: stretch;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  cursor: pointer;
  flex: 0 0 auto;
  text-decoration: none;
}

.lucy-artists-hover-slider__name-inner {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: auto;
  max-height: 100%;
  width: auto;
  gap: 4px;
  color: #737373;
  transition: color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.lucy-artists-hover-slider__name.is-active .lucy-artists-hover-slider__name-inner {
  color: #737373;
}

.lucy-artists-hover-slider__track.has-active .lucy-artists-hover-slider__name:not(.is-active) .lucy-artists-hover-slider__name-inner {
  color: #cfcfcd;
}

.lucy-artists-hover-slider__name:hover .lucy-artists-hover-slider__name-inner,
.lucy-artists-hover-slider__name.is-active .lucy-artists-hover-slider__name-inner {
  color: #7a7a78;
}

.lucy-artists-hover-slider__artist-first,
.lucy-artists-hover-slider__artist-last {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0.82;
  vertical-align: baseline;
}

.lucy-artists-hover-slider__artist-last {
  margin-top: 0px;
}

.lucy-artists-hover-slider__artist-first {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(65px, 9.7vh, 118px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.lucy-artists-hover-slider__artist-last {
  font-family: "Big Caslon", serif;
  font-size: clamp(65px, 9.7vh, 118px);
  letter-spacing: -0.03em;
  text-transform: none;
}

/* ---------- Preview ---------- */

.lucy-artists-hover-slider__preview {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 100%;
  display: none;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.lucy-artists-hover-slider__preview.is-visible {
  display: flex;
  opacity: 1;
}

.lucy-artists-hover-slider__preview.is-hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.lucy-artists-hover-slider__preview-link {
  display: block;
  width: 100%;
  max-width: 550px;
  text-decoration: none;
  pointer-events: auto;
}

.lucy-artists-hover-slider__polaroid {
  width: 100%;
  background: #efefed;
  padding: 16px 16px 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.lucy-artists-hover-slider__preview-image,
.lucy-artists-hover-slider__preview-placeholder {
  width: 100%;
  height: auto;
  max-height: min(60dvh, 500px);
  object-fit: cover;
  display: block;
  background: #e7e7e4;
}

.lucy-artists-hover-slider__preview-name {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.lucy-artists-hover-slider__preview-name .lucy-artists-hover-slider__artist-first {
  color: #737373;
  font-size: 28px;
}

.lucy-artists-hover-slider__preview-name .lucy-artists-hover-slider__artist-last {
  color: #737373;
  font-size: 28px;
}

/* ---------- Responsive large tablet ---------- */
@media (max-width: 1200px) {
  .lucy-artists-hover-slider {
    height: 100vh;
    height: calc(100dvh - 80px);
    min-height: 100vh;
    min-height: calc(100dvh - 80px);
  }

  .lucy-artists-hover-slider__preview-link {
    max-width: 320px;
  }

  .lucy-artists-hover-slider__artist-first,
  .lucy-artists-hover-slider__artist-last {
    font-size: clamp(48px, 8.5vh, 90px);
    line-height: 0.82;
  }
}

/* ---------- Responsive mobile/tablet ---------- */
@media (max-width: 900px) {
  .lucy-artists-hover-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: calc(100dvh - 80px);
    min-height: 100vh;
    min-height: calc(100dvh - 80px);
    padding: 24px 0 24px;
    overflow: hidden;
  }

  .lucy-artists-hover-slider__label--left {
    left: 16px;
  }

  .lucy-artists-hover-slider__label--right {
    right: 16px;
  }

  .lucy-artists-hover-slider__stage {
    position: relative;
    height: 100%;
    max-height: 100%;
  }

  .lucy-artists-hover-slider__marquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
  }

  .lucy-artists-hover-slider__track {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
    will-change: transform;
  }

  .lucy-artists-hover-slider__group {
    display: flex;
    align-items: stretch;
    gap: 18px;
    flex: 0 0 auto;
    height: 100%;
    padding-right: 18px;
    box-sizing: border-box;
  }

  .lucy-artists-hover-slider__name {
    min-width: 0;
    width: fit-content;
    height: 100%;
    align-self: stretch;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .lucy-artists-hover-slider__name-inner {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: auto;
    max-height: 100%;
    gap: 3px;
    white-space: nowrap;
  }

  .lucy-artists-hover-slider__artist-first,
  .lucy-artists-hover-slider__artist-last {
    font-size: clamp(36px, 9vh, 72px);
    line-height: 0.82;
  }

  .lucy-artists-hover-slider__artist-last {
    margin-top: 0px;
  }

  .lucy-artists-hover-slider__preview-link {
    max-width: 320px;
  }

  .lucy-artists-hover-slider__preview {
    width: 100%;
    max-width: calc(100% - 64px);
  }

  .lucy-artists-hover-slider__preview-image,
  .lucy-artists-hover-slider__preview-placeholder {
    max-height: min(42dvh, 320px);
  }

  .lucy-artists-hover-slider__preview-name .lucy-artists-hover-slider__artist-first,
  .lucy-artists-hover-slider__preview-name .lucy-artists-hover-slider__artist-last {
    font-size: 22px;
  }
}

/* =========================================
   FIN - ARTISTS HOVER SLIDER
========================================= */



@media (max-width: 1366px) {
  .lucy-text-slider {
    min-height: 640px;
  }

  .lucy-text-slider__content p {
    font-size: 19px;
  }
}


@media (max-width: 1024px) {
  .lucy-text-slider {
    min-height: auto;
  }

  .lucy-text-slider__content {
    max-width: 100%;
  }

  .lucy-text-slider__content p {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .lucy-text-slider__footer {
    margin-top: 24px;
  }

  .lucy-text-slider__pagination {
    gap: 28px;
  }
}



/* =========================================
   INICIO - NEWSLETTER MODAL
========================================= */

div.wpforms-container-full .wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    background: #e1e1e1 !important;
    border: 1px solid #7f8183 !important;
}

.lucy-newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.lucy-newsletter-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.lucy-newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.lucy-newsletter-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 475px);
  background: #F5F5F5;
  padding: 68px 56px 56px;
  box-sizing: border-box;
}

.lucy-newsletter-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.lucy-newsletter-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #7d7d7d;
  display: block;
}

.lucy-newsletter-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lucy-newsletter-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lucy-newsletter-modal__title {
  margin: 0 0 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #6f6f6f;
  text-align: left;
}

.lucy-newsletter-modal__form .wpforms-container {
  margin: 0;
}

.lucy-newsletter-modal__form .wpforms-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lucy-newsletter-modal__form .wpforms-field {
  padding: 0;
  margin: 0;
}

.lucy-newsletter-modal__form input[type="email"],
.lucy-newsletter-modal__form input[type="text"] {
  width: 100%;
  height: 42px;
  border: 1px solid #c7c7c7;
  background: transparent;
  box-shadow: none;
  outline: none;
  padding: 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1;
  color: #8a8a88;
}

.lucy-newsletter-modal__form input::placeholder {
  color: #b8b8b8;
  opacity: 1;
}

.lucy-newsletter-modal__form .wpforms-submit-container {
  padding: 0;
  margin: 0;
}

.lucy-newsletter-modal__form button[type="submit"],
.lucy-newsletter-modal__form .wpforms-submit {
  width: 100%;
  min-height: 40px;
  border: 0 !important;
  background: #727274 !important;
  color: #fff !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 12px 18px;
  box-shadow: none !important;
  transition: opacity 0.2s ease;
}

.lucy-newsletter-modal__form button[type="submit"]:hover,
.lucy-newsletter-modal__form .wpforms-submit:hover {
  opacity: 0.88;
}

body.lucy-newsletter-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .lucy-newsletter-modal__dialog {
    width: min(100% - 28px, 475px);
    padding: 58px 28px 32px;
  }

  .lucy-newsletter-modal__title {
    font-size: 18px;
    margin-bottom: 22px;
  }

.lucy-newsletter-modal__form div.wpforms-container-full.lucy-newsletter-form input[type="email"]{
		max-width: 100% !important;
	}
.lucy-newsletter-modal__form div.wpforms-container-full.lucy-newsletter-form button[type="submit"], div.wpforms-container-full.lucy-newsletter-form .wpforms-submit {
        max-width: 100% !important;
    }
}

/* =========================================
   FIN - NEWSLETTER MODAL
========================================= */