/* ==========================================================================
   HOME
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Hero Slider & Horizontal Track
   -------------------------------------------------------------------------- */

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero__slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
}

/* --------------------------------------------------------------------------
   Pagination Dots
   -------------------------------------------------------------------------- */

.hero__pagination {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__dot.is-active {
  width: 28px;
  border-radius: 6px;
  background: var(--color-primary, #e43425);
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 60%, transparent);
}

/* --------------------------------------------------------------------------
   Hero Overlay (Gradiente al lado izquierdo para contraste del texto)
   -------------------------------------------------------------------------- */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 48%,
    rgba(0, 0, 0, 0.08) 100%
  );

  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Hero Container
   -------------------------------------------------------------------------- */

.hero > .container {
  position: relative;
  z-index: 2;

  width: min(1200px, calc(100% - 48px));

  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Hero Content & Animated Slide Transitions
   -------------------------------------------------------------------------- */

.hero__content-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 320px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero__content-slide {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  max-width: 680px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s ease;
  pointer-events: none;
  text-align: left;
}

.hero__content-slide.is-active {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Staggered entrance animations for title, description, and button */
.hero__content-slide.is-active .hero__title {
  animation: heroContentFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 0.12s;
}

.hero__content-slide.is-active .hero__description {
  animation: heroContentFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 0.25s;
}

.hero__content-slide.is-active .hero__button {
  animation: heroContentFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both 0.38s;
}

@keyframes heroContentFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Hero Title
   -------------------------------------------------------------------------- */

.hero__title {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   Hero Description
   -------------------------------------------------------------------------- */

.hero__description {
  max-width: 560px;

  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   Hero Button
   -------------------------------------------------------------------------- */

.hero__button {
  margin-top: 36px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__content-wrapper {
    padding-top: 30px;
    padding-bottom: 70px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(26px, 6.8vw, 34px);
    line-height: 1.15;
  }

  .hero__description {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .hero__button {
    margin-top: 20px;
  }

  .hero__pagination {
    bottom: 58px;
  }

  .home-search {
    margin-top: -85px;
  }
}

/* ==========================================================================
   HOME SEARCH
   ========================================================================== */

.home-search {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding: 0;
}

.home-search .container {
  width: min(1200px, calc(100% - 48px));

  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Search Form
   -------------------------------------------------------------------------- */

.home-search__form {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  padding: 22px;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.05);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* --------------------------------------------------------------------------
   Search Group
   -------------------------------------------------------------------------- */

.home-search__group {
  flex: 1;

  min-width: 0;
}

/* --------------------------------------------------------------------------
   Input Wrapper
   -------------------------------------------------------------------------- */

.hs-input-wrapper {
  position: relative;

  display: flex;
  align-items: center;

  height: 56px;

  padding: 0 16px;

  background: #ffffff;

  border: 1px solid #e2e8f0;
  border-radius: 11px;

  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hs-input-wrapper:hover {
  border-color: color-mix(in srgb, var(--color-primary), #ffffff 55%);

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
}

.hs-input-wrapper:focus-within {
  border-color: var(--color-primary);

  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--color-primary), transparent 82%);
}

/* --------------------------------------------------------------------------
   Search Icons
   -------------------------------------------------------------------------- */

.hs-input-wrapper svg {
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  margin-right: 12px;

  stroke: var(--color-primary);
}

/* ==========================================================================
   SEARCH SELECT
   ========================================================================== */

.home-search__group select {
  width: 100%;
  height: 100%;

  min-width: 0;

  padding: 0 32px 0 0;

  color: #334155;

  font-family: inherit;

  font-size: 15px;
  font-weight: 500;

  background-color: transparent;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");

  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 17px;

  border: 0;
  outline: 0;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.home-search__group select:hover {
  color: #0f172a;
}

.home-search__group select:focus {
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   Select Options
   -------------------------------------------------------------------------- */

.home-search__group select option {
  padding: 10px;

  color: #334155;

  background-color: #ffffff;

  font-family: inherit;
  font-size: 14px;
}

/* ==========================================================================
   SEARCH BUTTON
   ========================================================================== */

.home-search__button {
  flex: 0 0 auto;

  height: 56px;
}

.btn-home-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  padding: 0 38px;

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;
  font-weight: 700;

  background-color: var(--color-primary);

  border: 0;
  border-radius: 11px;

  box-shadow: 0 6px 16px
    color-mix(in srgb, var(--color-primary), transparent 68%);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-home-search:hover {
  transform: translateY(-2px);

  background-color: color-mix(in srgb, var(--color-primary), black 10%);

  box-shadow: 0 9px 22px
    color-mix(in srgb, var(--color-primary), transparent 58%);
}

.btn-home-search:active {
  transform: translateY(0);
}

.btn-home-search:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ==========================================================================
   FEATURED TOURS
   ========================================================================== */

.featured-tours {
  padding: 72px 0;

  background-color: #f8fafc;
}

.featured-tours .container {
  width: min(1200px, calc(100% - 48px));

  margin-inline: auto;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.section-header {
  margin-bottom: 48px;

  text-align: center;
}

.section-subtitle {
  display: block;

  margin-bottom: 12px;

  color: var(--color-primary);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.16em;
  line-height: 1.4;

  text-transform: uppercase;
}

.section-title {
  margin: 0;

  color: #0f172a;

  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;

  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-divider {
  width: 58px;
  height: 4px;

  margin: 20px auto 0;

  background-color: var(--color-primary);

  border-radius: 999px;
}

/* ==========================================================================
   TOURS GRID
   ========================================================================== */

.tours-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

/* ==========================================================================
   TOUR CARD (misma tarjeta que en el archivo de tours)
   ========================================================================== */

.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));
}

/* ==========================================================================
   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);
}

/* ==========================================================================
   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);
}

/* ==========================================================================
   BODY DEL CARD
   ========================================================================== */

.tour-card__body {
  display: flex;
  flex-direction: column;

  flex: 1;
  min-width: 0;

  padding: 18px 19px 19px;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   TÍTULO DEL TOUR
   ========================================================================== */

.tour-card__title {
  display: -webkit-box;

  margin: 0 0 12px;

  color: #0f172a;

  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;

  letter-spacing: -0.015em;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   BOTÓN DEL CARD
   ========================================================================== */

.tour-card__body .ac__button {
  align-self: flex-start;

  max-width: 100%;
}

/* ==========================================================================
   NO TOURS
   ========================================================================== */

.no-tours {
  grid-column: 1 / -1;

  margin: 0;
  padding: 40px;

  color: #64748b;

  text-align: center;

  background-color: #ffffff;

  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

/* ==========================================================================
   FEATURED TOURS ACTION (BOTÓN VER TODOS LOS TOURS)
   ========================================================================== */

.featured-tours__action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

/* ==========================================================================
   TRIPADVISOR — TRUST BOX PREMIUM
   ========================================================================== */

.tripadvisor-trust {
  padding: 72px 0;

  background-color: #ffffff;
}

.tripadvisor-trust .container {
  width: min(1200px, calc(100% - 48px));

  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Tripadvisor Card Container
   -------------------------------------------------------------------------- */

.tripadvisor-trust__card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 290px 1fr auto;
  align-items: center;

  gap: 36px;

  padding: 34px 38px;

  background-color: #ffffff;

  border: 1px solid #e2e8f0;
  border-radius: 20px;

  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.03);
}

/* --------------------------------------------------------------------------
   Score Box (Tripadvisor Badge)
   -------------------------------------------------------------------------- */

.tripadvisor-trust__score-box {
  display: flex;
  align-items: center;

  gap: 16px;

  padding: 18px 20px;

  background: #ffffff;

  border: 1px solid #e2e8f0;
  border-radius: 16px;

  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.tripadvisor-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 52px;

  width: 52px;
  height: 52px;

  color: #00aa6c;
}

.tripadvisor-trust__icon svg {
  display: block;

  width: 100%;
  height: 100%;
}

.tripadvisor-trust__icon svg circle:first-child {
  fill: #00aa6c;
}

.tripadvisor-trust__icon svg circle:not(:first-child) {
  fill: #ffffff;
}

.tripadvisor-trust__icon svg path {
  fill: none;

  stroke: #ffffff;
  stroke-width: 2.5;

  stroke-linecap: round;
}

.tripadvisor-trust__score-details {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.tripadvisor-trust__brand-label {
  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #64748b;
}

.tripadvisor-trust__score-row {
  display: flex;
  align-items: center;

  gap: 8px;

  margin: 2px 0 3px;
}

.tripadvisor-trust__score-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;

  color: #0f172a;
}

.tripadvisor-trust__score-meta {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.tripadvisor-trust__score-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;

  color: #00aa6c;
}

.tripadvisor-trust__bubbles {
  display: flex;
  align-items: center;

  gap: 3px;
}

.tripadvisor-trust__bubbles .bubble {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background-color: #00aa6c;
}

.tripadvisor-trust__reviews-count {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  font-size: 11px;
  font-weight: 600;

  color: #64748b;
}

.tripadvisor-trust__reviews-count .icon {
  color: #00aa6c;

  font-size: 10px;
}

/* --------------------------------------------------------------------------
   Information & Value Proposition
   -------------------------------------------------------------------------- */

.tripadvisor-trust__info {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.tripadvisor-trust__eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  width: fit-content;

  padding: 4px 10px;

  margin-bottom: 8px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--color-primary);

  background: color-mix(in srgb, var(--color-primary) 10%, transparent);

  border-radius: 999px;
}

.tripadvisor-trust__eyebrow .icon {
  font-size: 10px;
}

.tripadvisor-trust__title {
  margin: 0 0 7px;

  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;

  color: #0f172a;
}

.tripadvisor-trust__text {
  margin: 0;

  font-size: 14px;
  line-height: 1.6;

  color: #64748b;
}

/* --------------------------------------------------------------------------
   Call to Action (Button)
   -------------------------------------------------------------------------- */

.tripadvisor-trust__action {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.tripadvisor-trust__btn {
  flex-shrink: 0;
}

/* ==========================================================================
   DESKTOP
   993px+
   ========================================================================== */

@media (min-width: 993px) {
  .hero {
    min-height: 90vh;
  }

  .hero__content {
    padding-top: 80px;
  }
}

/* ==========================================================================
   TABLET
   769px - 992px
   ========================================================================== */

@media (min-width: 769px) and (max-width: 992px) {
  /* Hero */

  .hero {
    min-height: 80vh;
  }

  .hero__content {
    max-width: 600px;

    padding-top: 70px;
  }

  .hero__title {
    font-size: clamp(44px, 6vw, 64px);
  }

  /* Search */

  .home-search {
    margin-top: -45px;
  }

  .home-search__form {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    padding: 18px;
  }

  .home-search__button {
    width: 100%;
  }

  /* Tours */

  .featured-tours {
    padding: 60px 0;
  }

  .tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
  }

  /* Tripadvisor */

  .tripadvisor-trust {
    padding: 56px 0;
  }

  .tripadvisor-trust__card {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 30px 28px;
  }

  .tripadvisor-trust__action {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE
   <= 768px
   ========================================================================== */

@media (max-width: 768px) {
  /* ----------------------------------------------------------------------
       Hero
       ---------------------------------------------------------------------- */

  .hero {
    min-height: 78vh;
  }

  .hero > .container {
    width: calc(100% - 32px);
  }

  .hero__content {
    max-width: 100%;

    padding-top: 60px;
  }

  .hero__title {
    font-size: clamp(40px, 10vw, 58px);

    line-height: 1.05;
  }

  .hero__description {
    margin-top: 18px;

    font-size: 16px;
    line-height: 1.6;
  }

  .hero__button {
    margin-top: 28px;
  }

  /* ----------------------------------------------------------------------
       Search
       ---------------------------------------------------------------------- */

  .home-search {
    margin-top: -35px;
  }

  .home-search .container {
    width: calc(100% - 32px);
  }

  .home-search__form {
    flex-direction: column;
    align-items: stretch;

    gap: 12px;

    padding: 16px;

    border-radius: 16px;
  }

  .home-search__group {
    width: 100%;
  }

  .hs-input-wrapper {
    height: 52px;
  }

  .home-search__button {
    width: 100%;

    height: 52px;

    margin-top: 2px;
  }

  .btn-home-search {
    width: 100%;

    padding: 0 24px;
  }

  /* ----------------------------------------------------------------------
       Featured Tours
       ---------------------------------------------------------------------- */

  .featured-tours {
    padding: 54px 0;
  }

  .featured-tours .container {
    width: calc(100% - 32px);
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .tours-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  /* ----------------------------------------------------------------------
       Tour Card
       ---------------------------------------------------------------------- */

  .tour-card__body {
    padding: 16px;
  }

  /* ----------------------------------------------------------------------
       Tripadvisor
       ---------------------------------------------------------------------- */

  .tripadvisor-trust {
    padding: 48px 0;
  }

  .tripadvisor-trust .container {
    width: calc(100% - 32px);
  }

  .tripadvisor-trust__card {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 24px 20px;

    border-radius: 18px;
  }

  .tripadvisor-trust__score-box {
    padding: 14px 16px;
  }

  .tripadvisor-trust__action {
    width: 100%;
  }

  .tripadvisor-trust__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SMALL MOBILE
   <= 480px
   ========================================================================== */

@media (max-width: 480px) {
  /* ----------------------------------------------------------------------
       Hero
       ---------------------------------------------------------------------- */

  .hero {
    min-height: 74vh;
  }

  .hero > .container {
    width: calc(100% - 24px);
  }

  .hero__content {
    padding-top: 45px;
  }

  .hero__title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero__description {
    font-size: 15px;
  }

  /* ----------------------------------------------------------------------
       Search
       ---------------------------------------------------------------------- */

  .home-search {
    margin-top: -28px;
  }

  .home-search .container {
    width: calc(100% - 24px);
  }

  .home-search__form {
    padding: 13px;

    border-radius: 14px;
  }

  .hs-input-wrapper {
    height: 50px;

    padding: 0 14px;
  }

  .hs-input-wrapper svg {
    width: 18px;
    height: 18px;

    margin-right: 10px;
  }

  .home-search__group select {
    font-size: 14px;
  }

  .home-search__button {
    height: 50px;
  }

  .btn-home-search {
    font-size: 14px;
  }

  /* ----------------------------------------------------------------------
       Tours
       ---------------------------------------------------------------------- */

  .featured-tours {
    padding: 44px 0;
  }

  .featured-tours .container {
    width: calc(100% - 24px);
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: 10px;
  }

  .section-title {
    font-size: 28px;
  }

  .tour-card__body {
    padding: 15px 16px 17px;
  }

  .tour-card__title {
    font-size: 16px;
  }

  .tour-card__price {
    font-size: 12px;
  }

  .tour-card__price strong {
    font-size: 15.5px;
  }

  /* ----------------------------------------------------------------------
       Tripadvisor
       ---------------------------------------------------------------------- */

  .tripadvisor-trust {
    padding: 40px 0;
  }

  .tripadvisor-trust .container {
    width: calc(100% - 24px);
  }

  .tripadvisor-trust__card {
    gap: 18px;

    padding: 20px 16px;

    border-radius: 16px;
  }

  .tripadvisor-trust__score-box {
    gap: 12px;

    padding: 12px 14px;
  }

  .tripadvisor-trust__icon {
    flex-basis: 42px;

    width: 42px;
    height: 42px;
  }

  .tripadvisor-trust__score-num {
    font-size: 22px;
  }

  .tripadvisor-trust__title {
    font-size: 18px;
  }

  .tripadvisor-trust__text {
    font-size: 13px;
  }
}

/* ==========================================================================
   REDUCIR MOVIMIENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .tour-card__link,
  .tour-card__img img,
  .btn-home-search {
    transition: none;
  }

  .tour-card__link:hover {
    transform: none;
  }

  .tour-card__link:hover .tour-card__img img {
    transform: none;
  }

  .btn-home-search:hover {
    transform: none;
  }
}
