/* ══════════════════════════════════════════
   DESIGN TOKENS — Expedição Sul do Mundo
══════════════════════════════════════════ */
:root {
  /* Cores */
  --white: #FFFFFF;
  --off-white: #F9F8F5;
  --cream: #F5F3EE;
  --green: #2D6A4F;
  --green-light: #77daac;
  --green-pale: #D8F3DC;
  --blue: #1B4F72;
  --blue-light: #2E86C1;
  --blue-pale: #D6EAF8;
  --amber: #854F0B;
  --amber-pale: #FAEEDA;
  --coral: #993C1D;
  --coral-pale: #FAECE7;
  --purple: #534AB7;
  --purple-pale: #EEEDFE;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --light-text: #7A7A7A;
  --border: #E8E8E0;

  --gradient-btn: linear-gradient(-160deg, var(--green-light) 0%, var(--green) 100%);
  
  /* Sombras */
  --shadow-sm: 0 0.125rem 0.75rem rgba(0,0,0,0.06);
  --shadow-md: 0 0.5rem 2rem rgba(0,0,0,0.10);
  --shadow-lg: 0 1.5rem 4rem rgba(0,0,0,0.14);

  --shadow-btn-hover: 0 1rem 3rem rgba(82,183,136,0.5);
  
  /* Bordas */
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  
  /* Transições */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  
  /* Tipografia base (16px = 1rem) */
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* Noise Texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.072;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 7.5rem 7.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 3.75rem;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0.0625rem solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(1.5rem) saturate(180%);
  border-bottom: 0.0625rem solid var(--border);
  box-shadow: 0 0.125rem 1.5rem rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  z-index: 2;
  text-decoration: none;
}

nav.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav-logo-icon img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}

nav.scrolled .nav-logo-icon {
  background: transparent;
}

/* nav.scrolled .logo-name {
  display: none;
} */

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: width 0.3s var(--easing);
  
}
nav.scrolled .nav-links a::after {

  background: var(--green);
  
}

.nav-links a:hover::after {
  width: 1.5rem;
}



nav.scrolled .nav-links a {
  color: var(--green);
}


nav .cta-btn {

  padding: 0.5rem 1.125rem;

  font-size: 0.75rem;
  margin-left: 0.375rem;
}

nav:not(.scrolled) .cta-btn{
    background: white;
  color: var(--green);
  
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  z-index: 2;
}

.nav-hamburger span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: rgba(255,255,255,0.85);
  border-radius: 0.125rem;
  transition: background 0.4s;
}

nav.scrolled .nav-hamburger span {
  background: var(--mid);
}

/* Drawer Mobile */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(22rem, 88vw);
  z-index: 1100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1.5rem) saturate(200%);
  -webkit-backdrop-filter: blur(1.5rem) saturate(200%);
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.6);
  box-shadow: -0.5rem 0 3rem rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.4s var(--easing);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  overflow-y: auto;
}

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

.nav-drawer-close {
  align-self: flex-end;
  margin: 1.25rem 1.25rem 0;
  background: rgba(0, 0, 0, 0.06);
  border: 0.09375rem solid rgba(0, 0, 0, 0.08);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--mid);
  font-size: 0.85rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-drawer-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* Logo centralizado */
.nav-drawer-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 3rem 0 3rem;
}

.nav-drawer-logo img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  
}

/* Links centralizados, sem separadores */
.nav-drawer-links {
  list-style: none;
  padding: 0;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.nav-drawer-links li {
  width: 100%;
  text-align: center;
}

.nav-drawer-links a {
  display: block;
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
  position: relative;
}

.nav-drawer-links a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.3s var(--easing);
}

.nav-drawer-links a:hover {
  color: var(--green);
}

.nav-drawer-links a:hover::after {
  width: 2rem;
}

/* Rodapé do drawer com CTA */
.nav-drawer-footer {
  width: 100%;
  padding: 3rem 2rem 5rem;
  display: flex;
  justify-content: center;
}

.nav-drawer-cta {
  width: 100%;
  justify-content: center;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(0.125rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  height: 100vh;
  min-height: 43.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,79,114,0.8) 0%, rgba(45,106,79,0.7) 55%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 57.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(0.625rem);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5625rem 1.375rem;
  border-radius: 6.25rem;
  margin-bottom: 2.25rem;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.375rem, 9vw, 6.875rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--green-light);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 35rem;
  margin: 0 auto 3.25rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

