/* ════════════════════════════════════════════
   TROVI TRAVEL TOURS — Folha de Estilos
   ════════════════════════════════════════════
   CORES (altere aqui para mudar o tema):
   --terra:  #4a6741  verde principal
   --terra2: #3a5232  verde escuro
   --gold:   #8ab87a  destaque
   --night:  #1a2419  preto esverdeado
   --sand:   #eef3ec  fundo claro
   --cream:  #f4f8f3  fundo muito claro
════════════════════════════════════════════ */




*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #eef3ec;
  --cream: #f4f8f3;
  --terra: #4a6741;
  --terra2: #3a5232;
  --night: #1a2419;
  --dusk: #2c3d29;
  --gold: #8ab87a;
  --mist: #6b7f68;
  --white: #ffffff;
  --trans: all .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--night);
  overflow-x: hidden;
}

/* PAGE SYSTEM */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* TOP BAR */
.topbar {
  background: var(--night);
  color: var(--sand);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .55rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar-right a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: var(--trans);
  text-decoration: none;
  color: var(--gold);
}

.topbar-right a:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 103, 65, .15);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: .2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dusk);
  padding: .4rem .85rem;
  border-radius: 30px;
  transition: var(--trans);
  letter-spacing: .02em;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--terra);
  color: var(--white);
}

.nav-cta {
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: .5rem 1.3rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: .04em;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--terra2);
  transform: translateY(-1px);
}

/* MEGA MENU */
.nav-item-dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  box-shadow: 0 20px 60px rgba(26, 36, 25, .12);
  z-index: 300;
  min-width: 580px;
  display: none;
}

.mega-menu.open {
  display: flex;
  gap: 2.5rem;
}

.mega-col {
  flex: 1;
  padding: 0;
  border-right: none;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terra);
  padding: .5rem 0 1.2rem;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.mega-col-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 2.5px;
  background: var(--terra);
  border-radius: 1px;
  flex-shrink: 0;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .8rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dusk);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: .4rem;
  line-height: 1.2;
  min-height: 2.2rem;
}

.mega-link::before {
  content: attr(data-emoji);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  font-size: 1.2rem;
}

.mega-link:hover {
  background: rgba(74, 103, 65, .12);
  color: var(--terra);
  padding-left: 1.2rem;
}

.mega-link .flag {
  font-size: 1rem;
}

.mega-link.sub {
  font-size: .82rem;
  color: var(--mist);
  padding-left: 1.4rem;
}

.mega-link.sub:hover {
  background: rgba(74, 103, 65, .06);
  color: var(--terra);
  padding-left: 1.7rem;
}

.mega-link.sub::before {
  content: '↳';
  font-size: .75rem;
  color: var(--terra);
  margin-right: .1rem;
}

/* STAIRCASE DROPDOWN — Tours & Experiências */
.mega-stair {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  z-index: 300;
  min-width: 720px;
  box-shadow: 0 20px 60px rgba(26, 36, 25, .12);
  gap: 0;
}

.mega-stair.open {
  display: flex;
  gap: 0;
}

.mega-stair-col {
  flex: 1;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(74, 103, 65, .1);
}

.mega-stair-col:first-child {
  padding-left: 0;
}

.mega-stair-col:last-child {
  border-right: none;
  padding-right: 0;
}

.mega-stair-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terra);
  padding-bottom: .9rem;
  margin-bottom: .6rem;
  border-bottom: 1px solid rgba(74, 103, 65, .1);
  cursor: default;
  white-space: nowrap;
}

.mega-stair-label::before {
  content: '';
  display: block;
  width: 14px;
  height: 2.5px;
  background: var(--terra);
  border-radius: 1px;
  flex-shrink: 0;
}

.mega-stair-item {
  display: block;
  padding: .5rem .9rem;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dusk);
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
  margin-bottom: .25rem;
  margin-left: 1.2rem;
}

.mega-stair-item:last-child {
  margin-bottom: 0;
}

.mega-stair-item:hover {
  background: var(--terra);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 36, 25, .72) 0%, rgba(44, 61, 41, .45) 50%, rgba(74, 103, 65, .25) 100%), url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1600&q=80') center/cover no-repeat;
  animation: slowzoom 14s ease-in-out infinite alternate;
}

@keyframes slowzoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 3rem 6vw 2.5rem;
  animation: fadein .9s ease both;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .5rem;
  background: rgba(138, 184, 122, .2);
  border: 1px solid rgba(138, 184, 122, .5);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* SEARCH */
.search-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  box-shadow: 0 20px 60px rgba(26, 36, 25, .25);
  max-width: 680px;
}

.search-field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.search-field label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
}

.search-field select,
.search-field input {
  border: 1.5px solid #dde8db;
  border-radius: 10px;
  padding: .6rem .9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--night);
  background: var(--cream);
  outline: none;
  transition: var(--trans);
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--terra);
  background: var(--white);
}

.search-btn {
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: .65rem 1.6rem;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  height: 42px;
  align-self: flex-end;
}

.search-btn:hover {
  background: var(--terra2);
  transform: translateY(-2px);
}

/* SECTIONS */
section {
  padding: 5rem 6vw;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .8rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terra);
}

h2.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dusk);
  margin-bottom: .6rem;
}

h2.title em {
  font-style: italic;
  color: var(--terra);
}

.subtitle {
  font-size: .98rem;
  color: var(--mist);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* FEATURES */
.features {
  background: var(--sand);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(74, 103, 65, .1);
  transition: var(--trans);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(74, 103, 65, .12);
  border-color: var(--terra);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dusk);
  margin-bottom: .5rem;
}

.feat-card p {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.6;
}

/* TOURS */
.tours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
}

/* Tours scroller */
.tours-scroller-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.tours-scroller {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: .4rem .2rem 1.2rem;
}

