/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--heading);
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ============ Variables ============ */
:root {
  --primary: #1e73be;
  --primary-dark: #15578f;
  --accent: #f5a623;
  --navy: #10233a;
  --navy-2: #16304d;
  --text: #2c333a;
  --heading: #16233a;
  --muted: #5b6672;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --border: #e3e8ee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 35, 58, .08);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(30,115,190,.35); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 1em 2.2em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 20px;
}
.site-header__logo img { height: 48px; width: auto; }
.site-nav__list { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav__list a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600; font-size: .85rem;
  color: var(--heading); white-space: nowrap;
}
.site-nav__list a:hover { color: var(--primary); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 36px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--heading); border-radius: 2px; }

@media (max-width: 1180px) and (min-width: 1025px) {
  .site-header__inner { gap: 14px; padding: 14px 14px; }
  .site-nav__list { gap: 10px; }
  .site-nav__list a { font-size: .78rem; }
  .site-header__actions { gap: 8px; }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed; inset: 66px 0 0 0; background: #fff;
    transform: translateX(100%); transition: transform .25s ease;
    padding: 24px 20px; overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; gap: 4px; }
  .site-nav__list a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .site-header__actions .btn { display: none; }
}

/* ============ Search bar ============ */
.search-bar { background: #fff; padding: 22px 0; border-bottom: 1px solid var(--border); }
.search-bar__form {
  position: relative; display: flex; gap: 12px; max-width: 680px; margin: 0 auto;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px; box-shadow: var(--shadow);
}
.search-bar__input {
  flex: 1; padding: 13px 18px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 1rem; font-family: inherit; background: #fff; color: var(--text);
}
.search-bar__input:focus { outline: 2px solid var(--primary); border-color: var(--primary); }
.search-bar__btn { flex-shrink: 0; }
.search-bar__suggestions {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow-y: auto; max-height: 420px; z-index: 50; text-align: left;
}
.search-bar__count {
  padding: 10px 18px; font-size: .78rem; font-family: "Montserrat", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--muted);
  background: var(--bg-alt); border-bottom: 1px solid var(--border); position: sticky; top: 0;
}
.search-bar__suggestion {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px; cursor: pointer; border-bottom: 1px solid var(--border);
}
.search-bar__suggestion:last-child { border-bottom: none; }
.search-bar__suggestion:hover, .search-bar__suggestion.is-active { background: var(--bg-alt); }
.search-bar__suggestion-img {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px; overflow: hidden; background: var(--bg-alt);
}
.search-bar__suggestion-img img { width: 100%; height: 100%; object-fit: cover; }
.search-bar__suggestion-body {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex: 1; min-width: 0;
}
.search-bar__suggestion-label { font-size: .95rem; color: var(--text); }
.search-bar__suggestion-type {
  font-size: .72rem; font-family: "Montserrat", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--primary); white-space: nowrap;
}
.search-bar__empty { padding: 14px 18px; color: var(--muted); font-size: .9rem; }

/* Full search results page (renders .trip-card / .destino-card, same as destination pages) */
.search-results-list { min-height: 40px; }
@media (max-width: 560px) {
  .search-bar__form { flex-wrap: wrap; }
  .search-bar__btn { width: 100%; }
}

/* ============ Hero ============ */
.hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.hero p.lead { font-size: 1.15rem; color: #cfe0ef; max-width: 46ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 1.6em; flex-wrap: wrap; }
.hero__image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero p.lead { max-width: none; margin-inline: auto; }
}

/* ============ Sections ============ */
section.section { padding: 64px 0; }
section.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .8em;
}

/* ============ Grids & cards ============ */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } .grid--6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .btn--lg { white-space: normal; text-align: center; max-width: 100%; }
}

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.15rem; }
.destino-chip {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px; text-align: center;
  padding: 10px; border-radius: var(--radius); transition: transform .2s ease, background .2s ease;
}
.destino-chip__img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: box-shadow .2s ease, border-color .2s ease;
}
.destino-chip__img img { width: 100%; height: 100%; object-fit: cover; }
.destino-chip__name {
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 1rem; color: var(--text);
  transition: color .2s ease;
}
.destino-chip:hover { transform: translateY(-4px); background: var(--bg-alt); }
.destino-chip:hover .destino-chip__img { box-shadow: 0 12px 26px rgba(16,35,58,.2); border-color: var(--primary); }
.destino-chip:hover .destino-chip__name { color: var(--primary); }