.btn-primary {
  background: var(--green-light);
  color: #fff;
  padding: 1.0625rem 2.375rem;
  border-radius: 6.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.btn-primary:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.875rem 2.25rem rgba(82,183,136,0.48);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 0.125rem solid rgba(255,255,255,0.55);
  padding: 1.0625rem 2.375rem;
  border-radius: 6.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  right: 3.25rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  animation: fadeIn 1.2s 0.9s ease both;
}

.hero-scroll-indicator::after {
  content: '';
  width: 0.0625rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.35);
  animation: growDown 1.5s 1.2s ease both;
}

/* Animações */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.875rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes growDown {
  from { height: 0; }
  to { height: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER SYSTEM
═══════════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 3.75rem;
  max-width: 50rem;
}

.section-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.sh {
  margin-bottom: 0;
}

.sh--left {
  text-align: left;
}

.sh--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sh__eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 0.09375rem;
  flex-shrink: 0;
}

.sh__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sh__title em {
  font-style: italic;
}

.sh__desc {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  max-width: 50rem;
}

.sh--center .sh__desc {
  margin-left: auto;
  margin-right: auto;
}

/* Dark theme */
.sh--dark .sh__eyebrow {
  color: var(--green);
}

.sh--dark .sh__eyebrow::before {
  background: var(--green);
}

.sh--dark .sh__title {
  color: var(--dark);
}

.sh--dark .sh__title em {
  color: var(--green);
}

.sh--dark .sh__desc {
  color: var(--mid);
}

/* Light theme */
.sh--light .sh__eyebrow {
  color: var(--green-light);
}

.sh--light .sh__eyebrow::before {
  background: var(--green-light);
}

.sh--light .sh__title {
  color: #fff;
}

.sh--light .sh__title em {
  color: var(--green-light);
}

.sh--light .sh__desc {
  color: var(--off-white);
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════════════════ */
#sobre {
  padding: 8rem 0;
  background: var(--off-white);
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIÊNCIAS
═══════════════════════════════════════════════════════════════ */
#experiencias {
  padding: 7rem 4rem;
  background: var(--white);
}

.cards-container {
  display: flex;
  gap: 0.75rem;
  max-width: 68.75rem;
  width: 100%;
  height: 28.75rem;
  margin: 0 auto;
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--easing);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  min-width: 5.625rem;
  background-color: #1a2a2a;
}

.card.active {
  flex: 1;
}

.card:not(.active) {
  flex: 0 0 6.875rem;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.5s ease;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.card:not(.active) .card-image::after {
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25) 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.card.active .card-image img {
  transform: scale(1.03);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: none;
  color: white;
  transition: all 0.4s ease;
  z-index: 2;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.card:not(.active) .card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  top: 0;
  bottom: 0;
  padding: 1rem;
}

.card:not(.active) .card-title {
  font-size: 1rem;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: max-content;
  white-space: nowrap;
}

.card.active .card-title {
  transform: rotate(0deg);
  position: static;
  white-space: normal;
}

.card-description {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0;
  margin-top: 0.75rem;
  max-width: 90%;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(0.9375rem);
}

.card.active .card-description {
  opacity: 0.95;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}

.card:not(.active) .card-description {
  opacity: 0;
  display: none;
}

.badges {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card.active .badges {
  opacity: 1;
  transition: opacity 0.3s ease 0.2s;
}

.badge {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(0.5rem);
  padding: 0.3125rem 0.75rem;
  border-radius: 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.375rem;
  height: 2.375rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.card.active .arrow {
  opacity: 1;
  pointer-events: auto;
}

.card.active .arrow:hover {
  background: rgba(0,0,0,0.8);
  border-color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   ROTEIRO
═══════════════════════════════════════════════════════════════ */
#roteiro {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.roteiro-header {
  padding: 7rem 4rem 3.75rem;
  max-width: 80rem;
  margin: 0 auto;
}

.roteiro-header .sh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--green);
}

.roteiro-header .sh__eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 0.09375rem;
  background: var(--green);
  flex-shrink: 0;
}

.roteiro-header .sh__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.roteiro-header .sh__title em {
  font-style: italic;
  color: var(--green);
}

.roteiro-container {
  position: relative;
  overflow: hidden;
  height: 84vh;
  min-height: 36.25rem;
}

.roteiro-progress {
  position: absolute;
  top: 3.5625rem;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: var(--border);
  z-index: 10;
}