.tours-scroller::-webkit-scrollbar {
  display: none;
}

.tours-scroller {
  cursor: grab;
}

.tours-scroller:active {
  cursor: grabbing;
}

.tours-scroller .tour-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.tours-scroll-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: var(--white);
  color: var(--forest);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(26, 36, 25, .12);
  transition: var(--trans);
  z-index: 2;
}

.tours-scroll-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.tour-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(26, 36, 25, .08);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 36, 25, .16);
}

.tour-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.07);
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: 20px;
}

.tour-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-location {
  font-size: .75rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.tour-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dusk);
  margin-bottom: .5rem;
}

.tour-body p {
  flex: 1;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--sand);
}

.tour-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--terra);
}

.tour-price span {
  font-size: .75rem;
  color: var(--mist);
  font-weight: 400;
}

.btn-sm {
  background: var(--sand);
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  display: inline-block;
}

.btn-sm:hover {
  background: var(--terra);
  color: var(--white);
}

/* DESTINATIONS */
.destinations {
  background: var(--night);
  padding: 5rem 6vw;
}

.destinations .section-tag {
  color: var(--gold);
}

.destinations .section-tag::before {
  background: var(--gold);
}

.destinations h2.title {
  color: var(--white);
}

.destinations .subtitle {
  color: rgba(255, 255, 255, .55);
}

.dest-strip {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--terra) transparent;
}

.dest-card {
  flex: 0 0 200px;
  height: 280px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
}

.dest-card:hover {
  transform: scale(1.03);
}

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

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 25, .8), transparent 50%);
}

.dest-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.dest-label small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
}

/* ABOUT */
.about {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(26, 36, 25, .15);
}

.about-img .stat-pill {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terra);
  color: var(--white);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 103, 65, .4);
}

.stat-pill strong {
  display: block;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
}

.stat-pill span {
  font-size: .75rem;
  opacity: .85;
}

.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.about-text li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: var(--dusk);
}


/* CONTACT */
.contact {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--dusk);
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.1rem;
}

.contact-detail .icon {
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  background: var(--terra);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-detail p {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.6;
}

.contact-detail strong {
  color: var(--dusk);
  display: block;
  margin-bottom: .1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--night);
  background: var(--white);
  outline: none;
  transition: var(--trans);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.submit-btn {
  background: var(--terra);
  color: var(--white);
  border: none;
  width: 100%;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: .04em;
}

.submit-btn:hover {
  background: var(--terra2);
  transform: translateY(-2px);
}

#form-msg {
  text-align: center;
  font-size: .88rem;
  padding: .6rem;
  border-radius: 8px;
  display: none;
}

#form-msg.ok {
  background: #e6f4ea;
  color: #2d6a4f;
  display: block;
}

/* DESTINATION PAGE HERO */
.dest-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.dest-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 25, .85) 0%, rgba(26, 36, 25, .3) 60%, transparent 100%);
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 6vw;
  width: 100%;
}

.dest-hero-content .breadcrumb {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  cursor: pointer;
}

.dest-hero-content .breadcrumb span {
  color: var(--gold);
}

.dest-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.dest-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

/* DESTINATION PAGE CONTENT */
.dest-intro {
  background: var(--cream);
  padding: 4rem 6vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dest-intro p {
  font-size: .95rem;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ROTEIRO CARD */
.roteiro-section {
  background: var(--sand);
  padding: 4rem 6vw;
}

.roteiro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.roteiro-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 36, 25, .18);
}

.roteiro-img img {
  width: 100%;
  display: block;
}

.roteiro-detail h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--dusk);
  margin-bottom: .4rem;
}

.roteiro-detail .price-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--terra);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: .45rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.4rem;
}

.roteiro-detail .price-badge small {
  font-size: .75rem;
  font-weight: 400;
  opacity: .85;
}

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.2rem;
  position: relative;
}

.timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 37px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: rgba(74, 103, 65, .2);
}

.tl-time {
  flex-shrink: 0;
  width: 74px;
  height: 36px;
  background: rgba(74, 103, 65, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: .04em;
}

.tl-body p {
  font-size: .87rem;
  color: var(--mist);
  line-height: 1.6;
}

.tl-body strong {
  color: var(--dusk);
  font-size: .9rem;
  display: block;
  margin-bottom: .15rem;
}

.incl-note {
  background: rgba(74, 103, 65, .08);
  border-left: 3px solid var(--terra);
  border-radius: 0 8px 8px 0;
  padding: .8rem 1rem;
  font-size: .82rem;
  color: var(--dusk);
  line-height: 1.6;
  margin-top: 1.2rem;
}

/* FOOTER */
footer {
  background: var(--night);
  color: rgba(255, 255, 255, .5);
  padding: 4rem 6vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .8rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 260px;
}

footer h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

footer ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: var(--trans);
  cursor: pointer;
}

footer ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-social {
  display: flex;
  gap: .7rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  text-decoration: none;
  transition: var(--trans);
}

.footer-social a:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .about-inner,
  .contact-grid,
  .footer-grid,
  .dest-intro,
  .roteiro-grid {
    grid-template-columns: 1fr;
  }

  .about-img .stat-pill {
    right: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-left: 6vw;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .topbar {
    flex-direction: column;
    gap: .4rem;
    font-size: .72rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-card {
    flex-direction: column;
  }
}

/* ── TOUR DETAIL PAGE (GYG style) ── */
.tour-detail-page {
  background: var(--cream);
}

.tdp-breadcrumb {
  padding: .8rem 6vw;
  font-size: .8rem;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid rgba(74, 103, 65, .1);
  background: var(--white);
}

.tdp-breadcrumb span {
  color: var(--terra);
  cursor: pointer;
}

.tdp-breadcrumb span:hover {
  text-decoration: underline;
}

.tdp-header {
  padding: 1.5rem 6vw .8rem;
}

.tdp-cert {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--mist);
  margin-bottom: .6rem;
}