.destino-pill {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.destino-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16,35,58,.14);
  border-color: var(--primary);
  background: var(--bg-alt);
}
.destino-pill:hover h3 { color: var(--primary); }
.card--feature { text-align: left; }
.card--feature .card__icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(30,115,190,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 1.4rem;
}

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 60px; margin-bottom: 32px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-weight: 700;
}

/* Pricing */
.price-card { text-align: center; border-top: 4px solid var(--primary); }
.price-card .price { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--primary); margin: .2em 0; }

/* Promo cards */
.promo-card { border-left: 4px solid var(--accent); }
.promo-card ul { margin-top: .6em; }
.promo-card li { padding: .3em 0; border-bottom: 1px dashed var(--border); }
.promo-card li:last-child { border-bottom: none; }

/* Testimonials */
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.testimonial p.quote { font-size: 1.02rem; font-style: italic; color: var(--text); }
.testimonial .author { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--primary); font-size: .9rem; }

/* Google review cards */
.google-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 14px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .88rem; color: var(--muted);
}
.google-review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.google-review-card__header { margin-bottom: 10px; }
.google-review-card__stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }
.google-review-card__text {
  font-size: .95rem; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.google-review-card__author { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--heading); font-size: .9rem; margin: 0; }

/* Social proof photo gallery */
.proof-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.proof-photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.proof-photo:hover img { transform: scale(1.06); }
.proof-photo img { cursor: zoom-in; }
.proof-photo figcaption {
  padding: 14px 16px; font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .88rem; color: var(--heading);
}

/* Lightbox for proof-photo galleries */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 20, .92); padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: min(92vw, 1100px); max-height: 90vh; margin: 0; text-align: center; }
.lightbox__img {
  max-width: 100%; max-height: 78vh; display: block; margin: 0 auto; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox__caption { color: #fff; font-family: "Montserrat", sans-serif; font-weight: 600; margin-top: 14px; font-size: 1rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; cursor: pointer;
  border-radius: 50%; width: 44px; height: 44px; font-size: 1.4rem; line-height: 1; display: flex;
  align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
  .lightbox__close { top: 6px; right: 6px; }
}

/* Tripadvisor review cards */
.tripadvisor-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 14px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .88rem; color: var(--muted);
}
.reclameaqui-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 14px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .88rem; color: var(--muted);
}
.tripadvisor-review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.tripadvisor-review-card__header { margin-bottom: 10px; }
.tripadvisor-review-card__bubbles { color: #34E0A1; font-size: 1rem; letter-spacing: 2px; }
.tripadvisor-review-card__title { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--heading); font-size: 1rem; margin: 0 0 .4em; }
.tripadvisor-review-card__text {
  font-size: .95rem; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.tripadvisor-review-card__author { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--heading); font-size: .9rem; margin: 0; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border); border-radius: 10px; padding: 4px 20px; margin-bottom: 14px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer; padding: 16px 0; font-family: "Montserrat", sans-serif; font-weight: 600;
  list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 14px; font-size: 1.3rem; color: var(--primary);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 16px; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff; text-align: center; padding: 60px 0; border-radius: var(--radius);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbeafc; }

/* Destinos */
.destino-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; height: 100%; }
.destino-card__img { height: 190px; overflow: hidden; flex-shrink: 0; }
.destino-card__img img { width: 100%; height: 100%; object-fit: cover; }
.destino-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.destino-card__price { color: var(--primary); font-family: "Montserrat", sans-serif; font-weight: 700; }
.destino-card__body .btn { margin-top: auto; }

/* Trip cards (destination hub + trip detail) */
.trip-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.trip-card__img { position: relative; height: 170px; overflow: hidden; background: var(--bg-alt); }
.trip-card__img img { width: 100%; height: 100%; object-fit: cover; }
.trip-card__badge {
  position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .78rem;
  padding: 4px 10px; border-radius: 999px;
}
.trip-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.trip-card__body h3 { font-size: 1rem; margin-bottom: 0; }
.trip-card__duration { color: var(--muted); font-size: .85rem; margin: 0; }
.trip-card__price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.trip-card__price-old { color: var(--muted); text-decoration: line-through; font-size: .85rem; }
.trip-card__price-new { color: var(--primary); font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.15rem; }

