/* ============================================================
   RDV Viagens – Stylesheet
   Paleta baseada na logo Rosa dos Ventos Viagens
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores da logo */
  --teal-dark:  #0D2E3A;   /* fundo escuro da logo */
  --teal-mid:   #1A4E62;   /* anel da logo */
  --teal-light: #2A7090;   /* teal mais claro */
  --gold:       #C9A96E;   /* dourado da rosa dos ventos */
  --gold-light: #E8D5A3;   /* dourado claro / creme */
  --gold-bright:#F0C040;   /* dourado vivo para CTAs */
  --white:      #FFFFFF;
  --off:        #F7F4EE;   /* off-white quente */
  --gray:       #64748B;
  --light:      #E2D9C9;   /* borda quente */
  --dark:       #0A1A22;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --radius:    16px;
  --radius-sm: 10px;
  --t:         .3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,169,110,.3);
}

.google-tag {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--light);
  font-size: .82rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, #C88A10 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,169,110,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,110,.55); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-teal {
  background: transparent;
  border-color: var(--teal-mid);
  color: var(--teal-mid);
}
.btn-outline-teal:hover { background: var(--teal-mid); color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 22px;
  font-size: .875rem;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }

.btn-cadastur {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dark);
  color: var(--gold-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid rgba(201,169,110,.4);
  transition: all var(--t);
  flex-shrink: 0;
}
.btn-cadastur:hover { background: var(--teal-mid); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all var(--t);
}
.navbar.scrolled {
  background: rgba(13,46,58,.97);
  backdrop-filter: blur(14px);
  padding: 6px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
  transition: transform .3s ease;
}
.logo-img:hover { transform: scale(1.05); }
.logo-img-sm { height: 80px; }

.logo-fallback { display: flex; align-items: center; gap: 10px; }

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--teal-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-rdv  { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: .06em; }
.logo-sub  { font-size: .48rem; font-weight: 500; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--t);
}
.nav-links a:hover { color: var(--gold-light); background: rgba(255,255,255,.08); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--teal-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=1800&q=75') center/cover no-repeat;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(13,46,58,.82) 0%,
    rgba(26,78,98,.65) 50%,
    rgba(13,46,58,.80) 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,169,110,.2);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-right { display: flex; align-items: center; justify-content: center; }

/* ---- Phone mockup ---- */
.phone-mockup {
  position: relative;
  background: #1C1C1E;
  border-radius: 48px;
  padding: 18px 12px 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px #3A3A3C,
    0 0 0 5px #111,
    0 32px 64px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.07);
}

/* Volume buttons (left side) */
.phone-side-btn-vol {
  position: absolute;
  left: -5px; top: 110px;
  width: 5px; height: 28px;
  background: #3A3A3C;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 42px 0 #3A3A3C;
}

/* Power button (right side) */
.phone-side-btn-pwr {
  position: absolute;
  right: -5px; top: 140px;
  width: 5px; height: 52px;
  background: #3A3A3C;
  border-radius: 0 3px 3px 0;
}

/* Dynamic island / notch */
.phone-notch {
  width: 72px; height: 8px;
  background: #111;
  border-radius: 4px;
  margin: 0 auto 10px;
  flex-shrink: 0;
}

/* Screen — height drives everything */
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  /* fill available hero height minus chrome (navbar + padding + phone chrome) */
  height: calc(100vh - 230px);
  max-height: 560px;
  min-height: 320px;
  aspect-ratio: 9 / 16;
  width: auto;
}
.phone-screen video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Home bar */
.phone-home-bar {
  width: 80px; height: 5px;
  background: #3A3A3C;
  border-radius: 3px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInDown .8s ease .1s both;
}

.hero-highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  padding-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeInDown .8s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInDown .8s ease .3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: fadeInDown .8s ease .4s both;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider { width: 1px; height: 44px; background: rgba(201,169,110,.25); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(201,169,110,.35);
  border-radius: 50%;
  color: rgba(201,169,110,.7);
  font-size: .9rem;
  animation: bounce 2s infinite;
  transition: all var(--t);
}
.hero-scroll a:hover { border-color: var(--gold); color: var(--gold); }

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--teal-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(201,169,110,.15);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: .855rem; font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 1.05rem; }