.roteiro-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--blue-light));
  transition: width 0.6s ease;
}

.roteiro-day-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 3.5625rem;
  border-bottom: 0.0625rem solid var(--border);
  padding: 0 4rem;
}

.roteiro-day-label {
  font-family: var(--font-mono);
  font-size: 0.59375rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-text);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1.25rem;
  border-right: 0.0625rem solid var(--border);
}

.day-btns {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
}

.day-btn {
  font-family: var(--font-body);
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3125rem 0.875rem;
  border-radius: 6.25rem;
  border: 0.09375rem solid transparent;
  background: transparent;
  color: var(--light-text);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.day-btn:hover {
  background: var(--green-pale);
  color: var(--green);
}

.day-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 0.1875rem 0.625rem rgba(45,106,79,0.28);
}

.roteiro-track {
  display: flex;
  transition: transform 0.65s var(--easing);
  margin-top: 3.6875rem;
  height: calc(100% - 3.6875rem);
}

.dia-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dia-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 3rem 2rem 4rem;
}

/* Tipografia específica da seção roteiro */
.dia-info .sh__title {
  font-size: 2.5rem;
}

.dia-info .sh__desc {
  font-size: 0.9rem;
}

.dia-note {
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--light-text);
}

.dia-badges {
  display: flex;
  gap: 0.4375rem;
  flex-wrap: wrap;
}

.dia-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 1rem 4rem 1rem 1rem;
}

.dia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.dia-slide.active .dia-image img {
  transform: scale(1.06);
}

.dia-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, transparent 40%);
}

.dia-image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(0.625rem);
  border-radius: var(--radius-md);
  padding: 0.9375rem 1.375rem;
  box-shadow: var(--shadow-md);
}

.dia-image-tag strong {
  display: block;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--green);
}

.dia-image-tag span {
  font-size: 0.6875rem;
  color: var(--mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roteiro-nav {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 10;
}

.nav-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(0.5rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  transition: all 0.25s;
  color: var(--light-text);
}

.nav-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.06);
}

.nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

.nav-dots {
  display: flex;
  gap: 0.3125rem;
}

.nav-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  background: var(--green);
  transform: scale(1.5);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(2.75rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-2.75rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(2.75rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   TRANSPORTE
═══════════════════════════════════════════════════════════════ */
#transporte {
  padding: 7rem 0;
  background: var(--white);
  border-top: 0.0625rem solid var(--border);
}

.transport-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.vehicle-showcase {
  position: relative;
}

.vehicle-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 25rem;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--easing);
}

.vehicle-showcase:hover .vehicle-img-main {
  transform: translateY(-0.375rem);
}