.tdp-cert::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
}

.tdp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--night);
  line-height: 1.2;
  margin-bottom: .7rem;
}

.tdp-rating-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.tdp-badge {
  background: var(--night);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 4px;
  letter-spacing: .04em;
}

.tdp-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 1px;
}

.tdp-rating-num {
  font-size: .9rem;
  font-weight: 600;
  color: var(--night);
}

.tdp-reviews {
  font-size: .85rem;
  color: var(--mist);
  text-decoration: underline;
  cursor: pointer;
}

.tdp-provider {
  font-size: .82rem;
  color: var(--mist);
}

/* GALLERY */
.tdp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: .5rem;
  padding: 0 6vw 1.5rem;
  position: relative;
}

.tdp-gallery-main {
  grid-row: 1 / 3;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.tdp-gallery-main video,
.tdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tdp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.tdp-play-btn:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}

.tdp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .5rem;
}

.tdp-gallery-img {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.tdp-gallery-img:nth-child(1) {
  border-radius: 0 12px 0 0;
}

.tdp-gallery-img:nth-child(2) {
  border-radius: 0;
}

.tdp-gallery-img:nth-child(3) {
  border-radius: 0;
}

.tdp-gallery-img:nth-child(4) {
  border-radius: 0 0 12px 0;
  position: relative;
}

.tdp-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.tdp-gallery-img:hover img {
  transform: scale(1.05);
}

.tdp-gallery-see-all {
  position: absolute;
  bottom: 1.8rem;
  right: 6.8vw;
  background: var(--white);
  border: 1.5px solid var(--night);
  color: var(--night);
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--trans);
}

.tdp-gallery-see-all:hover {
  background: var(--night);
  color: var(--white);
}

/* BODY LAYOUT */
.tdp-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  padding: 0 6vw 4rem;
  align-items: start;
}

.tdp-sidebar {
  position: sticky;
  top: 90px;
}

.tdp-content {}

.tdp-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tdp-action-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--dusk);
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem .5rem;
  border-radius: 6px;
  transition: var(--trans);
  text-decoration: underline;
}

.tdp-action-btn:hover {
  color: var(--terra);
}

.tdp-description {
  font-size: .95rem;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 103, 65, .12);
  padding-bottom: 2rem;
}

.tdp-description strong {
  color: var(--dusk);
}

.tdp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dusk);
  margin-bottom: 1rem;
}

.tdp-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 103, 65, .12);
}

.tdp-highlights li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--dusk);
  line-height: 1.5;
}

.tdp-highlights li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(74, 103, 65, .12);
  color: var(--terra);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.tdp-timeline {
  list-style: none;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 103, 65, .12);
}

.tdp-tl-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.3rem;
  position: relative;
}

.tdp-tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 37px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: rgba(74, 103, 65, .18);
}

.tdp-tl-time {
  flex-shrink: 0;
  width: 96px;
  height: 36px;
  background: rgba(74, 103, 65, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: .68rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: .04em;
}

.tdp-tl-body strong {
  color: var(--dusk);
  font-size: .9rem;
  display: block;
  margin-bottom: .15rem;
}

.tdp-tl-body p {
  font-size: .85rem;
  color: var(--mist);
  line-height: 1.6;
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 103, 65, .12);
}

.incl-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
}

.incl-item.yes {
  color: var(--dusk);
}

.incl-item.no {
  color: var(--mist);
  text-decoration-color: var(--mist);
}

.incl-item .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
}

.incl-item.yes .dot {
  background: #e6f4ea;
  color: #2d6a4f;
}

.incl-item.no .dot {
  background: #fce8e8;
  color: #c0392b;
}

/* REVIEWS */
.tdp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(74, 103, 65, .1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.review-name {
  font-weight: 500;
  font-size: .88rem;
  color: var(--dusk);
}

.review-date {
  font-size: .75rem;
  color: var(--mist);
}

.review-stars {
  color: #f5a623;
  font-size: .8rem;
  margin-bottom: .4rem;
}

.review-text {
  font-size: .83rem;
  color: var(--mist);
  line-height: 1.6;
}

/* BOOKING CARD */
.booking-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(74, 103, 65, .15);
  box-shadow: 0 8px 40px rgba(26, 36, 25, .1);
  padding: 1.5rem;
}

.pay-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
}

.booking-urgent {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #ff4757;
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.booking-price-old {
  font-size: .85rem;
  color: var(--mist);
  text-decoration: line-through;
}

.booking-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .2rem;
}

.booking-price span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--mist);
}

.booking-select {
  width: 100%;
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--night);
  background: var(--white);
  outline: none;
  margin-bottom: .7rem;
  transition: var(--trans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .6rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7b6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.booking-select:focus {
  border-color: var(--terra);
}

.booking-select-wrap {
  position: relative;
  margin-bottom: .7rem;
}

.booking-select-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

.booking-select-wrap select {
  width: 100%;
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .75rem 1rem .75rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--night);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7b6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
  appearance: none;
  outline: none;
  transition: var(--trans);
  cursor: pointer;
}

.booking-select-wrap select:focus {
  border-color: var(--terra);
}

.booking-btn {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

.booking-btn:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, .35);
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.booking-perk {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.5;
}

.booking-perk::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: #e6f4ea;
  color: #2d6a4f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img,
.lightbox-inner video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--trans);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, .3);
}

.lightbox-prev {
  left: -3.5rem;
}

.lightbox-next {
  right: -3.5rem;
}



/* BOOKING COUNTER */
.booking-counter-group {
  margin-bottom: .7rem;
}

.booking-counter-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .4rem;
  display: block;
}

.booking-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .55rem 1rem;
  background: var(--white);
  transition: var(--trans);
}

