/* ==========================================================================
   Beira Tours — Modern Stylesheet (2026)
   Lightweight, mobile-first, no jQuery, no Bootstrap.
   ========================================================================== */

:root {
  --color-primary: #c76e1f;      /* warm terracotta */
  --color-primary-dark: #a05616;
  --color-accent: #2c5f7c;       /* deep teal */
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f2;
  --color-border: #e5e7eb;
  --color-dark: #1a1a1a;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);

  --radius: 10px;
  --radius-lg: 16px;

  --container: 1200px;
  --gap: 1.5rem;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--color-dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Top bar (language) ---------- */
.topbar {
  background: var(--color-dark);
  color: #fff;
  font-size: .85rem;
  padding: .55rem 0;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .4rem;
}
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover, .topbar .current { color: #fff; }
.topbar .sep { color: rgba(255,255,255,.3); }
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: .35rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.brand img { height: 56px; width: auto; }

.nav-toggle {
  background: none;
  border: 0;
  padding: .5rem;
  display: none;
  color: var(--color-dark);
  cursor: pointer;
  z-index: 9001;
  position: relative;
}
.nav-toggle svg { width: 28px; height: 28px; }

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .5rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  height: clamp(420px, 80vh, 720px);
  overflow: hidden;
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }
/* imagem de fundo — z-index 0 */
.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* overlay escuro — z-index 1 */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.52));
  z-index: 1;
  pointer-events: none;
}
/* conteúdo de texto — z-index 2 */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  padding: 0 1.5rem;
}
.hero-content.right { margin-left: auto; text-align: right; }
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: .4em;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero-content h2 {
  color: rgba(255,255,255,.92);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  margin-bottom: 1.5em;
}
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.hero-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0;
  transition: all var(--transition);
}
.hero-dots button.active { background: #fff; border-color: #fff; transform: scale(1.2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.8rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9rem;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .8rem; }

/* ---------- Sections ---------- */
section { padding: 4rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: .8rem auto 0;
}
.section-head p { color: var(--color-muted); max-width: 700px; margin: 0 auto; }
.section-alt { background: var(--color-bg-alt); }

/* ---------- Cards Grid (Tours & Activities) ---------- */
.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-media img { transform: scale(1.05); }
.card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--color-primary);
  color: #fff;
  padding: .4rem .9rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: var(--shadow-md);
}
.card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.card-subtitle {
  font-size: .9rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--color-muted);
  padding: .8rem 0;
  margin: 0 0 1rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.card-meta span { display: flex; align-items: center; gap: .35rem; }
.card-meta svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-primary); }
.card-desc { font-size: .95rem; flex: 1; margin-bottom: 1.2rem; }
.card-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: all var(--transition);
}
.icon-btn:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; }