/* Category filter tabs (destination hub) */
.category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.category-filter__btn {
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .88rem;
  background: var(--bg-alt); color: var(--text); border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: all .15s ease;
}
.category-filter__btn:hover { border-color: var(--primary); color: var(--primary); }
.category-filter__btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0 24px; }

/* Blog */
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card__img { height: 170px; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card__date { font-size: .8rem; color: var(--muted); margin-bottom: .4em; }
.post-card__excerpt { color: var(--muted); font-size: .95rem; flex: 1; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  font-family: "Montserrat", sans-serif; font-weight: 600;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .is-current { background: var(--primary); color: #fff; border-color: var(--primary); }

.post-header { text-align: center; max-width: 780px; margin: 0 auto 32px; }
.post-header__meta { color: var(--muted); font-size: .9rem; }
.post-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow); }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2, .post-body h3 { margin-top: 1.4em; }
.post-body figure { margin: 1.6em 0; }
.post-body figure.wp-block-image img { border-radius: var(--radius); }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.post-body th { background: var(--bg-alt); font-family: "Montserrat", sans-serif; }
.post-body blockquote {
  border-left: 4px solid var(--primary); background: var(--bg-alt);
  padding: 16px 22px; border-radius: 0 10px 10px 0; margin: 1.6em 0;
}
.post-body a { color: var(--primary); text-decoration: underline; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.post-tags span { background: var(--bg-alt); border-radius: 999px; padding: 5px 14px; font-size: .82rem; color: var(--muted); }
.related-posts { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 32px; }

/* Forms */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: "Montserrat", sans-serif; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--primary); border-color: var(--primary); }
.honeypot-field { position: absolute !important; left: -9999px !important; top: -9999px; }
.form-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.form-alert--success { background: #e5f6ea; color: #1a7a3c; }
.form-alert--error { background: #fdeaea; color: #b3261e; }

.contact-info-card { background: var(--bg-alt); border-radius: var(--radius); padding: 28px; }
.contact-info-card h3 { font-size: 1.05rem; }
.contact-info-card .store { margin-bottom: 22px; }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 72px; height: 72px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============ Footer ============ */
.site-footer { background: var(--navy); color: #cfd8e3; padding: 60px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1em; }
.site-footer__logo { margin-bottom: 16px; }
.site-footer a { color: #cfd8e3; }
.site-footer a:hover { color: #fff; }
.site-footer__social { display: flex; gap: 18px; margin-top: 12px; }
.site-footer__social a { display: inline-flex; align-items: center; gap: 6px; }
.site-footer__store { margin-bottom: 16px; font-size: .92rem; }
.site-footer__store strong { color: #fff; }
.site-footer ul li { margin-bottom: 10px; font-size: .92rem; }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__contact-link svg { flex-shrink: 0; }
.site-footer__badges { display: flex; gap: 24px; margin-bottom: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.site-footer__badges img { height: 40px; width: auto; max-width: 170px; object-fit: contain; }
.site-footer__badges img[alt*="Turismo Responsável"] { height: 76px; }
.review-badge-chip {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; border-radius: 999px;
  padding: 8px 14px; height: 24px; box-sizing: content-box; text-decoration: none;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .78rem; color: var(--heading);
  transition: transform .15s ease;
}
.review-badge-chip:hover { transform: translateY(-2px); }
.review-badge-chip strong { color: #f4a827; letter-spacing: -1px; }
.site-footer__qrcode {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin: 0 auto 20px; max-width: 200px;
}
.site-footer__qrcode img { border-radius: 8px; background: #fff; padding: 6px; }
.site-footer__qrcode p { font-size: .78rem; margin: 0; text-align: center; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px; text-align: center; font-size: .82rem;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============ Print (Baixar PDF) ============ */
@media print {
  .site-header, .site-footer, .whatsapp-float, .search-bar,
  .cta-band, .related-posts, .no-print, .lightbox {
    display: none !important;
  }
  .card[style*="position:sticky"] { position: static !important; }
  main { padding: 0; }
  a[href^="http"]::after { content: ""; }
  .faq-item { display: block !important; }
  .faq-item > *:not(summary) { display: block !important; }
  .faq-item summary::marker, .faq-item summary::-webkit-details-marker { display: none; }
  body { font-size: 12pt; color: #000; }
  .trip-card__badge { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