.booking-counter-row:focus-within {
  border-color: var(--terra);
}

.booking-counter-info {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.booking-counter-icon {
  font-size: 1rem;
}

.booking-counter-name {
  font-size: .9rem;
  color: var(--night);
  font-weight: 500;
}

.booking-counter-sub {
  font-size: .72rem;
  color: var(--mist);
}

.booking-counter-ctrl {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.booking-counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #d5e3d3;
  background: var(--white);
  color: var(--dusk);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--trans);
  flex-shrink: 0;
}

.booking-counter-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(74, 103, 65, .06);
}

.booking-counter-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.booking-counter-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--night);
  min-width: 18px;
  text-align: center;
}

.booking-price-total {
  background: rgba(74, 103, 65, .07);
  border-radius: 10px;
  padding: .7rem 1rem;
  margin-bottom: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: var(--dusk);
}

.booking-price-total strong {
  font-size: 1.1rem;
  color: var(--terra);
}

/* DATE PICKER */
.booking-date-wrap {
  position: relative;
  margin-bottom: .7rem;
}

.booking-date-wrap .booking-select-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.booking-date-input {
  width: 100%;
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .75rem 1rem .75rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--night);
  background: var(--white);
  outline: none;
  transition: var(--trans);
  cursor: pointer;
  appearance: none;
}

.booking-date-input:focus {
  border-color: var(--terra);
}

.booking-date-input::-webkit-calendar-picker-indicator {
  opacity: .5;
  cursor: pointer;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: none;
  border: 1.5px solid rgba(74, 103, 65, .3);
  border-radius: 30px;
  padding: .35rem .75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--dusk);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(74, 103, 65, .06);
}

.lang-btn .lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-btn .lang-arrow {
  font-size: .6rem;
  color: var(--mist);
  transition: transform .25s;
}

.lang-btn.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .15);
  border-radius: 12px;
  padding: .4rem;
  box-shadow: 0 12px 40px rgba(26, 36, 25, .12);
  z-index: 500;
  min-width: 160px;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .8rem;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--dusk);
  cursor: pointer;
  transition: var(--trans);
}

.lang-option:hover {
  background: rgba(74, 103, 65, .08);
  color: var(--terra);
}

.lang-option.active {
  background: rgba(74, 103, 65, .1);
  color: var(--terra);
  font-weight: 600;
}

.lang-option .lang-flag {
  font-size: 1.1rem;
}

.lang-option .lang-name {
  flex: 1;
}

.lang-option .lang-check {
  color: var(--terra);
  font-size: .75rem;
}

/* ══════════════════════════════════════════
     MOBILE NAVBAR & HAMBURGER
  ══════════════════════════════════════════ */

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  background: var(--sand);
  border: 1.5px solid rgba(74, 103, 65, .15);
  border-radius: 10px;
  padding: 0;
  align-items: center;
  transition: var(--trans);
  z-index: 200;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(74, 103, 65, .1);
  border-color: var(--terra);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dusk);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}

.hamburger.open {
  background: var(--terra);
  border-color: var(--terra);
}

.hamburger.open span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 25, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Drawer ── */
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -20px 0 60px rgba(26, 36, 25, .18);
}

.mobile-nav.open .mobile-nav-drawer {
  transform: translateX(0);
}

/* ── Header ── */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: var(--night);
  flex-shrink: 0;
}

.mobile-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
}

.mobile-nav-logo em {
  color: #8ab87a;
  font-style: italic;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--trans);
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

/* ── Contact strip ── */
.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .9rem 1.4rem;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

.mobile-nav-contact a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .02em;
}

.mobile-nav-contact a:hover {
  color: #8ab87a;
}

/* ── Links ── */
.mobile-nav-links {
  list-style: none;
  padding: .6rem 0;
  flex: 1;
}

.mobile-nav-links>li {
  border-bottom: 1px solid rgba(74, 103, 65, .07);
}

.mobile-nav-links>li:last-child {
  border-bottom: none;
}

.mobile-nav-links li a,
.mobile-nav-links li>button {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.4rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dusk);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background .2s, padding-left .2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}

.mobile-nav-links li a:active,
.mobile-nav-links li>button:active {
  background: var(--sand);
}

.mobile-nav-links .nav-icon {
  width: 32px;
  height: 32px;
  background: var(--sand);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: var(--trans);
}

.mobile-nav-links li a:hover .nav-icon,
.mobile-nav-links li>button:hover .nav-icon {
  background: rgba(74, 103, 65, .15);
}

.mobile-nav-links .nav-chevron {
  margin-left: auto;
  font-size: .7rem;
  color: var(--mist);
  transition: transform .25s;
}

.mobile-nav-links .sub-open .nav-chevron {
  transform: rotate(180deg);
}

/* ── Submenu ── */
.mobile-nav-sub {
  list-style: none;
  background: #f8faf7;
  border-top: 1px solid rgba(74, 103, 65, .08);
  display: none;
  overflow: hidden;
}

.mobile-nav-sub.open {
  display: block;
}

.mobile-sub-label {
  padding: .55rem 1.4rem .3rem 1.8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.mobile-sub-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--terra);
  border-radius: 1px;
}

.mobile-nav-sub li a {
  padding: .7rem 1.4rem .7rem 2rem !important;
  font-size: .87rem !important;
  font-weight: 400 !important;
  color: var(--mist) !important;
  border-bottom: 1px solid rgba(74, 103, 65, .05) !important;
  letter-spacing: 0 !important;
}

.mobile-nav-sub li:last-child a {
  border-bottom: none !important;
}

.mobile-nav-sub li a:hover {
  color: var(--terra) !important;
  background: rgba(74, 103, 65, .06) !important;
}