/* ============================================================
   CADASTUR SECTION
   ============================================================ */
.cadastur-section {
  background: var(--off-white);
  padding: 80px 0;
}

.cadastur-frame {
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,.15);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.cadastur-fallback {
  text-align: center;
  padding: 20px 0 10px;
  display: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #EEF4F0, #D8EDE5);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-mid);
  margin-bottom: 20px;
  transition: all var(--t);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: var(--gold-light);
}

.service-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; }
.service-card p  { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal-light);
  font-size: .875rem; font-weight: 600;
  transition: gap var(--t);
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}
.dest-large { grid-row: 1/3; grid-column: 1/2; }

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.08); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,46,58,.88) 0%, rgba(13,46,58,.1) 55%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 26px;
  transition: background var(--t);
}

.dest-info { transform: translateY(6px); transition: transform var(--t); }
.dest-card:hover .dest-info { transform: none; }

.dest-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.dest-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--white); margin-bottom: 4px;
}
.dest-info p { color: rgba(255,255,255,.68); font-size: .82rem; margin-bottom: 14px; }

.btn-dest {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light);
  font-size: .82rem; font-weight: 600;
  border-bottom: 1px solid rgba(201,169,110,.4);
  padding-bottom: 1px;
  transition: all var(--t);
}
.btn-dest:hover { color: var(--gold-bright); border-color: var(--gold-bright); gap: 10px; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--off); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--t);
  position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured { border: 2px solid var(--gold); }

.package-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; z-index: 2;
}

.package-img { height: 200px; background-size: cover; background-position: center; transition: transform .5s ease; }
.package-card:hover .package-img { transform: scale(1.04); }

.package-body { padding: 28px; }

.package-route {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--gray); margin-bottom: 12px;
}
.package-route i { color: var(--teal-light); }

.package-body h3 { font-size: 1.18rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 16px; }

.package-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.package-features li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--gray); }
.package-features li i { color: #27AE60; font-size: .78rem; }

.package-price {
  background: var(--off);
  border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 20px; text-align: center;
}
.price-from  { display: block; font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; }
.price-value { display: block; font-size: 1.8rem; font-weight: 800; color: var(--teal-dark); line-height: 1.2; }
.price-info  { display: block; font-size: .72rem; color: var(--gray); }

.packages-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.packages-cta p { color: var(--gray); font-size: 1rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-tag { display: inline-flex; margin-bottom: 16px; }
.why-text .section-title { text-align: left; margin-bottom: 16px; }
.why-text > p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }

.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #EEF4F0, #D8EDE5);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--teal-mid); flex-shrink: 0;
}
.why-item h4 { font-size: .98rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; }
.why-item p  { font-size: .875rem; color: var(--gray); }

.why-img-wrapper { position: relative; border-radius: 24px; overflow: visible; }
.why-img {
  height: 500px; border-radius: 24px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}

.why-badge-float {
  position: absolute;
  bottom: 36px; left: -36px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  border-left: 4px solid var(--gold);
}
.why-badge-float i { font-size: 2rem; color: var(--gold); }
.why-badge-float strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.why-badge-float span  { font-size: .78rem; color: var(--gray); }