/* ---------- Activity Card (smaller) ---------- */
.activity-card .card-media { aspect-ratio: 5/3; }
.activity-card h3 { font-size: 1.1rem; }
.activity-card .price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .6rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
}
.activity-card .price-line b { font-weight: 600; font-size: .85rem; color: var(--color-muted); text-transform: uppercase; }
.activity-card .price-line span { font-weight: 700; color: var(--color-primary); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-accent);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-banner p {
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.cta-banner .btn {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.cta-banner .btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ---------- About section (parallax) ---------- */
.about {
  position: relative;
  background-image: url('../../imagens/sobre_nos/team1.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .about { background-attachment: scroll; }
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.about > .container { position: relative; z-index: 2; }
.about h2, .about h3 { color: #fff; }
.about h2::after { background: #fff; }
.about p { color: rgba(255,255,255,.95); max-width: 800px; margin: 0 auto 2rem; font-size: 1.05rem; }
.team-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 2rem auto 0;
}
.team-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ---------- Partners ---------- */
.partners ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}
.partners img {
  max-height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: .7;
  transition: all var(--transition);
}
.partners a:hover img { filter: none; opacity: 1; }

/* ---------- Contacts ---------- */
.contacts {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
}
.contacts h2 { color: #fff; }
.contacts h2::after { background: var(--color-primary); }
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-item { padding: 1rem; }
.contact-item .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.contact-item .icon svg { width: 28px; height: 28px; }
.contact-item h4 {
  color: #fff;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-bottom: .5rem;
}
.contact-item p, .contact-item a { color: rgba(255,255,255,.85); font-size: .95rem; }
.contact-item a:hover { color: var(--color-primary); }

/* ---------- Footer ---------- */
.footer {
  background: #111;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: .25rem 0; display: flex; gap: .6rem; align-items: flex-start; }
.footer ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--color-primary); }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--color-primary); }
.footer-logo { max-width: 200px; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.social-links {
  list-style: none;
  display: flex;
  gap: .75rem;
  padding: 0;
  margin: 0;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--color-primary); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary-dark); color: #fff; }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 1.2rem; left: 1.2rem;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; right: 1rem;
  max-width: 360px;
  background: #232323;
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  z-index: 999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { color: #fff; font-family: var(--font-body); margin-bottom: .5rem; font-size: 1rem; }
.cookie-banner p { margin-bottom: 1rem; color: rgba(255,255,255,.85); font-size: .85rem; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner button {
  background: var(--color-primary);
  color: #fff;
  border: 0;
  padding: .6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
}
@media (max-width: 600px) {
  .cookie-banner { left: 0; right: 0; bottom: 0; max-width: none; border-radius: 0; }
}

/* ==========================================================================
   EXPERIENCE / TOUR DETAIL PAGES
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 3rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.6));
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .3em; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero .subtitle { font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,.95); margin-bottom: 1rem; }
.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  font-size: .85rem;
  padding: 0; margin: 0;
}
.breadcrumbs li { color: rgba(255,255,255,.8); }
.breadcrumbs li + li::before { content: "›"; margin-right: .5rem; color: rgba(255,255,255,.6); }
.breadcrumbs a { color: rgba(255,255,255,.9); text-decoration: underline; }

/* gallery */
.gallery {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr;
  margin: 0;
}
@media (min-width: 700px) {
  .gallery-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .gallery-4 { grid-template-columns: repeat(4, 1fr); }
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity var(--transition);
}
.gallery img:hover { opacity: .85; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-direction: column;
  gap: .75rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  user-select: none;
}
.lightbox .close,
.lightbox .nav-btn {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox .close { top: 1rem; right: 1rem; font-size: 1.8rem; }
.lightbox .prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox button:hover,
.lightbox button:focus { background: rgba(255,255,255,.28); outline: none; }
/* contador  "2 / 5" */
.lb-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-family: inherit;
  pointer-events: none;
  letter-spacing: .05em;
}
/* galeria — cursor pointer nas imagens */
.gallery img { cursor: zoom-in; }
@media (max-width: 600px) {
  .lightbox .prev { left: .4rem; }
  .lightbox .next { right: .4rem; }
  .lightbox .close { top: .5rem; right: .5rem; }
}

/* tour content */
.tour-content { padding: 4rem 0; }
.tour-content .container { max-width: 1000px; }
.tour-content h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .5rem;
}
.tour-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour-content h3, .tour-content h4 { margin-top: 2rem; }
.tour-content p { font-size: 1.02rem; }
.tour-content ul, .tour-content ol { padding-left: 1.5rem; }
.tour-content li { margin: .4rem 0; }

.feature-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin: 2.5rem 0;
  align-items: center;
}
@media (min-width: 800px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse > div:first-child { order: 2; }
}
.feature-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* info icons (Duração, Dias, etc.) */
.tour-info {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
@media (min-width: 700px) {
  .tour-info { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .tour-info { grid-template-columns: repeat(4, 1fr); }
}
.tour-info .item {
  text-align: center;
  padding: 1rem;
}
.tour-info .item svg {
  width: 36px; height: 36px;
  color: var(--color-primary);
  margin-bottom: .8rem;
}
.tour-info .item h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-muted);
  margin: 0 0 .3rem;
}
.tour-info .item p { margin: 0; font-weight: 600; color: var(--color-dark); }
.tour-info .item.cta {
  background: var(--color-primary);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tour-info .item.cta svg, .tour-info .item.cta h4, .tour-info .item.cta p { color: #fff; }

/* observations */
.observations {
  background: var(--color-bg-alt);
  padding: 3rem 0;
}
.observations .container { max-width: 900px; }
.observations h3 {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.observations .obs-block {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.observations .obs-block p { margin: .25rem 0; }
.observations .obs-block ul { list-style: none; padding: 0; margin: .5rem 0 0; }
.observations .obs-block ul li { padding: .25rem 0; padding-left: 1.5rem; position: relative; }
.observations .obs-block ul li::before { content: "→"; position: absolute; left: 0; color: var(--color-primary); }

/* sub-tour selector */
.subtours { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .subtours { grid-template-columns: repeat(2, 1fr); } }
.subtour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}
.subtour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.subtour-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.subtour-card .body { padding: 1.5rem; }
.subtour-card h4 { font-size: 1.3rem; margin-bottom: .5rem; }

/* related */
.related { background: var(--color-dark); color: #fff; }
.related h2 { color: #fff; }
.related h2::after { background: var(--color-primary); }
.related .card { background: #222; color: rgba(255,255,255,.9); }
.related .card h3 { color: #fff; }
.related .card p { color: rgba(255,255,255,.75); }
.related .card-subtitle { color: rgba(255,255,255,.55); }

/* privacy / generic page */
.page-content { padding: 4rem 0; }
.page-content .container { max-width: 900px; }
.page-content h2 { margin-top: 2rem; }
.page-content ol li { margin: .8rem 0; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.post-card .thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.post-card .post-date {
  font-size: .8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.post-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.post-card h3 a { color: var(--color-dark); }
.post-card h3 a:hover { color: var(--color-primary); }
.post-card .excerpt { font-size: .95rem; flex: 1; margin-bottom: 1rem; color: var(--color-text); }
.post-card .read-more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  align-self: flex-start;
}
.post-card .read-more::after { content: " →"; transition: margin-left var(--transition); }
.post-card .read-more:hover::after { margin-left: 4px; }

/* Single post */
.post-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .9rem;
  color: var(--color-muted);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.post-meta svg { width: 16px; height: 16px; vertical-align: -2px; margin-right: .3rem; color: var(--color-primary); }
.post-body { font-size: 1.05rem; line-height: 1.75; }
.post-body p { margin-bottom: 1.2rem; }
.post-body h2, .post-body h3 { margin-top: 2rem; }
.post-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: .5rem 1.2rem;
  margin: 1.5rem 0;
  background: var(--color-bg-alt);
  font-style: italic;
}
.post-share {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
}
.post-share strong { font-size: .85rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .06em; }
.post-share a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: all var(--transition);
}
.post-share a:hover { background: var(--color-primary); color: #fff; }
.post-share svg { width: 18px; height: 18px; }

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-page h1 { font-size: clamp(5rem, 15vw, 9rem); margin: 0; color: var(--color-primary); }

/* utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* ---------- Mobile menu ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    padding: 5rem 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 9000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav li { border-bottom: 1px solid var(--color-border); }
  .main-nav a { display: block; padding: 1rem 0; }
  .main-nav a::after { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 8000;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .nav-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: 0;
    padding: .5rem;
  }
  .nav-close svg { width: 24px; height: 24px; }
}

/* Print-friendly basics */
@media print {
  .site-header, .topbar, .footer, .back-to-top, .wa-float, .cookie-banner { display: none; }
  body { color: #000; background: #fff; }
}


/* ── Botão Reservar no menu ─────────────────────────── */
.main-nav ul li.nav-reservar a {
  background: var(--color-primary, #e8a020);
  color: #fff !important;
  padding: .45rem 1.1rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: background .2s;
}
.main-nav ul li.nav-reservar a:hover { background: #c4841a !important; }
.main-nav ul li.nav-reservar a::after { display: none !important; }

/* ── Testemunhos ────────────────────────────────────── */
.testimonials-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 28px 26px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: left;
}
.testimonial-card .stars { color: #e8a020; font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-card blockquote {
  font-size: .93rem;
  color: #555;
  line-height: 1.65;
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-card .author { font-weight: 700; color: #333; font-size: .88rem; }
.testimonial-card .source { font-size: .78rem; color: #aaa; }


/* ── Barra logos PRR / EU no rodapé ────────────────── */
.footer-eu {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  text-align: center;
}
.footer-eu img {
  max-width: 360px;
  width: 100%;
  height: auto;
  opacity: .85;
  filter: brightness(1.05);
}


/* touch targets mínimos 48×48px (mobile) */
@media (max-width: 960px) {
  .nav-toggle,
  .nav-close,
  .back-to-top,
  .cookie-banner button {
    min-width: 48px;
    min-height: 48px;
  }
  .nav-reservar a {
    padding: .6rem 1rem !important;
    min-height: 44px;
    display: flex !important;
    align-items: center;
  }
}