/* ── Footer ── */
.mobile-nav-footer {
  padding: 1.1rem 1.4rem 1.4rem;
  background: var(--sand);
  border-top: 1px solid rgba(74, 103, 65, .12);
  flex-shrink: 0;
}

.mobile-nav-cta {
  display: block;
  width: 100%;
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: .95rem;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--trans);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: .9rem;
  letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(74, 103, 65, .3);
}

.mobile-nav-cta:hover {
  background: var(--terra2);
  transform: translateY(-1px);
}

.mobile-lang-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .5rem;
  text-align: center;
}

.mobile-lang-row {
  display: flex;
  gap: .5rem;
}

.mobile-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem .4rem;
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--dusk);
  transition: var(--trans);
}

.mobile-lang-btn.active {
  border-color: var(--terra);
  background: rgba(74, 103, 65, .08);
  color: var(--terra);
  font-weight: 600;
}

.mobile-lang-btn:hover:not(.active) {
  border-color: var(--terra);
  color: var(--terra);
}

/* ══════════════════════════════════════════
     BREAKPOINTS
  
  ══════════════════════════════════════════ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links a {
    padding: .4rem .65rem;
    font-size: .82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-inner {
    gap: 3rem;
  }

  .tdp-body {
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }

  .mega-menu {
    min-width: 460px;
  }

  section {
    padding: 4rem 4vw;
  }

  .destinations {
    padding: 4rem 4vw;
  }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {

  /* Topbar */
  .topbar {
    flex-direction: column;
    gap: .3rem;
    padding: .5rem 1rem;
    font-size: .72rem;
    text-align: center;
  }

  .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 1rem;
    height: 62px;
  }

  .nav-logo-text {
    font-size: 1.6rem;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 2rem 1.2rem 3rem;
  }

  [data-i18n="hero_tagline"] {
    font-size: .78rem !important;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero p {
    font-size: .92rem;
  }

  .search-card {
    flex-direction: column;
    gap: .7rem;
    padding: 1.2rem;
    border-radius: 14px;
  }

  .search-field {
    flex: none;
    width: 100%;
  }

  .search-btn {
    width: 100%;
    height: 44px;
  }

  /* Sections */
  section {
    padding: 3rem 1.2rem;
  }

  .destinations {
    padding: 3rem 1.2rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feat-card {
    padding: 1.4rem 1.2rem;
  }

  /* Tours grid */
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .tours-scroller .tour-card {
    flex: 0 0 260px;
  }

  .tours-scroll-btn {
    display: none;
  }

  .tours-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img .stat-pill {
    right: 1rem;
    bottom: -1rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  footer {
    padding: 3rem 1.2rem 1.5rem;
  }

  /* Tour detail pages */
  .tdp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
    padding: 0 1.2rem 1rem;
  }

  .tdp-gallery-grid {
    display: none;
  }

  .tdp-gallery-main {
    border-radius: 12px;
  }

  .tdp-header {
    padding: 1rem 1.2rem .6rem;
  }

  .tdp-title {
    font-size: 1.4rem;
  }

  .tdp-body {
    grid-template-columns: 1fr;
    padding: 0 1.2rem 3rem;
    gap: 1.5rem;
  }

  .booking-card {
    position: static;
  }

  .tdp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .incl-grid {
    grid-template-columns: 1fr;
  }

  .tdp-breadcrumb {
    padding: .7rem 1.2rem;
    font-size: .75rem;
    flex-wrap: wrap;
  }

  .tdp-rating-row {
    flex-wrap: wrap;
    gap: .5rem;
  }

  .tdp-section-title {
    font-size: 1.2rem;
  }

  .dest-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.2rem;
  }

  h2.title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  /* Destinations strip */
  .dest-card {
    flex: 0 0 160px;
    height: 230px;
  }

  /* Mega menu hidden on mobile */
  .mega-menu {
    display: none !important;
  }

  /* Lightbox nav */
  .lightbox-prev {
    left: -2rem;
  }

  .lightbox-next {
    right: -2rem;
  }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .topbar-right {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-badge {
    font-size: .68rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tours-grid {
    gap: 1rem;
  }

  .tour-img {
    height: 180px;
  }

  .tdp-gallery {
    grid-template-rows: 200px;
  }

  .booking-counter-row {
    gap: .5rem;
  }

  .booking-counter-name {
    font-size: .82rem;
  }

  .booking-counter-sub {
    font-size: .68rem;
  }

  .tdp-reviews-grid {
    gap: .8rem;
  }

  .dest-card {
    flex: 0 0 140px;
    height: 200px;
  }

  nav {
    height: 56px;
  }

  .nav-logo-text {
    font-size: 1.4rem;
  }

  .lightbox-prev {
    left: -1.5rem;
  }

  .lightbox-next {
    right: -1.5rem;
  }

  .lightbox-inner {
    max-width: 95vw;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .destinations {
    padding: 2.5rem 1rem;
  }
}


/* ── BLOG PAGE ── */
.blog-hero {
  background: var(--night);
  padding: 4rem 6vw 3rem;
  text-align: center;
}

.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: .6rem;
}

.blog-hero h1 em {
  font-style: italic;
  color: #8ab87a;
}

.blog-hero p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto;
}

.blog-section {
  padding: 4rem 6vw;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem;
  border: 1px solid rgba(74, 103, 65, .1);
  box-shadow: 0 4px 20px rgba(26, 36, 25, .06);
  transition: var(--trans);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(26, 36, 25, .12);
}

.test-header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  font-weight: 600;
  flex-shrink: 0;
}

.test-info {
  flex: 1;
}

.test-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--dusk);
}

.test-meta {
  font-size: .76rem;
  color: var(--mist);
  margin-top: .1rem;
}

.test-stars {
  color: #f5a623;
  font-size: .85rem;
  letter-spacing: 1px;
  margin-bottom: .7rem;
}

