/* assets/css/home.css
   Home page sections only.
*/
/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero picture,
.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  /*background: linear-gradient(90deg, rgba(8, 47, 37, .92), rgba(8, 47, 37, .58) 46%, rgba(8, 47, 37, .25));*/
  background: linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .58) 46%, rgba(0, 0, 0, .25));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 92px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: .01em;
}

.hero p:not(.eyebrow) {
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 2vw, 18px);
}

.hero__actions {
  display: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.btn--primary {
  color: var(--green-950);
  background: var(--gold-400);
}

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.btn--primary:hover {
  color: var(--green-950);
  background: #ffd278;
}

.btn--ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
}


/* ==========================================================
   V8 - Secciones HOME basadas en referencias enviadas
   - No toca el header
   - Sin JavaScript
   - Usa la grilla propia .row / .col-*
   ========================================================== */

.btn--blue,
.load-more-btn {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(4, 161, 240, .22);
}

.btn--blue:hover,
.load-more-btn:hover {
  color: var(--white);
  background: var(--blue-500);
}

.section--pale {
  background: #f2faf9;
}

.home-section-head {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.home-section-head--center {
  text-align: center;
}

.home-section-head h4 {
  margin: 0;
  color: #050505;
  font-size: clamp(20px, 3.3vw, 35px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: uppercase;
}



.home-section-head span {
  margin: 0;
  color: #050505;
  font-size: clamp(12px, 1.5vw, 15px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
  font-weight: 500;
}

.home-section-head .titlespan {
  margin: 0;
  color: #050505;
  font-size: clamp(25px, 3.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-section-head p {
  max-width: 1020px;
  margin: 24px auto 0;
  color: #858585;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 1.8;
}

/* About like reference */
.home-about {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.home-about::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 5vw;
  width: 110px;
  height: 70px;
  opacity: .18;
  background: linear-gradient(135deg, var(--blue), transparent 70%);
  clip-path: polygon(0 55%, 55% 0, 70% 22%, 100% 12%, 82% 55%, 100% 88%, 52% 75%, 12% 100%);
  pointer-events: none;
}

.brush-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 14px;
  /*padding: 0 52px;*/
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.brush-label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #d8efd2;
  transform: skew(-12deg) rotate(-2deg);
  border-radius: 44% 56% 48% 52% / 60% 42% 58% 40%;
}

.home-about h2 {
  max-width: 620px;
  color: #050505;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -.015em;
}

.home-about p {
  max-width: 720px;
  margin-top: 34px;
  color: #777;
  font-size: clamp(16px, 1.4vw, 15px);
  line-height: 1.85;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 600px;
  background: var(--cream-100);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
  max-width: 620px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 20px 26px;
  border-radius: 12px;
}

.about-badge--green {
  background: #f0faed;
}

.about-badge--cream {
  background: #fff8ed;
}

.about-badge span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: #62b44b;
  background: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.about-badge strong {
  color: #121212;
  font-size: 18px;
  line-height: 1.18;
}

.about-btn {
  margin-top: 42px;
  min-width: 160px;
}









/* ==========================================================
   Destination cards - Perú Tours
   Diseño tipo referencia: imagen visible, título abajo,
   botón al lado derecho y overlay ligero
   ========================================================== */

.home-destinations {
  position: relative;
  overflow: hidden;
  background: #eef8f7;
}

.home-destinations::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.85), transparent 26%),
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.55), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.45), transparent 60%);
  pointer-events: none;
}

.home-destinations .container {
  position: relative;
  z-index: 1;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.destination-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 7px;
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  isolation: isolate;
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1;
  filter: none;
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
}

.destination-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(90deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .24)),
    linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .04));
  pointer-events: none;
}