.why-years-float {
  position: absolute;
  top: 28px; right: -24px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,.3);
}
.why-years-float strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.why-years-float span   { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ============================================================
   TESTIMONIALS – Google-style carousel
   ============================================================ */
.testimonials { background: var(--off); }
.testimonials .section-title { color: var(--teal-dark); }

.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.rating-number { font-size: 2rem; font-weight: 800; color: var(--teal-dark); }
.rating-stars  { color: #FBBC05; font-size: 1.1rem; display: flex; gap: 2px; }
.rating-count  { font-size: .85rem; color: var(--gray); }

/* Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--light);
  color: var(--teal-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--teal-dark); color: var(--gold-light); border-color: var(--teal-dark); }
.carousel-btn:disabled { opacity: .35; cursor: default; }

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: var(--shadow); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .9rem;
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: .9rem; color: var(--teal-dark); }
.reviewer-location { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.reviewer-location i { font-size: .65rem; color: var(--teal-light); }

.google-g { flex-shrink: 0; }

.review-stars { color: #FBBC05; font-size: .82rem; display: flex; gap: 2px; margin-bottom: 12px; }

.review-text {
  color: #444;
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
}

.review-date { font-size: .75rem; color: var(--gray); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light);
  cursor: pointer;
  transition: all var(--t);
  border: none;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

.review-cta { text-align: center; margin-top: 36px; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-section { background: var(--white); }
.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact-info .section-tag { display: inline-flex; margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info > p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light);
  background: var(--white);
  transition: all var(--t); cursor: pointer;
}
.channel-item:hover { border-color: var(--gold); transform: translateX(4px); }

.channel-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.ch-whatsapp  { background: #25D366; }
.ch-instagram { background: linear-gradient(135deg, #E1306C, #833AB4); }
.ch-facebook  { background: #1877F2; }
.ch-location  { background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); }

.channel-item strong { display: block; color: var(--teal-dark); font-size: .9rem; }
.channel-item span   { font-size: .8rem; color: var(--gray); }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem; color: var(--dark);
  background: var(--off);
  transition: border-color var(--t); outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A898; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,169,110,.12);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.48); font-size: .875rem; line-height: 1.7; margin-bottom: 10px; }
.footer-cadastur { font-size: .78rem; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.footer-cadastur i { font-size: .9rem; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .9rem;
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.footer-links h4 {
  color: var(--gold-light);
  font-size: .85rem; font-weight: 700; margin-bottom: 18px;
  letter-spacing: .08em; text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,.46); font-size: .875rem; transition: color var(--t); }
.footer-links li a:hover { color: var(--gold-light); }

.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .78rem; line-height: 1.9; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--t);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,.65); }

.fab-tooltip {
  position: absolute; right: 74px;
  background: var(--dark); color: var(--white);
  font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: all var(--t); pointer-events: none;
}
.fab-tooltip::after {
  content: ''; position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none; border-left-color: var(--dark);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; transform: translateX(0); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 104px; right: 28px;
  width: 44px; height: 44px;
  background: var(--teal-dark); border: none;
  border-radius: 12px; color: var(--gold-light);
  font-size: 1rem; cursor: pointer; z-index: 998;
  opacity: 0; transform: translateY(16px); transition: all var(--t);
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--teal-mid); transform: translateY(-2px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-img { height: 360px; }
  .why-badge-float { left: 12px; }
  .why-years-float { right: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-large { grid-row: auto; grid-column: 1/3; height: 280px; }
  .review-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { order: -1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 72px; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--teal-dark);
    align-items: center; justify-content: center;
    gap: 4px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.25rem; padding: 14px 32px; width: 100%; text-align: center; }

  /* Hero mobile: vídeo abaixo do texto, sem frame de celular */
  .hero-content { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 48px; }
  .hero-left { text-align: center; align-items: center; }
  .hero-right { display: flex; justify-content: center; order: 1; }

  /* Oculta o frame do celular e mostra só o vídeo */
  .phone-mockup {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    box-shadow: none;
    width: 100%;
    max-width: 360px;
  }
  .phone-side-btn-vol,
  .phone-side-btn-pwr,
  .phone-notch,
  .phone-home-bar { display: none; }
  .phone-screen {
    border-radius: 16px;
    height: auto;
    min-height: unset;
    max-height: unset;
    aspect-ratio: 9 / 16;
    width: 100%;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-number { font-size: 1.5rem; }

  /* Pacotes: 1 coluna sem overflow */
  .packages-grid { grid-template-columns: 1fr; }
  .package-body { padding: 20px; }

  /* Contato: form com padding reduzido */
  .contact-form-wrapper { padding: 24px 18px; }

  /* Destinos */
  .destinations-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-large, .dest-card { grid-column: 1; height: 220px; }

  /* Avaliações */
  .review-card { flex: 0 0 100%; }
  .carousel-btn { display: none; }

  /* CADASTUR */
  .cadastur-frame iframe { height: 420px; }

  /* Rodapé */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }

  /* Seções com menos padding lateral */
  .container { padding: 0 16px; }

  /* Botão WhatsApp flutuante: menor no celular */
  .whatsapp-fab { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 16px; }
  .back-to-top { bottom: 84px; right: 16px; }

  /* Cards de destino menores */
  .dest-large, .dest-card { height: 190px; }

  /* Seção por que nós */
  .why-badge-float, .why-years-float { display: none; }
}