.test-dest {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(74, 103, 65, .08);
  color: var(--terra);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .6rem;
  letter-spacing: .04em;
}

.test-text {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.7;
  font-style: italic;
}

.test-text::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--terra);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: .2rem;
}

/* Submit form */
.submit-testimonial {
  background: var(--sand);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.submit-testimonial h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dusk);
  margin-bottom: .4rem;
}

.submit-testimonial p {
  font-size: .88rem;
  color: var(--mist);
  margin-bottom: 1.5rem;
}

.stars-select {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
}

.star-btn {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  opacity: .3;
  transition: opacity .2s;
  line-height: 1;
}

.star-btn.active {
  opacity: 1;
}

.star-btn:hover {
  opacity: .7;
}

.star-btn:hover:not(.active) {
  opacity: .7;
}

#test-success {
  display: none;
  background: #e6f4ea;
  color: #2d6a4f;
  padding: .8rem 1rem;
  border-radius: 8px;
  font-size: .88rem;
  margin-top: .8rem;
  text-align: center;
}

/* Search filter */
.search-results {
  margin-top: 1rem;
}

.search-no-results {
  text-align: center;
  padding: 3rem;
  color: var(--mist);
  font-size: .95rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 2.5rem 1.2rem;
  }

  .submit-testimonial {
    padding: 1.5rem;
  }

  .blog-hero {
    padding: 3rem 1.2rem 2rem;
  }
}

/* ── SEARCH CARD ── */
.search-card {
  background: rgba(255, 255, 255, .97);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 24px 64px rgba(26, 36, 25, .3);
  max-width: 700px;
  backdrop-filter: blur(10px);
}

.search-card-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terra);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.search-card-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--terra);
  border-radius: 1px;
}

.search-card-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  margin-bottom: 1rem;
}

.search-main-input {
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 2px solid #dde8db;
  border-radius: 12px;
  padding: .75rem 1rem;
  background: var(--cream);
  transition: var(--trans);
}

.search-main-input:focus-within {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 103, 65, .1);
}

.search-main-input svg {
  color: var(--mist);
  flex-shrink: 0;
}

.search-main-input input {
  border: none;
  background: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--night);
  width: 100%;
}

.search-main-input input::placeholder {
  color: var(--mist);
}

.search-submit-btn {
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: .75rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  letter-spacing: .02em;
}

.search-submit-btn:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, .35);
}

.search-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.search-filter-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.search-filter-group label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
}

.search-filter-group select,
.search-filter-group input[type="month"] {
  border: 1.5px solid #dde8db;
  border-radius: 10px;
  padding: .6rem .85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--night);
  background: var(--cream);
  outline: none;
  transition: var(--trans);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7f68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2rem;
}

.search-filter-group select:focus,
.search-filter-group input[type="month"]:focus {
  border-color: var(--terra);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, .1);
}

/* Results banner */
.search-results-banner {
  display: none;
  margin-top: .9rem;
  background: rgba(74, 103, 65, .12);
  border: 1px solid rgba(74, 103, 65, .25);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  font-size: .85rem;
  color: var(--dusk);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.search-results-banner a {
  color: var(--terra);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .search-card {
    padding: 1.3rem;
  }

  .search-card-row {
    grid-template-columns: 1fr;
  }

  .search-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .search-filters {
    grid-template-columns: 1fr;
  }
}

/* ── BLOG FILTER BUTTONS ── */
.blog-filter-btn {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  padding: .45rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: .03em;
}

.blog-filter-btn:hover {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

.blog-filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.testimonial-card[data-dest="setubal"] .test-avatar {
  background: #4a6741;
}

.test-verified {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: #2d6a4f;
  background: #e6f4ea;
  padding: .15rem .5rem;
  border-radius: 10px;
  margin-left: auto;
}



/* ── Navbar logo image ── */
.nav-logo-img img {
  transition: opacity .3s;
}

.nav-logo-img:hover img {
  opacity: .85;
}

/* ── Navbar search button ── */
.nav-search-btn {
  width: 38px;
  height: 38px;
  background: var(--sand);
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  color: var(--dusk);
  flex-shrink: 0;
}

.nav-search-btn:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

/* ── Search overlay ── */
#site-search-results .sr-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
  border-bottom: 1px solid rgba(74, 103, 65, .07);
}

#site-search-results .sr-item:hover {
  background: var(--sand);
}

#site-search-results .sr-item:last-child {
  border-bottom: none;
}

#site-search-results .sr-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

#site-search-results .sr-title {
  font-weight: 600;
  font-size: .92rem;
  color: var(--dusk);
}

#site-search-results .sr-desc {
  font-size: .78rem;
  color: var(--mist);
  margin-top: .1rem;
}

#site-search-results .sr-empty {
  text-align: center;
  padding: 2rem;
  color: var(--mist);
  font-size: .9rem;
}

#site-search-results .sr-section {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  padding: .5rem 1rem .3rem;
}

@media (max-width: 768px) {
  .nav-search-btn {
    display: none;
  }
}


/* ══════════════════════════════════════════
       FEATURES REDESIGN (matching reference)
    ══════════════════════════════════════════ */
.features {
  background: var(--cream);
  padding: 5rem 6vw 4rem;
}

.features-intro {
  max-width: 560px;
  margin-bottom: 3rem;
}

.features-intro .title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.features-intro .subtitle {
  color: var(--mist);
  font-size: .95rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  border: none;
  box-shadow: 0 2px 16px rgba(26, 36, 25, .06);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 36, 25, .12);
}

.feat-icon {
  font-size: 1.6rem;
  margin-bottom: .4rem;
  display: block;
}

.feat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dusk);
  line-height: 1.3;
}

.feat-card p {
  font-size: .85rem;
  color: var(--mist);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
       ABOUT REDESIGN (matching reference)
    ══════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 5rem 6vw;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}