/* Se usa h2 porque tu HTML tiene <h2>. Dejo h3 también por compatibilidad. */
.destination-card h2,
.destination-card h3 {
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 3;

  margin: 0;
  color: var(--white);

  font-size: clamp(18px, 2.0vw, 28px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;

  text-shadow: 0 3px 12px rgba(0, 0, 0, .38);
}

.destination-card a {
  position: absolute;
  top: 50%;
  right: 34px;
  z-index: 3;

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

  min-height: 50px;
  padding: 0 20px;

  border-radius: 7px;
  color: var(--white);
  background: rgba(105, 152, 71, .92);

  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;

  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  transition: background .2s ease, transform .2s ease;
}

.destination-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.destination-card:hover a {
  color: var(--white);
  background: #5b8f38;
  transform: translateY(-50%) scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .destination-card {
    min-height: 255px;
  }
}

@media (max-width: 575px) {
  .home-destinations {
    padding-block: 48px;
  }

  .destinations-grid {
    gap: 18px;
  }

  .destination-card {
    min-height: 235px;
    border-radius: 8px;
  }

  .destination-card h2,
  .destination-card h3 {
    left: 22px;
    right: 22px;
    bottom: 24px;
    font-size: 31px;
  }

  .destination-card a {
    top: 28px;
    right: 22px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 15px;
  }
}







/* Tour cards like Cusco / Machu Picchu screenshots */
.home-tour-section {
  background: var(--white);
}

.tour-showcase {
  position: relative;
}

.showcase-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.showcase-card img,
.showcase-card__shade {
  position: absolute;
  inset: 0;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__shade {
  background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.45) 52%, rgba(0,0,0,.08));
}

.showcase-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: var(--white);
}

.rating-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.rating-dots span {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #22d391;
}

.rating-dots small {
  margin-left: 4px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.showcase-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 2.0vw, 22px);
  line-height: 1.20;
  letter-spacing: -.035em;
}



.showcase-card__content > p {
  margin: 28px 0 2px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.price-row strong {
  color: #27d66f;
  font-size: 36px;
  line-height: 1;
}

.price-row strong small {
  font-size: 18px;
  vertical-align: super;
}

.price-row strong span {
  margin-left: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.price-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.price-row a:hover {
  color: var(--white);
  background: var(--blue-500);
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 76px;
  height: 46px;
  place-items: center;
  border: 1px dashed rgba(4, 161, 240, .65);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.9);
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(0,0,0,.1);
}

.showcase-arrow--left {
  left: -46px;
}

.showcase-arrow--right {
  right: -46px;
}

/* Blog like reference */
.home-blog {
  background: var(--white);
}

.blog-head h4 {
  font-size: clamp(35px, 3.5vw, 48px);
  text-transform: none;
}

.blog-head p {
  max-width: 900px;
  font-size: clamp(18px, 1.4vw, 18px);
  line-height: 1.8;
}

.blog-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
  background: #111;
}

.blog-card img,
.blog-card__shade {
  position: absolute;
  inset: 0;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card--placeholder img {
  opacity: .28;
  filter: grayscale(1);
}

.blog-card__shade {
  background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.45) 55%, rgba(255,255,255,.08));
}

.blog-card time {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  align-content: center;
  border-radius: 999px;
  color: var(--white);
  background: #ff9800;
  text-align: center;
  line-height: 1.05;
}

.blog-card time strong,
.blog-card time span {
  display: block;
}

.blog-card time strong {
  font-size: 28px;
}

.blog-card time span {
  font-size: 15px;
}

.blog-card__body {
  position: absolute;
  right: 46px;
  bottom: 30px;
  left: 46px;
  z-index: 2;
}

.blog-card__body p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 500;
}

.blog-card__body h5 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.36;
  letter-spacing: -.035em;
}

.blog-card__body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.30;
  letter-spacing: -.035em;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 6px;
  font-size: 19px;
  font-weight: 900;
}


/* ==========================================================
   Reviews - fondo con imagen + una sola capa blanca
   ========================================================== */

.home-reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) 0;
  background: var(--green-950) url("../img/30-machu-picchu-ausangate-adventure.jpg") center / cover no-repeat;
}

.home-reviews__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.68)),
    linear-gradient(0deg, rgba(8,47,37,.38), rgba(8,47,37,.30));
}

.home-reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /*background-image:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 36%, rgba(255,255,255,.38) 0 1px, transparent 2px);*/
  background-size: 28px 28px, 34px 34px;
  opacity: .55;
  pointer-events: none;
}