.vehicle-badge {
  position: absolute;
  bottom: -1.4rem;
  right: 2rem;
  background: var(--green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.625rem 1.375rem;
  border-radius: 6.25rem;
  box-shadow: 0 0.5rem 1.5rem rgba(45,106,79,0.35);
}

.vehicle-stat-row {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  border: 0.09375rem solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.v-stat {
  flex: 1;
  padding: 1.4rem;
  border-right: 0.09375rem solid var(--border);
  text-align: center;
  background: var(--off-white);
  transition: background 0.25s;
}

.v-stat:last-child {
  border-right: none;
}

.v-stat:hover {
  background: var(--green-pale);
}

.v-n {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.v-d {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 0.25rem;
}

.log-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 2.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acc-item {
  border: 0.09375rem solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.acc-item.open {
  border-color: var(--green-light);
  box-shadow: 0 0.25rem 1rem rgba(82,183,136,0.12);
}

.acc-trigger {
  width: 100%;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}

.acc-trigger:hover {
  background: rgba(82,183,136,0.06);
}

.acc-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.acc-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.acc-item.open .acc-icon {
  background: var(--green);
  color: #fff;
}

.acc-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

.acc-chevron {
  color: var(--green);
  font-size: 0.75rem;
  transition: transform 0.4s var(--easing);
}

.acc-item.open .acc-chevron {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--easing);
}

.acc-body-inner {
  padding: 0 1.3rem 1.3rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════
   EQUIPAMENTOS
═══════════════════════════════════════════════════════════════ */
#equipamentos {
  padding: 7rem 0;
  background: var(--white);
  border-top: 0.0625rem solid var(--border);
}

.equip-outer {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 26.25rem;
  gap: 5rem;
  align-items: start;
}

.equip-yes-list {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.equip-yes-list li {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 0.0625rem solid var(--border);
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.4;
}

.equip-yes-list li:first-child {
  border-top: 0.0625rem solid var(--border);
}

.equip-yes-list li i {
  color: var(--green-light);
  font-size: 0.6875rem;
  flex-shrink: 0;
  margin-top: 0.1875rem;
}

.equip-yes-list li strong {
  color: var(--dark);
  font-weight: 600;
}

.equip-no-section {
  margin-bottom: 2.25rem;
}

.equip-no-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.equip-no-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.equip-no-list li {
  font-size: 0.8125rem;
  color: var(--light-text);
  padding: 0.1875rem 0;
}

.equip-no-list li::before {
  content: '—';
  margin-right: 0.5rem;
  opacity: 0.5;
}

.equip-image-caption {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  box-shadow: var(--shadow-md);
}

.equip-image-caption-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.equip-image-caption-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.1875rem;
}

.equip-image-caption-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.equip-image {
  position: sticky;
  top: 6.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.equip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   INCLUSO / NÃO INCLUSO
═══════════════════════════════════════════════════════════════ */
#incluso {
  padding: 7rem 0;
  background: var(--white);
  border-top: 0.0625rem solid var(--border);
}

.incluso-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.yes-panel {
  background: var(--off-white);
  border: 0.09375rem solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.yes-panel-head {
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(45,106,79,0.12) 0%, rgba(82,183,136,0.06) 100%);
  border-bottom: 0.09375rem solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.yes-panel-head i {
  font-size: 1.4rem;
  color: var(--green);
}

.yes-panel-head h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
}

.yes-panel-head span {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
}

.yes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.yes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.6rem;
  border-bottom: 0.0625rem solid var(--border);
  border-right: 0.0625rem solid var(--border);
  transition: background 0.2s;
}

.yes-item:hover {
  background: rgba(82,183,136,0.05);
}

.yes-item:nth-child(even) {
  border-right: none;
}

.ico-wrap {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.5rem;
  background: var(--green-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ico-wrap i {
  font-size: 0.75rem;
  color: var(--green);
}

.txt strong {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}

.txt span {
  font-size: 0.76rem;
  color: var(--light-text);
  line-height: 1.4;
}

.no-panel {
  background: var(--off-white);
  border: 0.09375rem solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.no-panel-head {
  padding: 1.6rem 2rem;
  background: rgba(153,60,29,0.06);
  border-bottom: 0.09375rem solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.no-panel-head i {
  font-size: 1.4rem;
  color: var(--coral);
}

.no-panel-head h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
}

.no-list {
  list-style: none;
}

.no-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 0.0625rem solid var(--border);
  font-size: 0.88rem;
  color: var(--mid);
  transition: background 0.2s;
}

.no-item:last-child {
  border-bottom: none;
}

.no-item:hover {
  background: rgba(153,60,29,0.04);
}

.no-item i {
  color: var(--coral);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.no-note {
  padding: 1.1rem 1.8rem;
  background: var(--amber-pale);
  border-top: 0.09375rem solid var(--border);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--amber);
  font-style: italic;
}

.no-note i {
  color: var(--amber);
  margin-right: 0.375rem;
}

.no-highlight {
  margin-top: 1.25rem;
  padding: 1.8rem;
  background: var(--green-pale);
  border: 0.09375rem solid rgba(82,183,136,0.3);
  border-radius: var(--radius-md);
  border-left: 0.25rem solid var(--green-light);
}

.no-highlight-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.no-highlight-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
#faq {
  padding: 7rem 0;
  background: var(--white);
  border-top: 0.0625rem solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.09375rem solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 0.09375rem solid var(--border);
  border-right: 0.09375rem solid var(--border);
}

.faq-item:nth-child(even) {
  border-right: none;
}

.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-trigger:hover {
  background: var(--off-white);
}

.faq-trigger[aria-expanded="true"] {
  background: var(--green-pale);
}

.faq-q {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.faq-trigger[aria-expanded="true"] .faq-q {
  color: var(--green);
}

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--border);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: background 0.25s, transform 0.35s var(--easing), color 0.25s;
  margin-top: 0.0625rem;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--easing);
}

.faq-body p {
  padding: 0 1.8rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════
   OUTRAS EXPEDIÇÕES
═══════════════════════════════════════════════════════════════ */
#outras-expedicoes {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 0.0625rem solid var(--border);
}

.expedicoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expedicao-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 0.09375rem solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--easing), box-shadow 0.35s, border-color 0.3s;
}

