/* ============================================================
   Cipritravel Tours — Editorial Travel Theme
   Modernização estética mantendo estrutura + conteúdo CMS
   Paleta: verde #008030 + laranja #e07000 + creme + carvão
   ============================================================ */

/* ===== Design tokens (light) ===== */
:root {
  --bg:        #faf7f0;   /* creme quente */
  --bg-soft:   #f4ecd8;   /* areia */
  --card:      #ffffff;
  --text:      #1a1a1a;   /* carvão */
  --text-soft: #4a4a4a;
  --muted:     #8a8175;
  --border:    #e8e0cd;
  --accent:    #008030;   /* verde logo */
  --accent-2:  #e07000;   /* laranja logo */
  --accent-d:  #006028;   /* verde escuro */
  --nav-bg:    rgba(250,247,240,0.88);
  --shadow:    0 1px 2px rgba(20,15,5,0.04), 0 8px 24px rgba(20,15,5,0.06);
  --shadow-lg: 0 4px 12px rgba(20,15,5,0.08), 0 24px 60px rgba(20,15,5,0.10);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', 'Poppins', system-ui, sans-serif;
}

/* ===== Dark mode (carvão quente, não azul-roxo) ===== */
body.dark {
  --bg:        #161310;
  --bg-soft:   #1f1b15;
  --card:      #221d16;
  --text:      #f5efe0;
  --text-soft: #d8cfb8;
  --muted:     #94897a;
  --border:    #322a1f;
  --accent:    #4ade80;
  --accent-2:  #fb923c;
  --accent-d:  #22c55e;
  --nav-bg:    rgba(22,19,16,0.88);
  --shadow:    0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.5), 0 24px 60px rgba(0,0,0,0.6);
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  transition: background .4s, color .4s;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  font-feature-settings: "ss01","kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a[href^="#"] { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
.font-playfair { font-family: var(--serif); }

/* ===== Navbar ===== */
nav {
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform .3s ease;
}
.nav-logo:hover { transform: scale(1.04); }

/* ===== Nav pills (minimal underline) ===== */
.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s, transform .25s;
  position: relative;
}
.nav-pill::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.nav-pill:hover, .nav-pill.active { color: var(--accent-2); }
.nav-pill:hover::after, .nav-pill.active::after { transform: scaleX(1); }

/* ===== Lang + theme ===== */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-soft);
  transition: all .2s;
  letter-spacing: 0.05em;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.theme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all .25s;
}
.theme-pill:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  transform: rotate(15deg);
}

/* ===== Buttons ===== */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,128,48,0.25);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,112,0,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all .3s;
  display: inline-block;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== Section tag ===== */
.section-tag {
  display: inline-block;
  background: transparent;
  color: var(--accent-2);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--accent-2);
}
.section-tag.green { color: var(--accent); }
.section-tag.green::before { background: var(--accent); }
.section-tag.red { color: #c2410c; }
.section-tag.red::before { background: #c2410c; }

/* ===== Cards ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .4s;
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,5,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--card);
  border-radius: 4px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
  animation: slideUp .4s cubic-bezier(.22,.61,.36,1);
}
.modal-box.wide { max-width: 860px; }
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ===== Hero (cinematográfico) ===== */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.15); }
  to   { transform: scale(1.05); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.25) 40%, rgba(15,10,5,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 900px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: #fb923c;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.92;
}
.hero-content .section-tag {
  color: #fb923c;
  justify-content: center;
}
.hero-content .section-tag::before { background: #fb923c; }

.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: floatCue 2.5s ease-in-out infinite;
}
@keyframes floatCue {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ===== Tour card (hover-zoom) ===== */
.tour-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.exc-card { display: flex; flex-direction: column; height: 100%; }
.exc-card:hover .tour-card-img { transform: scale(1.08); }

.exc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px;
}
.exc-card-btn {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.exc-card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 8px 0 4px;
  letter-spacing: -0.01em;
}
.exc-card-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.exc-card-price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.exc-card-price small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 4px;
}

.exc-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  padding: 4px 6px;
  border-radius: 2px;
  color: #fff;
  line-height: 1.1;
  font-family: var(--sans);
  flex-shrink: 0;
}