.home-reviews__inner {
  position: relative;
  padding: clamp(34px, 4.5vw, 62px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
}

.reviews-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.reviews-head .section-kicker {
  margin: 0 0 14px;
  color: #04a1f0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reviews-head h2,
.reviews-head h4 {
  margin: 0;
  color: #121c18;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.reviews-head p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #66706b;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.75;
}

.reviews-slider {
  position: relative;
  width: 100%;
  padding: 0 34px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 2px 30px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 245px;
  scroll-snap-align: start;
}

.review-bubble {
  position: relative;
  min-height: 250px;
  padding: 26px 28px 24px;
  border: 1px solid #FFF;
  border-radius: 14px;
  background: #ffffff;
  /*box-shadow: 0 14px 36px rgba(0, 0, 0, .07);*/
}

.review-bubble::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-top: 20px solid #ffffff;
  border-right: 24px solid transparent;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .04));
}

.review-stars {
  color: #05b52c;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-bubble h3 {
  margin: 13px 0 8px;
  color: #121c18;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.22;
}

.review-bubble p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #303935;
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.review-bubble a {
  display: inline-block;
  margin-top: 10px;
  color: #04a1f0;
  font-size: 13px;
  font-weight: 800;
}

.review-bubble a:hover {
  color: #007ebf;
}

.review-author {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  margin: 30px 0 0;
  padding-left: 2px;
}

.review-author img{
  object-fit: cover;
  border-radius: 100%;
}

.review-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #04a1f0, #176346);
  font-size: 14px;
  font-weight: 900;
}

.review-avatar--muted {
  color: #8e8e8e;
  background: #f0f0f0;
}

.ta-badge {
  position: absolute;
  left: 34px;
  bottom: 3px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: #14a538;
  font-size: 12px;
  line-height: 1;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  color: #121c18;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.review-author small {
  margin-top: 2px;
  color: #88908c;
  font-size: 14px;
  line-height: 1.3;
}

.reviews-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  /*place-items: center;*/
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  /*background: #121c18;*/
  background: rgba(4, 161, 240, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
  font-size: 42px;
  line-height: .7;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
  font-family: arial;
  padding-top: 7px !important;
}

.reviews-arrow:hover {
  color: #ffffff;
  background: #04a1f0;
  transform: translateY(-1px);
}

.reviews-arrow--left {
  left: 0;
}

.reviews-arrow--right {
  right: 0;
}

@media (max-width: 1180px) {
  .review-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 900px) {
  .home-reviews {
    padding-block: 46px;
  }

  .home-reviews__inner {
    border-radius: 22px;
    padding: 28px 22px;
  }

  .reviews-slider {
    padding: 0;
  }

  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .reviews-arrow {
    display: none;
  }
}

@media (max-width: 575px) {
  .home-reviews__inner {
    border-radius: 18px;
    padding: 26px 18px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-bubble {
    min-height: 230px;
    padding: 24px 22px;
  }

  .review-bubble h3 {
    font-size: 20px;
  }

  .review-bubble p {
    font-size: 15px;
  }
}





/* ==========================================================
   Reviews: Tripadvisor + Google dentro de la misma sección
   ========================================================== */

.home-reviews--dual .reviews-head {
  margin-bottom: 36px;
}

.reviews-platform-block {
  position: relative;
}

.reviews-platform-block + .reviews-platform-block {
  margin-top: 10px;
  padding-top: 10px;
  /*border-top: 1px solid rgba(255, 255, 255, .18);*/
}

.reviews-platform-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  text-align: center;
}

.reviews-platform-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.reviews-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reviews-platform-badge--tripadvisor {
  color: #ffffff;
  background: #00aa6c;
}

.reviews-platform-badge--google {
  color: #202124;
  background: #ffffff;
}

.reviews-slider--google .review-bubble {
  /*border-top: 4px solid #fbbc04;*/
}

.reviews-slider--google .review-stars,
.review-stars--google {
  color: #fbbc04 !important;
  letter-spacing: 2px;
}

.review-card--google .review-bubble a {
  color: #1a73e8;
}

.google-badge {

    position: absolute;
  left: 34px;
  bottom: 3px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: #4285f4;
  font-size: 12px;
  line-height: 1;




}

@media (max-width: 700px) {
  .reviews-platform-head {
    flex-direction: column;
    gap: 8px;
  }

  .reviews-platform-block + .reviews-platform-block {
    margin-top: 10px;
    padding-top: 10px;
  }
}