.about-text {
  order: 1;
}

.about-img {
  order: 2;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: var(--dusk);
  line-height: 1.5;
}

.about-check {
  width: 26px;
  height: 26px;
  background: rgba(74, 103, 65, .1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  color: var(--terra);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: .1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  border-radius: 30px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em;
}

.btn-primary:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 103, 65, .3);
}


/* ══════════════════════════════════════════
       FEATURES — exact match to reference image
    ══════════════════════════════════════════ */
.features {
  background: #eef3ec;
  padding: 4rem 6vw 5rem;
}

.features-intro {
  margin-bottom: 2.5rem;
}

.features-intro .title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: .7rem;
}

.features-intro .subtitle {
  color: var(--mist);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 520px;
}

/* 4-column row */
.feat-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feat-card-new {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem 2.2rem;
  box-shadow: 0 1px 12px rgba(26, 36, 25, .06);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, .04);
}

.feat-card-new:hover {
  box-shadow: 0 8px 32px rgba(26, 36, 25, .12);
  transform: translateY(-3px);
}

.feat-icon-new {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.feat-card-new h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2419;
  margin-bottom: .65rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.feat-card-new p {
  font-size: .85rem;
  color: #6b7f68;
  line-height: 1.68;
  margin: 0;
}

/* ══════════════════════════════════════════
       DATE PICKER — styled calendar button
    ══════════════════════════════════════════ */
.date-picker-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--cream);
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .65rem .9rem;
  transition: border-color .25s;
}

.date-picker-wrap:focus-within {
  border-color: var(--terra);
  background: #fff;
}

.date-icon {
  color: var(--terra);
  flex-shrink: 0;
}

.date-input-styled {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--dusk);
  cursor: pointer;
  width: 100%;
}

.date-input-styled::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 20px;
  cursor: pointer;
}

/* wrap the booking-date-wrap to use new styles */
.booking-date-wrap {
  padding: 0;
  background: none;
  border: none;
  position: relative;
}

/* ══════════════════════════════════════════
       CUSTOM DATE PICKER (CDP)
    ══════════════════════════════════════════ */
.cdp-trigger {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #aaa;
  cursor: pointer;
  flex: 1;
  text-align: left;
  padding: 0;
}

.cdp-trigger.has-value {
  color: var(--dusk);
}

.cdp-popup {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(26, 36, 25, .18);
  padding: 1rem;
  width: 100%;
  max-width: 320px;
}

.cdp-popup.open {
  display: block;
}

.cdp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .7rem;
}

/* ── PACKAGE LISTING PAGE ── */
.pkg-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}

.pkg-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.pkg-filter-tab {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #d4ddd2;
  background: #fff;
  color: #4a5a46;
  transition: all .2s;
  user-select: none;
  font-family: inherit;
}

.pkg-filter-tab:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.pkg-filter-tab.active {
  background: #2c3d29;
  color: #fff;
  border-color: #2c3d29;
}

.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.pkg-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(26, 36, 25, .08);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(26, 36, 25, .15);
}

.pkg-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.06);
}

.pkg-card-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2c3d29;
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .28rem .72rem;
  border-radius: 20px;
}

.pkg-card-badge-continent {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .88);
  color: #4a5a46;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .28rem .72rem;
  border-radius: 20px;
  border: 1px solid rgba(74, 90, 70, .2);
  backdrop-filter: blur(4px);
}

.pkg-card-duration {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: .3rem;
  background: rgba(26, 36, 25, .62);
  color: #fff;
  font-size: .76rem;
  font-weight: 500;
  padding: .26rem .68rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.pkg-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-card-country {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8a9a87;
  margin-bottom: .38rem;
}

.pkg-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #2c3d29;
  margin-bottom: .45rem;
  line-height: 1.3;
}

.pkg-card-desc {
  font-size: .83rem;
  color: #6b7f68;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pkg-card-divider {
  height: 1px;
  background: #e8ede7;
  margin-bottom: 1rem;
}

.pkg-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .32rem .5rem;
  margin-bottom: 1.1rem;
}

.pkg-card-feature {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: #5a6e57;
}

.pkg-card-prices {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.pkg-card-price-col {
  flex: 1;
}

.pkg-card-price-label {
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #8a9a87;
  margin-bottom: .12rem;
}

.pkg-card-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #2c3d29;
  line-height: 1.1;
}

.pkg-card-price-suffix {
  font-size: .75rem;
  font-weight: 400;
  color: #8a9a87;
}

.pkg-card-price-sub {
  font-size: .7rem;
  color: #8a9a87;
}

.pkg-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #2c3d29;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: .8rem 1.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  font-family: inherit;
  margin-top: auto;
}

.pkg-card-cta:hover {
  background: var(--terra);
}

@media (max-width: 720px) {
  .pkg-page-wrap {
    padding: 2rem 1rem 0;
  }

  .pkg-cards-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem 3rem;
  }
}

.cdp-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--terra);
  padding: .25rem .5rem;
  border-radius: 6px;
  transition: background .15s;
}

.cdp-nav:hover {
  background: var(--cream);
}

.cdp-month-label {
  font-weight: 700;
  font-size: .88rem;
  color: var(--night);
}

.cdp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: .3rem;
}

.cdp-wd {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: #ccc;
  padding: .2rem 0;
}

.cdp-wd.is-avail {
  color: var(--terra);
}

.cdp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cdp-day {
  text-align: center;
  border-radius: 7px;
  padding: .38rem 0;
  font-size: .82rem;
  font-weight: 500;
  color: #ddd;
  cursor: default;
}

.cdp-day.avail {
  color: var(--dusk);
  background: var(--cream);
  cursor: pointer;
  transition: background .15s, color .15s;
}

.cdp-day.avail:hover {
  background: var(--terra);
  color: #fff;
}

