/* ==========================================================================
   DESTINO SINGLE
   Premium Modern Responsive Layout
   Primary como color base
   ========================================================================== */

/* ==========================================================================
   01. BASE
   ========================================================================== */

.destino-single-page {
  background: #f8fafc;
  color: #334155;
  font-family: inherit;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.destino-single-page *,
.destino-single-page *::before,
.destino-single-page *::after {
  box-sizing: border-box;
}

.destino-single-page img {
  display: block;
  max-width: 100%;
}

.destino-single-page .container {
  width: 100%;
  padding-inline: clamp(20px, 3vw, 48px);
  margin-inline: auto;
  box-sizing: border-box;
}

/* ==========================================================================
   02. ICON BOX
   ========================================================================== */

.destino-single-page .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  color: var(--color-primary);

  background: color-mix(in srgb, var(--color-primary) 9%, transparent);

  border: 1px solid color-mix(in srgb, var(--color-primary) 17%, transparent);

  border-radius: 11px;

  font-size: 16px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* ==========================================================================
   03. DESCRIPCIÓN + DATOS IMPORTANTES
   ========================================================================== */

.destino-info-section {
  padding: 0;
}

.destino-info-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 48px;

  align-items: start;
}

.destino-info-col {
  min-width: 0;

  animation: dpFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ==========================================================================
   04. DESCRIPCIÓN
   ========================================================================== */

.destino-main__text {
  color: #334155;

  font-size: 16px;
  line-height: 1.75;
}

.destino-main__text p {
  margin: 0 0 16px;
}

.destino-main__text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   05. DATOS IMPORTANTES
   ========================================================================== */

.destino-datos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.destino-dato-card {
  display: flex;
  align-items: flex-start;

  min-width: 0;

  gap: 12px;

  padding: 16px;

  background: #fff;

  border: 1px solid #e2e8f0;
  border-radius: 10px;

  box-shadow: 0 3px 14px rgba(9, 13, 22, 0.035);

  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.destino-dato-card:hover {
  transform: translateY(-2px);

  border-color: color-mix(in srgb, var(--color-primary) 55%, #e2e8f0);

  box-shadow: 0 9px 24px
    color-mix(in srgb, var(--color-primary) 10%, rgba(9, 13, 22, 0.06));
}

.destino-dato-card:hover .icon-box {
  color: #fff;

  background: var(--color-primary);

  border-color: var(--color-primary);

  transform: scale(1.04);
}

.destino-dato-card--full {
  grid-column: 1 / -1;
}

.destino-dato-card__content {
  min-width: 0;
}

.destino-dato-card__content h4 {
  margin: 0 0 5px;

  color: #0f172a;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.destino-dato-card__content p {
  margin: 0;

  color: #475569;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;

  overflow-wrap: anywhere;
  white-space: pre-line;
}

/* ==========================================================================
   06. ATRACTIVOS TURÍSTICOS
   ========================================================================== */

.destino-attractions-section {
  padding: 10px 0 0;
}

.destino-attractions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 0;
}

.destino-attractions__header .destino-section-title {
  margin-bottom: 0;
}

.destino-attractions__nav {
  display: flex;

  gap: 8px;

  flex-shrink: 0;
}

.destino-attractions__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: #0f172a;

  background: #fff;

  border: 1px solid #e2e8f0;
  border-radius: 50%;

  font-size: 14px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.destino-attractions__arrow:hover:not(:disabled) {
  color: #fff;

  background: var(--color-primary);

  border-color: var(--color-primary);

  transform: translateY(-1px);

  box-shadow: 0 7px 16px
    color-mix(in srgb, var(--color-primary) 24%, transparent);
}

.destino-attractions__arrow:disabled {
  opacity: 0.35;

  cursor: not-allowed;
}

.destino-attractions__carousel {
  width: 100%;

  margin-top: 22px;

  overflow: hidden;
}

.destino-attractions__track {
  display: flex;

  width: 100%;

  gap: 18px;

  overflow-x: auto;

  padding: 4px 4px 14px;
  margin: -4px -4px -14px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  overscroll-behavior-x: contain;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.destino-attractions__track::-webkit-scrollbar {
  display: none;
}

.destino-attractions__track .destino-attractions__card {
  flex: 0 0 230px;
  width: 230px;
  min-width: 0;
  scroll-snap-align: start;
}

.destino-attractions__card {
  min-width: 0;

  overflow: hidden;

  background: #fff;

  border: 1px solid #e2e8f0;
  border-radius: 16px;

  box-shadow: 0 4px 16px rgba(9, 13, 22, 0.035);

  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.destino-attractions__card:hover {
  transform: translateY(-3px);

  border-color: color-mix(in srgb, var(--color-primary) 55%, #e2e8f0);

  box-shadow: 0 12px 28px
    color-mix(in srgb, var(--color-primary) 10%, rgba(9, 13, 22, 0.08));
}

/* ==========================================================================
   07. IMAGEN DEL ATRACTIVO
   ========================================================================== */

.destino-attractions__img {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #f1f5f9;

  border-bottom: 1px solid #e2e8f0;
}

.destino-attractions__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destino-attractions__card:hover .destino-attractions__img img {
  transform: scale(1.045);
}

/* ==========================================================================
   08. BADGE DEL ATRACTIVO
   ========================================================================== */

.destino-attractions__badge {
  position: absolute;

  top: 10px;
  left: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  color: var(--color-primary);

  background: #fff;

  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);

  border-radius: 50%;

  font-size: 12px;
  font-weight: 800;

  box-shadow: 0 4px 10px rgba(9, 13, 22, 0.12);
}

/* ==========================================================================
   09. CONTENIDO DEL ATRACTIVO
   ========================================================================== */

.destino-attractions__content {
  padding: 15px;
}

.destino-attractions__content h3 {
  margin: 0 0 6px;

  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.destino-attractions__content p {
  margin: 0;

  color: #475569;

  font-size: 13px;
  line-height: 1.55;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  overflow: hidden;
}

/* ==========================================================================
   10. CTA — PLANIFICA TU VIAJE
   ========================================================================== */

.destino-cta-section {
  padding: 52px 0 0;
}

.destino-cta {
  display: flex;
  align-items: center;

  gap: 22px;

  padding: 30px 36px;

  background: #fff;

  border: 1px solid #e2e8f0;
  border-radius: 20px;

  box-shadow: 0 4px 18px rgba(9, 13, 22, 0.035);
}

.destino-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  flex-shrink: 0;

  color: var(--color-primary);

  background: color-mix(in srgb, var(--color-primary) 9%, transparent);

  border: 1px solid color-mix(in srgb, var(--color-primary) 17%, transparent);

  border-radius: 14px;

  font-size: 24px;
}

.destino-cta__text {
  flex: 1;
  min-width: 0;
}

.destino-cta__text h3 {
  margin: 0 0 5px;

  color: #0f172a;

  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.destino-cta__text p {
  margin: 0;

  color: #475569;

  font-size: 15px;
  line-height: 1.55;
}

/* ==========================================================================
   11. TOURS DISPONIBLES
   ========================================================================== */

.destino-tours-section {
  padding: 52px 0 0;
}

.destino-tours__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 0;
}

.destino-tours__header .destino-section-title {
  margin-bottom: 0;
}

.destino-tours__nav {
  display: flex;

  gap: 8px;

  flex-shrink: 0;
}

/* ==========================================================================
   12. FLECHAS DEL CARRUSEL
   ========================================================================== */

.destino-tours__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: #0f172a;

  background: #fff;

  border: 1px solid #e2e8f0;
  border-radius: 50%;

  font-size: 14px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.destino-tours__arrow:hover:not(:disabled) {
  color: #fff;

  background: var(--color-primary);

  border-color: var(--color-primary);

  transform: translateY(-1px);

  box-shadow: 0 7px 16px
    color-mix(in srgb, var(--color-primary) 24%, transparent);
}

.destino-tours__arrow:disabled {
  opacity: 0.35;

  cursor: not-allowed;
}

/* ==========================================================================
   13. CARRUSEL
   ========================================================================== */

.destino-tours__carousel {
  width: 100%;

  margin-top: 22px;

  overflow: hidden;
}

.destino-tours__track {
  display: flex;

  width: 100%;

  gap: 20px;

  overflow-x: auto;

  padding: 4px 4px 14px;
  margin: -4px -4px -14px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  overscroll-behavior-x: contain;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.destino-tours__track::-webkit-scrollbar {
  display: none;
}

.destino-tours__track .tour-card {
  flex: 0 0 300px;
  width: 300px;
  min-width: 0;
  scroll-snap-align: start;
}

/* ==========================================================================
   PAGINACIÓN (PUNTOS)
   ========================================================================== */

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 24px;
}

.carousel-dot {
  padding: 0;

  width: 9px;
  height: 9px;

  background: #cbd5e1;

  border: none;
  border-radius: 99px;

  cursor: pointer;

  transition:
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease,
    transform 0.25s ease;
}

.carousel-dot:hover:not(.is-active) {
  background: color-mix(in srgb, var(--color-primary) 50%, #cbd5e1);
  transform: scale(1.15);
}

.carousel-dot.is-active {
  width: 24px;
  background: var(--color-primary);
}


/* ==========================================================================
   10. TOUR CARD
   ========================================================================== */

.tour-card {
  min-width: 0;
  height: 100%;
}

.tour-card__link {
  display: flex;
  flex-direction: column;

  height: 100%;
  min-width: 0;

  overflow: hidden;

  background: #fff;

  border: 1px solid color-mix(in srgb, var(--color-primary) 8%, #e2e8f0);

  border-radius: 17px;

  box-shadow: 0 5px 18px
    color-mix(in srgb, var(--color-primary) 5%, rgba(15, 23, 42, 0.07));

  text-decoration: none;

  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.tour-card__link:hover {
  transform: translateY(-4px);

  border-color: color-mix(in srgb, var(--color-primary) 32%, #e2e8f0);

  box-shadow: 0 13px 30px
    color-mix(in srgb, var(--color-primary) 11%, rgba(15, 23, 42, 0.09));
}

/* ==========================================================================
   11. IMAGEN DEL TOUR
   ========================================================================== */

.tour-card__img {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #f1f5f9;

  border-bottom: 1px solid #e2e8f0;
}

.tour-card__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card__link:hover .tour-card__img img {
  transform: scale(1.045);
}

.tour-card__placeholder {
  width: 100%;
  height: 100%;

  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

/* ==========================================================================
   12. BADGE DURACIÓN
   ========================================================================== */

.tour-card__duration-badge {
  position: absolute;

  top: 11px;
  right: 11px;

  display: inline-flex;
  align-items: center;

  gap: 5px;

  padding: 6px 10px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent);

  border-radius: 999px;

  color: #0f172a;

  font-size: 11px;
  font-weight: 800;

  line-height: 1;

  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);

  backdrop-filter: blur(5px);
}

.tour-card__duration-badge .icon {
  color: var(--color-primary);
}

/* ==========================================================================
   13. BODY DEL CARD
   ========================================================================== */

.tour-card__body {
  display: flex;
  flex-direction: column;

  flex: 1;
  min-width: 0;

  padding: 18px 19px 19px;
}

/* ==========================================================================
   14. DESTINO DEL TOUR
   ========================================================================== */

.tour-card__destination {
  display: inline-flex;
  align-items: center;

  align-self: flex-start;

  max-width: 100%;

  gap: 6px;

  margin: 0 0 8px;

  color: var(--color-primary);

  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;

  letter-spacing: 0.045em;
  text-transform: uppercase;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-card__destination .icon {
  flex-shrink: 0;
}

/* ==========================================================================
   15. TÍTULO DEL TOUR
   ========================================================================== */

.tour-card__title {
  display: block;

  margin: 0 0 10px;

  color: #0f172a;

  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;

  letter-spacing: -0.015em;

  overflow: visible;
  word-wrap: break-word;
}

/* ==========================================================================
   16. PRECIO
   ========================================================================== */

.tour-card__price {
  margin: auto 0 14px;

  color: #64748b;

  font-size: 13px;
  line-height: 1.4;
}

.tour-card__price strong {
  color: #0f172a;

  font-size: 17px;
  font-weight: 800;
}

/* ==========================================================================
   17. BOTÓN DEL CARD
   ========================================================================== */

.tour-card__body .ac__button {
  align-self: flex-start;

  max-width: 100%;
}

/* ==========================================================================
   14. ANIMACIONES
   ========================================================================== */

.destino-info-col,
.destino-attractions-section,
.destino-cta-section,
.destino-tours-section {
  animation: dpFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dpFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   15. TABLET
   769px - 1024px
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .destino-single-page .container {
    width: min(100% - 40px, 960px);
  }

  /* Info */

  .destino-info-grid {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  /* Attractions */

  .destino-attractions__track {
    gap: 16px;
  }

  /* CTA */

  .destino-cta {
    padding: 28px 30px;
  }

  /* Tours */

  .destino-tours__track {
    gap: 18px;
  }
}

/* ==========================================================================
   16. MÓVIL
   Hasta 768px
   ========================================================================== */

@media (max-width: 768px) {
  .destino-single-page .container {
    width: min(100% - 32px, 620px);
  }

  /* ----------------------------------------------------------------------
       INFO
       ---------------------------------------------------------------------- */

  .destino-info-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .destino-main__text {
    font-size: 15px;
    line-height: 1.7;
  }

  /* ----------------------------------------------------------------------
       DATOS
       ---------------------------------------------------------------------- */

  .destino-datos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .destino-dato-card {
    gap: 10px;

    padding: 14px;

    border-radius: 9px;
  }

  .destino-dato-card__content h4 {
    font-size: 11px;
  }

  .destino-dato-card__content p {
    font-size: 13px;
  }

  .destino-single-page .icon-box {
    width: 36px;
    height: 36px;

    border-radius: 9px;

    font-size: 14px;
  }

  /* ----------------------------------------------------------------------
       ATRACTIVOS
       ---------------------------------------------------------------------- */

  .destino-attractions-section {
    padding-top: 6px;
  }

  .destino-attractions__header {
    gap: 14px;
  }

  .destino-attractions__nav {
    gap: 7px;
  }

  .destino-attractions__arrow {
    width: 38px;
    height: 38px;

    font-size: 13px;
  }

  .destino-attractions__carousel {
    margin-top: 18px;
  }

  .destino-attractions__track {
    gap: 16px;
  }

  .destino-attractions__track .destino-attractions__card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .destino-attractions__card {
    border-radius: 14px;
  }

  .destino-attractions__content {
    padding: 13px;
  }

  .destino-attractions__content h3 {
    font-size: 14px;
  }

  .destino-attractions__content p {
    font-size: 12.5px;
  }

  /* ----------------------------------------------------------------------
       CTA
       ---------------------------------------------------------------------- */

  .destino-cta-section {
    padding-top: 42px;
  }

  .destino-cta {
    flex-direction: column;

    gap: 16px;

    padding: 26px 22px;

    text-align: center;

    border-radius: 18px;
  }

  .destino-cta__icon {
    width: 54px;
    height: 54px;

    border-radius: 13px;

    font-size: 22px;
  }

  .destino-cta__text h3 {
    font-size: 21px;
  }

  .destino-cta__text p {
    font-size: 14px;
  }

  /* ----------------------------------------------------------------------
       TOURS
       ---------------------------------------------------------------------- */

  .destino-tours-section {
    padding-top: 42px;
  }

  .destino-tours__header {
    gap: 14px;
  }

  .destino-tours__nav {
    gap: 7px;
  }

  .destino-tours__arrow {
    width: 38px;
    height: 38px;

    font-size: 13px;
  }

  .destino-tours__carousel {
    margin-top: 18px;
  }

  .destino-tours__track {
    gap: 16px;
  }

  .destino-tours__track .tour-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .tour-card__link {
    border-radius: 15px;
  }

  .tour-card__duration-badge {
    top: 9px;
    right: 9px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .tour-card__body {
    padding: 15px;
  }

  .tour-card__destination {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .tour-card__title {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .tour-card__price {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .tour-card__price strong {
    font-size: 15px;
  }

  .tour-card__body .ac__button {
    --main-size: 12.5px;
  }
}

/* ==========================================================================
   17. MÓVIL PEQUEÑO
   Hasta 480px
   ========================================================================== */

@media (max-width: 480px) {
  .destino-single-page .container {
    width: calc(100% - 28px);
  }

  /* Info */

  .destino-info-grid {
    gap: 26px;
  }

  .destino-main__text {
    font-size: 14px;
  }

  /* Datos */

  .destino-datos-grid {
    grid-template-columns: 1fr;

    gap: 9px;
  }

  .destino-dato-card {
    padding: 13px;
  }

  /* Attractions */

  .destino-attractions__header {
    align-items: flex-start;
  }

  .destino-attractions__nav {
    gap: 6px;
  }

  .destino-attractions__arrow {
    width: 36px;
    height: 36px;
  }

  .destino-attractions__track {
    gap: 14px;
  }

  .destino-attractions__img {
    aspect-ratio: 4 / 4.7;
  }

  .destino-attractions__badge {
    top: 8px;
    left: 8px;

    width: 27px;
    height: 27px;

    font-size: 11px;
  }

  .destino-attractions__content {
    padding: 12px;
  }

  .destino-attractions__content h3 {
    font-size: 13.5px;
  }

  .destino-attractions__content p {
    font-size: 12px;

    -webkit-line-clamp: 2;
  }

  /* CTA */

  .destino-cta-section {
    padding-top: 36px;
  }

  .destino-cta {
    padding: 23px 18px;

    border-radius: 16px;
  }

  .destino-cta__icon {
    width: 50px;
    height: 50px;
  }

  .destino-cta__text h3 {
    font-size: 20px;
  }

  .destino-cta__text p {
    font-size: 13.5px;
  }

  /* Tours */

  .destino-tours-section {
    padding-top: 36px;
  }

  .destino-tours__header {
    align-items: flex-start;
  }

  .destino-tours__nav {
    gap: 6px;
  }

  .destino-tours__arrow {
    width: 36px;
    height: 36px;
  }

  .destino-tours__track {
    gap: 14px;
  }

  .destino-tours__track .tour-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .tour-card__link {
    border-radius: 14px;
  }

  .tour-card__duration-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 9.5px;
  }

  .tour-card__body {
    padding: 14px;
  }

  .tour-card__destination {
    font-size: 9.5px;
    margin-bottom: 6px;
  }

  .tour-card__title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 9px;
  }

  .tour-card__price {
    font-size: 11.5px;
    margin-bottom: 11px;
  }

  .tour-card__price strong {
    font-size: 14.5px;
  }

  .tour-card__body .ac__button {
    --main-size: 12px;
  }
}

/* ==========================================================================
   18. MÓVIL MUY PEQUEÑO
   Hasta 360px
   ========================================================================== */

@media (max-width: 360px) {
  .destino-single-page .container {
    width: calc(100% - 24px);
  }

  .destino-attractions__img {
    aspect-ratio: 16 / 10;
  }

  .destino-tours__track .tour-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ==========================================================================
   19. REDUCIR MOVIMIENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .destino-single-page *,
  .destino-single-page *::before,
  .destino-single-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   20. DRAWER / SLIDE-OVER DE ATRACTIVOS TURÍSTICOS
   ========================================================================== */

.destino-attractions__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.destino-attractions__more-btn:hover {
  color: #0f172a;
}

.destino-attractions__more-btn svg,
.destino-attractions__more-btn .icon {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.destino-attractions__more-btn:hover svg,
.destino-attractions__more-btn:hover .icon {
  transform: translateX(3px);
}

.destino-attractions__card {
  cursor: default;
}

html.attraction-drawer-open,
body.attraction-drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Backdrop Overlay */
.attraction-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.attraction-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Slide-Over Drawer */
.attraction-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  box-shadow: -12px 0 40px rgba(9, 13, 22, 0.22);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.attraction-drawer.is-open {
  transform: translateX(0);
}

/* Close Button */
.attraction-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.attraction-drawer__close:hover {
  background: #ffffff;
  transform: scale(1.08);
}

/* Banner Image */
.attraction-drawer__banner {
  position: relative;
  width: 100%;
  height: 250px;
  background: #090d16;
  flex-shrink: 0;
}

.attraction-drawer__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-drawer__badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background: var(--color-primary);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Drawer Body Content */
.attraction-drawer__body {
  flex: 1;
  padding: 28px 24px;
  overflow-y: auto;
}

.attraction-drawer__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.attraction-drawer__title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 16px;
}

.attraction-drawer__text {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  white-space: pre-line;
}

/* Drawer Footer */
.attraction-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
  display: flex;
  justify-content: flex-end;
}

.attraction-drawer__btn-close {
  min-width: 140px;
}

/* Mobile responsive drawer */
@media (max-width: 640px) {
  .attraction-drawer {
    top: auto;
    left: 0;
    max-width: 100%;
    height: 85vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .attraction-drawer.is-open {
    transform: translateY(0);
  }

  .attraction-drawer__banner {
    height: 200px;
  }
}