.expedicao-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.expedicao-img-wrap {
  position: relative;
  height: 16.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

.expedicao-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--easing);
}

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

.expedicao-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.expedicao-duration-badge {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(0.375rem);
  border-radius: 6.25rem;
  padding: 0.3125rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.expedicao-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.6rem;
}

.expedicao-nome {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.expedicao-local {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.expedicao-body {
  padding: 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.expedicao-desc {
  font-size: 0.85rem;
  line-height: 1.82;
  color: var(--mid);
  margin-bottom: 1.1rem;
  flex: 1;
}

.expedicao-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.4rem;
}

.expedicao-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  border: 0.09375rem solid rgba(45,106,79,0.2);
  border-radius: 6.25rem;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  background: var(--green-pale);
}

.expedicao-tag i {
  font-size: 0.6rem;
}

.expedicao-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.25s var(--easing), color 0.2s;
  align-self: flex-start;
}

.expedicao-cta:hover {
  color: var(--green-light);
  gap: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   SEGURANÇA
═══════════════════════════════════════════════════════════════ */
#seguranca {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  border-top: 0.0625rem solid rgba(45,106,79,0.4);
}

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

.seg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.seg-card {
  padding: 1.3rem;
  background: rgba(255,255,255,0.07);
  border: 0.09375rem solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, background 0.3s;
}

.seg-card:hover {
  border-color: rgba(82,183,136,0.5);
  background: rgba(82,183,136,0.12);
}

.seg-card i {
  font-size: 1.4rem;
  color: var(--green-light);
  margin-bottom: 0.8rem;
  display: block;
}

.seg-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.seg-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   AVALIAÇÕES CARROSSEL
═══════════════════════════════════════════════════════════════ */
.avaliacoes-carrossel {
  background: var(--off-white);
  padding: 5rem 0;
}

.avaliacoes-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.depoimentos-carrossel-vertical {
  position: relative;
  height: 30rem;
  width: 100%;
  max-width: 35rem;
  margin: 0 auto;
}

.depoimento-card {
  position: absolute;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-md);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
}

.depoimento-card.featured {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  background: var(--white);
}

.cliente-info {
  margin-bottom: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.cliente-info h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  margin-bottom: 0.6rem;
}

.cliente-info p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--light-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.depoimento-texto {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid);
  font-style: italic;
  margin: 1rem 0 0.5rem;
  position: relative;
}

.depoimento-texto::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 10rem;
  color: var(--green-light);
  font-style: normal;
  opacity: 0.25;
  position: absolute;
  top: -12rem;
  right: 1rem;
  pointer-events: none;
}

.estrelas {
  color: #f5b342;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
}

/* ═══════════════════════════════════════════════════════════════
   PREÇOS / INVESTIMENTO
═══════════════════════════════════════════════════════════════ */
#precos {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.precos-urgencia {
  background: var(--green-pale);
  border-bottom: 0.0625rem solid var(--border);
  padding: 0.875rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--mid);
  position: relative;
  z-index: 1;
}

.precos-urgencia i {
  color: var(--green);
  font-size: 0.875rem;
  animation: pulse 2s ease infinite;
}

.precos-urgencia strong {
  color: var(--green);
  font-weight: 700;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.precos-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 4rem;
  position: relative;
  z-index: 1;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: end;
}

.preco-card {
  background: var(--white);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--easing), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  display: flex;
  flex-direction: column;
}

.preco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  background: var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.preco-card:hover {
  transform: translateY(-0.4rem);
  /* border-color: var(--green); */
  box-shadow: var(--shadow-lg);
}

.preco-card.destaque {
  background: var(--white);
  border-color: var(--green);
  transform: translateY(-1rem);
  box-shadow: 0 2rem 5rem rgba(45, 106, 79, 0.12), 0 0 0 0.0625rem rgba(45, 106, 79, 0.2);
  padding-top: 3rem;
}

.preco-card.destaque::before {
  /* background: linear-gradient(90deg, var(--green-light), var(--green));
   */
   display: none;
}

.preco-card.destaque:hover {
  transform: translateY(-1.4rem);
  box-shadow: 0 2rem 4rem rgba(45, 106, 79, 0.18), 0 0 0 0.0625rem rgba(45, 106, 79, 0.3);
}