.cdp-day.selected {
  background: var(--terra);
  color: #fff;
  font-weight: 700;
}

.cdp-day.today.avail {
  outline: 2px solid var(--terra);
  outline-offset: -2px;
}

.cdp-legend {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: #888;
  margin-top: .6rem;
  border-top: 1px solid #f0f0f0;
  padding-top: .6rem;
}

.cdp-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--terra);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .feat-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feat-cards-row {
    grid-template-columns: 1fr;
  }

  .feat-card-new {
    padding: 1.5rem 1.3rem;
  }
}


/* ── Destinos Page ── */
.destinos-hero {
  background: linear-gradient(135deg, var(--night) 0%, var(--dusk) 100%);
  padding: 5rem 6vw 3rem;
  text-align: center;
}

.destinos-hero .section-tag {
  color: var(--gold);
  justify-content: center;
}

.destinos-hero .section-tag::before {
  background: var(--gold);
}

.destinos-hero .title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.destinos-hero p {
  color: rgba(255, 255, 255, .7);
  max-width: 560px;
  margin: .5rem auto 0;
}

.destinos-section {
  padding: 3rem 6vw;
  background: var(--cream);
}

.destinos-section-dark {
  background: var(--white);
}

.destinos-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dusk);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.flag-big {
  font-size: 1.4rem;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.destino-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 36, 25, .08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(74, 103, 65, .08);
}

.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 36, 25, .16);
}

.destino-card-soon {
  opacity: .75;
  cursor: default;
}

.destino-card-soon:hover {
  transform: none;
  box-shadow: 0 2px 16px rgba(26, 36, 25, .08);
}

.destino-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destino-card-flag {
  font-size: 2.5rem;
}

.destino-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.destino-card-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: .4rem;
}

.destino-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dusk);
  margin-bottom: .3rem;
}

.destino-card p {
  font-size: .82rem;
  color: var(--mist);
  margin-bottom: .8rem;
}

.destino-card-cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--terra);
  font-family: 'DM Sans', sans-serif;
}

.destino-soon-badge {
  background: var(--sand);
  color: var(--mist);
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .72rem;
}

@media (max-width: 900px) {
  .destinos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .destinos-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }

  .destinos-section {
    padding: 2rem 1.2rem;
  }
}


.bdf-wrap,
.booking-date-field {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1.5px solid #d5e3d3;
  border-radius: 10px;
  padding: .6rem .9rem;
  transition: border-color .25s;
  width: 100%;
}

.bdf-wrap:focus-within {
  border-color: var(--terra);
}

.bdf-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.bdf-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--dusk);
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.bdf-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .6;
  filter: invert(35%) sepia(30%) saturate(400%) hue-rotate(80deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26, 36, 25, .80) 0%, rgba(26, 36, 25, .50) 55%, rgba(26, 36, 25, .28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-indicators {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  background: linear-gradient(to top, rgba(26, 36, 25, .55), transparent);
}

.hero-slide-info {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.hero-slide-dest {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8ab87a;
  font-family: 'DM Sans', sans-serif;
}

.hero-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  padding-left: .8rem;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.hero-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  transition: all .4s ease;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

@media(max-width:768px) {
  .hero-slide-title {
    display: none;
  }

  .hero-indicators {
    padding: 1rem 1.2rem;
  }
}


.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }
}


/* ── Phone field with country picker ── */
.phone-field-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(74, 103, 65, .25);
  border-radius: 10px;
  background: #fff;
  overflow: visible;
  position: relative;
  padding: 0 .8rem 0 0;
  transition: border-color .2s;
}

.phone-field-wrap:focus-within {
  border-color: var(--terra);
}

.country-picker {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem .75rem;
  cursor: pointer;
  border-right: 1.5px solid rgba(74, 103, 65, .15);
  user-select: none;
  flex-shrink: 0;
  background: rgba(74, 103, 65, .04);
  border-radius: 8px 0 0 8px;
}

.country-picker:hover {
  background: rgba(74, 103, 65, .09);
}

#cp-flag {
  font-size: 1.2rem;
  line-height: 1;
}

#cp-code {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dusk);
  letter-spacing: .02em;
}

.cp-arrow {
  font-size: .6rem;
  color: var(--mist);
  margin-left: .1rem;
}

.phone-field-wrap input[type="tel"] {
  padding: .65rem .4rem;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26, 36, 25, .14);
  z-index: 500;
  overflow: hidden;
}

.cd-search-wrap {
  border-bottom: 1px solid rgba(74, 103, 65, .1);
}

#cd-list {
  max-height: 220px;
  overflow-y: auto;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--dusk);
  transition: background .15s;
}

.cd-item:hover {
  background: var(--sand);
}

.cd-item .cd-flag {
  font-size: 1.1rem;
}

.cd-item .cd-name {
  flex: 1;
}

.cd-item .cd-dial {
  font-size: .78rem;
  color: var(--mist);
  font-weight: 600;
}

.cd-item.selected {
  background: rgba(74, 103, 65, .08);
  font-weight: 600;
}

.form-group {
  position: relative;
}


/* ── Hero booking cards mobile ── */
@media (max-width: 700px) {
  .hero-content {
    padding: 1.6rem 4vw 1.4rem !important;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.8rem) !important;
    margin-bottom: .4rem !important;
  }

  .hero p[data-i18n="hero_sub"] {
    font-size: .9rem !important;
    margin-bottom: 1.2rem !important;
  }

  #hero-tour-cards,
  .hero-content>div[style*="display:flex;gap:1.2rem"] {
    flex-direction: column !important;
    gap: .8rem !important;
  }

  .hero-content>div[style*="display:flex;gap:1.2rem"]>div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ── WHATSAPP FLOATING BUTTON ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--night);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  white-space: nowrap;
  padding: .35rem .75rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--night);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}