/* ===== Blog ===== */
.blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.card:hover .blog-img { transform: scale(1.06); }

/* ===== Floating buttons ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all .25s;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,128,48,0.4);
  color: #fff;
  font-size: 1.1rem;
  transition: all .25s;
}
.back-top:hover {
  background: var(--accent-2);
  transform: scale(1.08);
}

/* ===== Cards variantes ===== */
.pq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  height: 100%;
}
.pq-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.sust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all .4s;
}
.sust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== Section spacing ===== */
section {
  scroll-margin-top: 90px;
  padding: 100px 24px;
}
section > div:first-child {
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* ============================================================
   PARALLAX SHOWCASE — excursion em destaque (Rota do Sol e Praia)
   ============================================================ */
.parallax-showcase {
  position: relative;
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}
.parallax-showcase__bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
  transition: transform .1s linear;
}
.parallax-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(0,40,15,0.55) 0%, rgba(20,15,5,0.4) 40%, rgba(224,112,0,0.45) 100%);
}
.parallax-showcase__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.parallax-showcase__text {
  color: #fff;
}
.parallax-showcase__text .section-tag {
  color: #fb923c;
}
.parallax-showcase__text .section-tag::before { background: #fb923c; }
.parallax-showcase__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  color: #fff;
}
.parallax-showcase__title em {
  font-style: italic;
  color: #fb923c;
}
.parallax-showcase__desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.parallax-showcase__meta {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.parallax-showcase__meta-item {
  color: #fff;
}
.parallax-showcase__meta-item .label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.parallax-showcase__meta-item .value {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.parallax-showcase__meta-item.price .value { color: #fb923c; }
.parallax-showcase__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Painel de imagem flutuante à direita */
.parallax-showcase__card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 40px 32px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-width: 420px;
  margin-left: auto;
  transform: translateY(0);
  transition: transform .4s ease;
}
.parallax-showcase__card:hover { transform: translateY(-6px); }
.parallax-showcase__card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}
.parallax-showcase__card-date {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fb923c;
  font-weight: 700;
  margin-bottom: 12px;
}
.parallax-showcase__card-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}
.parallax-showcase__card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}
.parallax-showcase__card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.parallax-showcase__card-cta .price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fb923c;
}

@media (max-width: 900px) {
  .parallax-showcase { min-height: auto; }
  .parallax-showcase__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  .parallax-showcase__card { max-width: 100%; margin-left: 0; }
  .parallax-showcase__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* ============================================================
   MODAIS MODERNIZADOS (layout split)
   ============================================================ */
.modal-box--editorial {
  max-width: 880px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 !important;
  overflow: hidden;
}
.modal-box--editorial .modal-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.modal-box--editorial .modal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-box--editorial .modal-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,40,15,0.25), rgba(224,112,0,0.2));
}
.modal-box--editorial .modal-visual .date-stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  color: var(--accent-2);
  padding: 12px 18px;
  border-radius: 4px;
  z-index: 2;
  text-align: center;
}
.modal-box--editorial .modal-visual .date-stamp .day {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.modal-box--editorial .modal-visual .date-stamp .month {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.modal-box--editorial .modal-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 90vh;
  max-height: 90dvh;
}
.modal-box--editorial .modal-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-box--editorial .modal-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.modal-box--editorial .modal-subtitle {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 24px;
}
.modal-box--editorial .modal-content-text {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.modal-box--editorial .modal-includes-title {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.modal-box--editorial .modal-includes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}
.modal-box--editorial .modal-includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.88rem;
}
.modal-box--editorial .modal-includes-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.modal-box--editorial .modal-includes-list li::after {
  content: '✓';
  position: absolute;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 5px;
}
.modal-box--editorial .modal-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.modal-box--editorial .modal-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.modal-box--editorial .modal-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-top: 2px;
}
.modal-box--editorial .modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  z-index: 10;
  transition: all .2s;
}
.modal-box--editorial .modal-close-btn:hover {
  background: var(--accent-2);
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 700px) {
  .modal-box--editorial {
    grid-template-columns: 1fr;
    max-height: 92vh;
    max-height: 92dvh;
  }
  .modal-box--editorial .modal-visual {
    min-height: 220px;
    max-height: 280px;
  }
  .modal-box--editorial .modal-body { padding: 28px 22px; }
  .modal-box--editorial .modal-title { font-size: 1.4rem !important; }
}