.preco-card-top {
  text-align: center;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 0.0625rem solid var(--border);
}

.preco-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(119, 218, 172, 0.1);
  color: var(--green-light);
  font-size: 1.375rem;
  margin: 0 auto 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 218, 172, 0.18);
  transition: background 0.3s, transform 0.3s;
}

.preco-card:hover .preco-icon {
  
  transform: scale(1.08);
}

.preco-card.destaque .preco-icon {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0.5rem 1.5rem rgba(45, 106, 79, 0.45);
  border: none
}

.preco-method {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.preco-value {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.preco-value span {
  font-size: 1.125rem;
  vertical-align: middle;
  font-weight: 600;
  margin-right: 0;
}

.preco-economia {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(119, 218, 172, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6.25rem;
  letter-spacing: 0.03em;
}

.preco-economia--sub {
  color: var(--light-text);
  background: var(--off-white);
  border-color: var(--border);
}

.preco-economia i {
  font-size: 0.5625rem;
}

.preco-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.preco-items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84375rem;
  color: var(--mid);
  line-height: 1.4;
}

.preco-items li i {
  color: var(--green-light);
  font-size: 0.5625rem;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: rgba(119, 218, 172, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preco-cta {
  display: block;
  padding: 1rem 1.75rem;
  border-radius: 6.25rem;
  font-size: 0.84375rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s var(--easing);
  letter-spacing: 0.03em;
  border: 1px solid var(--green);
  color: var(--dark);
  background: transparent;
}

.preco-cta:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.preco-card.destaque .preco-cta {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0.5rem 2rem rgba(45, 106, 79, 0.5);
  border: none
}

.preco-card.destaque .preco-cta:hover {
  background: linear-gradient(160deg, #8fe8be 0%, var(--green-light) 100%);
  box-shadow: 0 0.75rem 2.5rem rgba(45, 106, 79, 0.65);
  transform: translateY(-0.125rem);
}

.precos-incluso {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  margin-bottom: 2rem;
}

.precos-incluso-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.precos-incluso-label i {
  font-size: 0.875rem;
}

.precos-incluso-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.precos-incluso-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.78125rem;
  font-weight: 500;
  color: var(--mid);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem;
  border-radius: 6.25rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.precos-incluso-items span:hover {
  background: var(--green-pale);
  color: var(--green);
  border-color: var(--green-pale);
}

.precos-incluso-items span i {
  font-size: 0.5625rem;
  color: var(--green-light);
}

.preco-fine-print {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.78125rem;
  font-style: italic;
  color: var(--light-text);
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 auto;
}

.preco-fine-print i {
  color: var(--light-text);
  flex-shrink: 0;
  margin-top: 0.125rem;
}


/* ═══════════════════════════════════════════════════════════════
   QUOTE
═══════════════════════════════════════════════════════════════ */
#quote {
  padding: 7rem 4rem;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '"';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 18.75rem;
  color: var(--green-pale);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 51.25rem;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.625rem, 4vw, 2.625rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 2.25rem;
}

.quote-text em {
  color: var(--green);
  font-style: normal;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-text);
}

.quote-author::before,
.quote-author::after {
  content: '';
  width: 2.5rem;
  height: 0.0625rem;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
#cta-final {
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  animation: heroZoom 20s ease infinite alternate;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-160deg, rgba(27,79,114,0.9) 0%, rgba(45,106,79,0.8) 100%);
}

.cta-final-wrap {
  max-width: 42.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final-wrap .sh {
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  /* letter-spacing: 0.1em;
  text-transform: uppercase; */
  padding: 1.1rem 3rem;
  border-radius: 6.25rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0.5rem 1.875rem rgba(45,106,79,0.4);
}

.cta-btn:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-0.1875rem);
  box-shadow: var(--shadow-btn-hover);
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-contact:hover {
  color: var(--green-light);
}

.cta-contact i {
  color: var(--green-light);
}

.cta-cadastur {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: var(--off-white);
  
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding: 5rem 4rem 3.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
}

.footer-logo {
  width: 7rem;
  height: 7rem;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
    margin-bottom: 1rem;
}

.footer-logo img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.footer-tagline {
  font-size: 0.84375rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 1.75rem;
  max-width: 17.5rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.footer-social a:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
  transform: translateY(-0.1875rem);
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.375rem;
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid rgba(119, 218, 172, 0.18);
}

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

.footer-nav a {
  font-size: 0.84375rem;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}

.footer-nav a i {
  font-size: 0.5625rem;
  color: var(--green-light);
  opacity: 0.7;
}

.footer-nav a:hover {
  gap: 0.75rem;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: white;
}

.footer-contact li i {
  color: var(--green-light);
  font-size: 0.875rem;
  width: 1.125rem;
  text-align: center;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--green-light);
}

.footer-col .cta-btn {
  font-size: 0.8;
  gap: 0.625rem;
  padding: 0.8125rem 1.375rem;

}


.footer-bottom {
  border-top: 1px solid rgba(119, 218, 172, 0.18);
  padding: 1.375rem 4rem;
}

.footer-bottom-inner {
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: white;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-copy a:hover {
  opacity: 1;
  color: var(--green-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--green-light);
}

.footer-badges {
  display: flex;
  gap: 1.125rem;
}

.footer-badges span {
  font-size: 0.71875rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-badges span i {
  color: var(--green-light);
  font-size: 0.75rem;
}


@import url(style.css);

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) and (min-width: 1025px) {
  nav {
    padding: 0 2rem;
  }
  
  nav.scrolled {
    padding: 0 2rem;
  }
  
  .nav-links a {
    font-size: 0.75rem;
    padding: 0.375rem 0.4375rem;
  }
  
  .nav-links .nav-cta {
    padding: 0.4375rem 0.875rem;
    margin-left: 0.25rem;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 0 1rem;
  }
  
  nav.scrolled {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1rem;
    gap: 0.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  #sobre, #precos, #quote {
    padding: 5rem 1.75rem;
  }
  
  #experiencias {
    padding: 5rem 1.75rem;
  }
  
  .cards-container {
    height: 23.75rem;
  }
  
  .card:not(.active) {
    flex: 0 0 5.625rem;
  }
  
  /* ── ROTEIRO TABLET ── */

  /* A nav sai do container para poder ser sticky sem ser afetada pelo overflow */
  #roteiro {
    display: flex;
    flex-direction: column;
  }

  .roteiro-day-nav {
    position: static;
    gap: 0.5rem;
    padding: 0 1.75rem;
    background: var(--off-white);
    border-bottom: 0.0625rem solid var(--border);
    z-index: 20;
    height: 3.25rem;
  }

  .roteiro-container {
    height: auto;
    min-height: unset;
    overflow: visible;
    order: 0;
  }

  .roteiro-progress {
    display: none;
  }

  .roteiro-day-label {
    display: none;
  }
  
  .day-btns {
    gap: 0.2rem;
  }

  .day-btn {
    font-size: 0.6875rem;
    padding: 0.25rem 0.75rem;
  }
  
  /* Track vira um grid empilhado: todos os slides na mesma célula,
     o JS alterna .active — sem translateX, sem altura quebrada */
  .roteiro-track {
    margin-top: 0;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    transform: none !important; /* desativa o translateX do JS */
    transition: none;
    overflow: visible;
  }

  .dia-slide {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
    /* inativos ficam ocultos mas sem remover do fluxo para não quebrar o grid */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .dia-slide.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .dia-info {
  padding: 1.5rem 1.25rem;
  overflow-y: visible;
  margin-top: 1rem;
    margin-bottom: 0;
    justify-content: flex-start;
  }
  
  .dia-image {
    min-height: 18rem;
    max-height: 22rem;
    order: -1;
    margin: 0;
    border-radius: 0;
  }

  .dia-image-tag {
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.75rem 1rem;
  }

  .dia-image-tag strong {
    font-size: 1rem;
  }
  
  .roteiro-nav {
    position: static;
    display: flex;
    justify-content: center;
    padding: 1.25rem 1.75rem 2rem;
    background: var(--off-white);
    border-top: 1px solid var(--border);
  }
  
  .section-wrap {
    padding: 0 1.75rem;
  }
  
  #transporte, #equipamentos, #incluso, #faq, #outras-expedicoes, #seguranca {
    padding: 5rem 0;
  }
  
  .transport-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .equip-outer {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.75rem;
  }
  
  
.equip-image {
  position: static;
  aspect-ratio: 3/4;
  max-height: 44rem;
}
  
  .incluso-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item {
    border-right: none !important;
  }
  
  .faq-item:nth-last-child(-n+2) {
    border-bottom: 0.09375rem solid var(--border);
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .expedicoes-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .seg-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .seg-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  #precos {
    padding: 5rem 1.75rem;
  }
  
  .precos-inner {
    padding: 5rem 0;
  }
  
  .precos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .preco-card.destaque {
    order: -1;
    transform: translateY(0);
  }

  .preco-card.destaque:hover {
    transform: translateY(-0.4rem);
  }

  .precos-urgencia {
    padding: 0.875rem 1.75rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .precos-incluso {
    padding: 1.5rem;
  }
  
  #cta-final {
    padding: 5rem 1.75rem;
  }
  
  .avaliacoes-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .depoimentos-carrossel-vertical {
    max-width: 100%;
    height: 32.5rem;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.75rem 1.75rem 2.5rem;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
  
  .footer-bottom {
    padding: 1.25rem 1.75rem;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
  }
}

@media (max-width: 700px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  #experiencias {
  padding: 4rem 1.25rem;
}

.sh__title {
  font-size: clamp(2.6rem, 8.6vw, 3.6rem);
}
  
  .cards-container {
    flex-direction: column;
    height: auto !important;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
  }
  
  .card,
  .card.active,
  .card:not(.active) {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 16.25rem;
    border-radius: var(--radius-md);
  }
  
  .card:not(.active) {
    height: 4.5rem;
  }
  
  .card:not(.active) .card-title {
    font-size: 1rem !important;
    transform: none !important;
    position: static !important;
    white-space: normal;
    width: auto;
  }
  
  .card:not(.active) .card-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1.25rem;
  }
  
  .card.active {
    height: 20rem;
  }
  
  .card.active .card-title {
    font-size: 1.4rem;
  }
  
  .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.625rem;
  }
  
  .arrow {
    width: 1.875rem;
    height: 1.875rem;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .section-wrap {
    padding: 0 1.25rem;
  }
  
  .yes-list {
    grid-template-columns: 1fr;
  }
  
  .yes-item {
    border-right: none;
  }
  
  .expedicoes-grid {
    grid-template-columns: 1fr;
  }
  
  .seg-cards {
    grid-template-columns: 1fr;
  }
  
  .avaliacoes-container {
    padding: 0 1.25rem;
  }
  
  .depoimento-card {
    padding: 1.5rem;
  }
  
  /* ── ROTEIRO MOBILE ── */
  .roteiro-day-nav {
    padding: 0 1rem;
    height: 3rem;
  }

  

  .day-btn {
    font-size: 0.625rem;
    padding: 0.2rem 0.6rem;
  }

  .dia-image {
    min-height: 14rem;
    max-height: 18rem;
  }

  .dia-info {
    padding: 1rem 1.25rem 1.5rem;
  }

  .dia-info .sh__title {
    font-size: 2.5rem;
}
.dia-info .sh__desc {
  line-height: 1.65;
  margin-bottom: 1rem;
}



  .dia-note {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .dia-image-tag {
    bottom: 0.875rem;
    left: 0.875rem;
    padding: 0.5rem 0.875rem;
  }

  .dia-image-tag strong {
    font-size: 0.875rem;
  }

  .dia-image-tag span {
    font-size: 0.5625rem;
  }

  .roteiro-nav {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    display: none;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  #quote::before {
    font-size: 11.25rem;
    top: -1.25rem;
  }
  
  #sobre, #precos, #quote {
    padding: 4rem 1.25rem;
  }

  .precos-inner {
    padding: 4rem 0;
  }

  .precos-grid {
    max-width: 100%;
  }

  .preco-card {
    padding: 1.75rem;
  }

  .preco-card.destaque {
    padding-top: 2rem;
  }

  .precos-incluso {
    padding: 1.25rem;
  }

  .precos-incluso-items {
    gap: 0.5rem;
  }

  .precos-incluso-items span {
    font-size: 0.71875rem;
    padding: 0.3rem 0.7rem;
  }
  
  #experiencias {
    padding: 3.5rem 1.25rem;
  }
  
  #cta-final {
    padding: 4rem 1.25rem;
  }
  
  .hero-content {
    padding: 0 1.25rem;
  }
  
  .hero-desc {
    font-size: 0.9375rem;
  }
  
  #hero, #roteiro, #cta-final, #quote {
    max-width: 100vw;
    overflow-x: hidden;
  }

  #sobre .sh__desc {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  #cta-final .cta-btn {
    padding: 1.2rem 3.25rem;
    font-size: 0.9375rem;
  }
}