﻿:root {
  --green-dark: #004f45;
  --green: #087b45;
  --teal: #008b8b;
  --turquoise: #20bfc2;
  --orange: #f47b00;
  --sand: #f7f3ea;
  --white: #ffffff;
  --text: #183b35;
  --muted: #5f6f6a;
  --border: rgba(0, 79, 69, 0.18);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --header-h: 92px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.45;
}

h1,
h2,
.section-title,
.hero-title,
.dest-card h3,
.cta-content h2 {
  font-family: Georgia, "Times New Roman", serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  min-height: 92px;
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 210px;
  max-height: 72px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.main-nav a,
.main-nav .nav-modal-trigger {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 8px 6px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav .nav-modal-trigger:hover,
.main-nav a.is-active {
  color: var(--green-dark);
  background: transparent;
}

.main-nav a.is-active {
  border-bottom-color: rgba(8, 123, 69, 0.95);
}

.mobile-menu-toggle {
  display: none;
}

.btn {
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  min-height: 48px;
  padding: 0 26px;
  cursor: pointer;
}

.btn-primary,
.btn-whatsapp-top {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover,
.btn-whatsapp-top:hover { background: #066739; }

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  color: #0f5f52;
  border: 2px solid rgba(15, 95, 82, 0.75);
}

.btn-outline:hover {
  background: #0f5f52;
  color: #ffffff;
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.btn-reviews .btn-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-reviews .btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.btn-light {
  background: rgba(255, 255, 255, 0.82);
  color: #0f5f52;
  border: 2px solid rgba(15, 95, 82, 0.75);
}

.btn-whatsapp-top {
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.92rem;
  border-radius: 10px;
}

.btn-whatsapp-top .ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.whatsapp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.whatsapp-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.btn-whatsapp,
.cta-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #07813f;
  color: #ffffff;
  border: 1px solid #07813f;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 235, 0.94) 0%, rgba(247, 243, 235, 0.82) 34%, rgba(247, 243, 235, 0.34) 58%, rgba(247, 243, 235, 0.04) 100%);
  z-index: 1;
}

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

.hero-copy {
  color: var(--text);
  max-width: 640px;
  padding: 48px 0;
}

.hero-copy h1 {
  margin: 0 0 16px;
  color: #113f35;
  line-height: 1.08;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: #3e4a45;
  font-size: 17px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bar {
  margin-top: -38px;
  margin-bottom: 56px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  min-height: 124px;
}

.trust-card:not(:last-child) {
  border-right: 1px solid rgba(15, 95, 82, 0.18);
}

.trust-icon {
  flex: 0 0 96px;
  width: 96px;
  min-height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d6f62;
}

.trust-icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
}

.trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-copy h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: #11463c;
  line-height: 1.12;
}

.trust-copy p {
  margin: 0;
  color: #3f4946;
  font-size: 13px;
  line-height: 1.35;
}

.section { padding: 72px 0; }
.eyebrow { color: var(--teal); font-weight: 800; letter-spacing: 0.11em; margin: 0 0 8px; font-size: 0.78rem; }
h2 { margin: 0 0 26px; font-size: clamp(1.5rem, 2.6vw, 2.2rem); }

.destinations.section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.destinations .eyebrow {
  text-align: center;
  display: block;
  color: #0f7668;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.destinations h2 {
  text-align: center;
  color: #1b2724;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1;
  margin-bottom: 34px;
}

.destinations h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: #0f7668;
  margin: 14px auto 0;
  border-radius: 999px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dest-card {
  background: #ffffff;
  border: 1px solid rgba(15, 95, 82, 0.35);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.dest-card img { width: 100%; height: 210px; object-fit: cover; }
.dest-body { padding: 18px 22px 20px; display: flex; flex: 1; flex-direction: column; gap: 10px; }
.dest-body h3 { margin: 0 0 6px; color: #1b2724; font-size: 24px; line-height: 1.1; }
.dest-body p { margin: 0 0 16px; color: #3e4946; font-size: 15px; line-height: 1.42; }
.dest-body .btn { margin-top: auto; }

.dest-card .btn,
.dest-card button,
.dest-card a.btn {
  background: rgba(255, 255, 255, 0.92);
  color: #0f5f52;
  border: 2px solid rgba(15, 95, 82, 0.75);
  border-radius: 10px;
  min-height: 38px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
}

.dest-card .btn:hover,
.dest-card button:hover,
.dest-card a.btn:hover {
  background: #0f5f52;
  color: #ffffff;
}

.reviews { background: #fffdf9; }
.reviews.section {
  padding-top: 28px;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.reviews .eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #00796b;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.reviews h2 {
  margin: 0 0 18px;
  color: #183f36;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.1;
  font-weight: 700;
}

.reviews h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 10px;
  background: #0f7668;
  border-radius: 999px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.review-card {
  min-height: 92px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.review-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

.review-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.review-card h3 span { display: block; color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.review-card p { margin: 0; color: var(--muted); }
.review-google { display: flex; flex-direction: column; gap: 14px; }

.gallery-strip {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  background: #f7f3eb;
  overflow: hidden;
}

.gallery-strip-grid {
  display: grid;
  width: 100%;
  gap: 0;
}

.gallery-strip-grid.gallery-count-6 {
  grid-template-columns: repeat(6, 1fr);
  height: 190px;
}

.gallery-strip-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-banner {
  padding: 18px 0;
  background: #f7f3eb;
}

.cta-inner {
  position: relative;
  min-height: 86px;
  padding: 16px 42px;
  border-radius: 18px;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 35, 30, 0.84) 0%,
      rgba(0, 35, 30, 0.58) 38%,
      rgba(70, 42, 12, 0.24) 68%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    url("../img/cta.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 360px;
  align-items: center;
  gap: 22px;

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.cta-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.cta-content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cta-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 250px;
  min-height: 42px;
  padding: 10px 22px;
  border: 0;
  border-radius: 10px;
  background: #07813f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 80, 40, 0.28);
}

.cta-whatsapp-button:hover {
  background: #066f37;
}

.cta-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
}

.cta-action-caption {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.site-footer {
  background-color: #003f36;
  background-image: url('../img/footer.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.footer-main {
  padding: 16px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.2fr 1fr 1fr;
  align-items: center;
  gap: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo {
  display: block;
  max-width: 220px;
  height: auto;
  background: transparent;
}

.footer-brand p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.86);
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.4;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
}

.site-footer a:hover, .footer-link-btn:hover { color: #ffffff; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.90);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-text {
  display: inline-block;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 14px;
  min-width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  text-align: center;
}

.footer-social-icons,
.footer-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social-icons a,
.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: #0a5e56;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icons a:hover,
.footer-social-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
  stroke: none;
}

.footer-link-btn {
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  min-height: 26px;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
}

.footer-dev-credit {
  display: inline-block;
  margin-left: 6px;
  opacity: 0.75;
  font-weight: 500;
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}

.modal.is-open { display: block; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 79, 69, 0.1);
  color: var(--green-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal h2 { margin-right: 36px; margin-bottom: 14px; }
.modal p { color: #355851; }
.modal-passeios ol {
  margin: 0 0 16px 20px;
  padding: 0;
  color: #355851;
  line-height: 1.5;
}

.modal-passeios li {
  margin: 0 0 4px;
}
.modal-subtitle { margin-top: -8px; }

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

.qr-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.qr-card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.qr-modal.is-open {
  display: flex;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.qr-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #ffffff;
}

.qr-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #003b34;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.qr-modal-close:hover {
  background: #f2f2f2;
}

body.qr-modal-open {
  overflow: hidden;
}

body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr; padding: 12px 0 16px; }
  .brand { justify-self: center; }
  .brand img { width: 190px; }
  .btn-whatsapp-top { justify-self: center; }
  .hero { min-height: 500px; }
  .trust-grid,
  .dest-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .footer-social {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .trust-card:not(:last-child) {
    border-right: 0;
  }

  .trust-card:nth-child(odd) {
    border-right: 1px solid rgba(15, 95, 82, 0.18);
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(15, 95, 82, 0.18);
  }

  .trust-icon {
    flex: 0 0 90px;
    width: 90px;
    min-height: 96px;
  }

  .trust-icon img {
    width: 78px;
    height: 78px;
  }

  .trust-copy {
    min-height: 96px;
  }

  .review-card img {
    max-height: 120px;
    height: auto;
  }

  .gallery-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-inner {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-areas:
      "logo content"
      "action action";
    gap: 14px;
    min-height: 180px;
    padding: 22px 18px;
  }

  .cta-logo-wrap {
    grid-area: logo;
  }

  .cta-content {
    grid-area: content;
  }

  .cta-action {
    grid-area: action;
    align-items: stretch;
  }

  .cta-whatsapp-button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .footer-main {
    padding: 20px 0 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-social {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-dev-credit {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .reviews.section {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .gallery-strip {
    margin: 0 0 10px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: 110px;
    padding: 12px;
  }

  .review-card img {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .cta-banner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .gallery-strip-grid.gallery-count-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "content"
      "action";
    text-align: center;
    min-height: 180px;
    padding: 22px 18px;
    gap: 14px;
    background-position: center;
  }

  .cta-logo {
    width: 64px;
    height: 64px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 13px;
  }

  .cta-action {
    align-items: center;
  }

  .cta-whatsapp-button {
    width: 100%;
    font-size: 15px;
    min-height: 42px;
  }

  .qr-modal {
    padding: 16px;
  }

  .qr-modal-dialog {
    width: min(94vw, 420px);
  }

  .qr-modal-close {
    top: -12px;
    right: -8px;
  }
}

@media (max-width: 900px) {
  .gallery-strip-grid.gallery-count-6 {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .gallery-strip-grid img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  .gallery-strip-grid img {
    height: 135px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "menu menu"
      "cta cta";
    align-items: center;
    padding: 10px 0 12px;
    gap: 10px;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
  }

  .brand img {
    width: 180px;
    max-width: 100%;
    height: auto;
  }

  .mobile-menu-toggle {
    grid-area: toggle;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 79, 69, 0.2);
    border-radius: 10px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-toggle-line {
    width: 20px;
    height: 2px;
    background: #004f45;
    border-radius: 2px;
    transition: transform 0.26s ease, opacity 0.22s ease;
    transform-origin: center;
  }

  .site-header.menu-open .mobile-menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    grid-area: menu;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 20px 22px;
    box-sizing: border-box;
    max-height: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    white-space: normal;
    background: #ffffff;
    border: 1px solid rgba(0, 79, 69, 0.14);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.28s;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header.menu-open .main-nav {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: max-height 0.3s ease, opacity 0.24s ease, transform 0.24s ease;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .main-nav a,
  .main-nav .nav-modal-trigger {
    width: 100%;
    font-size: 18px;
    line-height: 1.2;
    padding: 10px 14px;
    text-align: center;
    border-bottom: 0;
    border-radius: 999px;
  }

  .main-nav a.is-active {
    border-bottom-color: transparent;
    background: rgba(0, 139, 139, 0.14);
    color: #004f45;
  }

  .btn-whatsapp-top {
    grid-area: cta;
    justify-self: center;
    margin-top: 0;
    min-height: 44px;
    min-width: 240px;
    max-width: 100%;
    padding: 0 18px;
    font-size: 16px;
    border-radius: 999px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.22s;
  }

  .site-header.menu-open .btn-whatsapp-top {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .whatsapp-btn-icon {
    width: 20px;
    height: 20px;
  }

  .cta-whatsapp-button {
    text-align: center;
  }

  .hero-copy { max-width: 100%; }
  .hero-actions .btn { width: 100%; }
  .trust-grid,
  .dest-grid,
  .review-grid,
  .qr-grid { grid-template-columns: 1fr; }

  .trust-card {
    min-height: 0;
  }

  .trust-icon {
    flex: 0 0 84px;
    width: 84px;
    min-height: 88px;
  }

  .trust-icon img {
    width: 72px;
    height: 72px;
  }

  .trust-copy {
    min-height: 88px;
  }

  .trust-card:nth-child(odd) {
    border-right: 0;
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-card:not(:last-child) {
    border-bottom: 1px solid rgba(15, 95, 82, 0.18);
  }

  .section { padding: 58px 0; }
  .destinations.section { padding-top: 34px; padding-bottom: 30px; }
  .reviews.section { padding-top: 24px; padding-bottom: 26px; }
  .reviews h2 { font-size: 28px; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 44px); }
}