/* ============================================================
   CONTACTOS MODERNOS
   ============================================================ */
.contacts-section {
  background: var(--bg-soft) !important;
  padding: 120px 24px !important;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.contacts-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.contacts-info > p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateX(8px);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-lg);
}
.contact-card__visual {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  overflow: hidden;
}
.contact-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-card__value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.contacts-aside {
  position: sticky;
  top: 100px;
}
.contacts-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}
.contacts-map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(40%) contrast(1.05);
  transition: filter .4s;
}
.contacts-map-wrap:hover iframe { filter: grayscale(0%) contrast(1); }
.contacts-hours {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.contacts-hours h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.contacts-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.contacts-hours-row:last-child { border-bottom: none; }
.contacts-hours-row .day { color: var(--text-soft); }
.contacts-hours-row .hours { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .contacts-aside { position: static; }
  .contacts-map-wrap iframe { height: 280px; }
}

/* ============================================================
   WHY US (porquê nós) — substituir ícones por imagens recortadas
   ============================================================ */
.why-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.why-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.why-card:hover .why-card__img { transform: scale(1.08); }
.why-card__body {
  padding: 28px 24px;
}
.why-card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   BACKGROUND VIDEO LOOP (subtil)
   ============================================================ */
.bg-video-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.bg-video-wrap {
  position: relative;
  overflow: hidden;
}
.bg-video-wrap > *:not(.bg-video-loop):not(.hero-overlay):not(.hero-content):not(.hero-scroll-cue) {
  position: relative;
  z-index: 1;
}

/* ===== Loading screen ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.spinner {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
  transition: all .2s;
}
.hamburger:hover { border-color: var(--accent-2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile menu ===== */
#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--nav-bg);
}
#mobile-menu.open { display: flex; }
#mobile-menu .nav-pill {
  padding: 12px 4px;
  font-size: 0.85rem;
}
#mobile-menu .nav-pill::after { display: none; }
.mobile-lang-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ===== Scroll reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }

/* ===== Grid ===== */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .grid-2col { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Footer ===== */
footer {
  background: var(--bg-soft);
  padding: 60px 24px 30px;
  border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #menu-container { display: none !important; }
  #mobile-right { display: flex !important; }
  .hamburger { display: flex !important; }
  .nav-inner {
    height: auto;
    min-height: 70px;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo { height: 70px; }
  .modal-box {
    border-radius: 4px;
    max-height: 88vh;
    max-height: 88dvh;
    width: 100%;
  }
  .modal-box img {
    border-radius: 0 !important;
    max-height: 220px;
    object-fit: cover;
    width: 100%;
  }
  .hero-content { padding: 16px; }
  .hero-content h1 { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .hero-content p { font-size: clamp(0.9rem, 3.5vw, 1rem) !important; }
  .tour-card-img { height: 220px; }
  .blog-img { height: 180px; }
  .exc-card-body { padding: 18px; }
  .exc-card-title { font-size: 1.15rem; }
  .btn-primary, .btn-outline {
    padding: 11px 22px;
    font-size: 0.78rem;
  }
  section { padding: 60px 16px; }
  main, footer, #modais-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .nav-inner { min-height: 60px; padding: 8px 14px; }
  .nav-logo { height: 60px; }
  #mobile-right .lang-btn { font-size: 0.65rem; padding: 3px 8px; }
  .modal-overlay { padding: 8px; }
  .modal-box { border-radius: 4px; max-height: 92vh; max-height: 92dvh; }
  .hero-content h1 { font-size: clamp(1.6rem, 9vw, 2.2rem) !important; }
  .hero-content .hero-content div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px !important;
    margin-top: 16px !important;
  }
  .tour-card-img { height: 180px; }
  .blog-img { height: 160px; }
  .exc-card-body { padding: 14px; }
  section { padding: 50px 12px; }
}

/* ===== Modal heading ===== */
.modal-box h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem !important;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.modal-box .font-playfair { font-family: var(--serif); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img, .hero-video { animation: none; transform: scale(1.05); }
}
