/* ==========================================================================
   AGÊNCIA BONITO DEMAIS - LANDING PAGE STYLES
   Tipografia: Montserrat | Paleta: Turquesa, Esmeralda, Dourado Solar, Dark
   ========================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  /* Brand Palette (Extraída da Logo & Identidade de Bonito Demais) */
  --primary-teal: #029487;
  --primary-teal-dark: #00665c;
  --primary-teal-light: #05b8a8;
  --accent-cyan: #00b4d8;
  --accent-blue: #0077b6;
  
  --accent-gold: #ffb703;
  --accent-orange: #fb8500;
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;

  /* Neutrals & Dark Theme */
  --bg-dark: #0b131f;
  --bg-dark-secondary: #111d2e;
  --bg-card: #162438;
  --bg-card-hover: #1c2e47;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;

  /* Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(5, 184, 168, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow-teal: 0 0 25px rgba(5, 184, 168, 0.35);
  --shadow-glow-gold: 0 0 25px rgba(255, 183, 3, 0.4);

  /* Fonts & Radius */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- UTILITIES & TYPOGRAPHY --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--whatsapp-green); }
.mt-4 { margin-top: 2rem; }

.gradient-text {
  background: linear-gradient(135deg, #05b8a8 0%, #00b4d8 50%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(5, 184, 168, 0.15);
  border: 1px solid var(--primary-teal-light);
  color: var(--primary-teal-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 148, 135, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 184, 168, 0.6);
}

.btn-cta {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-size: 1.05rem;
  padding: 16px 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #2ae771, #16a392);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: #ffffff;
}

.btn-block {
  width: 100%;
}

.pulse-effect {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background: #060b12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold);
  font-weight: 700;
}

.top-bar-phone:hover {
  color: #ffffff;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 31, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(11, 19, 31, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  height: 78px;
  max-width: 345px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-teal-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-header-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-header-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 4px;
}

/* --- HERO SECTION WITH VIDEO & 5X BIG OVERLAID GIF (Visual Limpo) --- */
.hero-section.hero-visual-only {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  max-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center-gif-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

/* GIF 5x Maior, nítido e centralizado */
.hero-big-gif {
  width: 90%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
  animation: gentleFloat 5s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

/* --- SEÇÃO DE INTRODUÇÃO / INFORMAÇÕES (Logo abaixo do vídeo) --- */
.section-intro-info {
  background: radial-gradient(circle at top, #112338 0%, #0c1724 100%);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--border-glass);
}

.intro-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.intro-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(22, 36, 56, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

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

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* --- SECTION THEMATIC CTA CARDS --- */
.section-cta-cards {
  padding: 90px 0;
  background: #0c1724;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.theme-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal-light), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition);
}

.theme-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
  background: var(--bg-card-hover);
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card.featured-theme {
  border: 2px solid var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(5, 184, 168, 0.2);
}

.card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.icon-pacotes { background: rgba(5, 184, 168, 0.15); color: var(--primary-teal-light); }
.icon-passeios { background: rgba(0, 180, 216, 0.15); color: var(--accent-cyan); }
.icon-duvidas { background: rgba(255, 183, 3, 0.15); color: var(--accent-gold); }
.icon-hospedagem { background: rgba(251, 133, 0, 0.15); color: var(--accent-orange); }
.icon-grupos { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.icon-oquefazer { background: rgba(168, 85, 247, 0.15); color: #a855f7; }

.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border-radius: var(--radius-full);
}

.highlight-badge {
  background: rgba(255, 183, 3, 0.2);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 183, 3, 0.4);
}

.card-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-features {
  margin-bottom: 25px;
  border-top: 1px solid var(--border-glass);
  padding-top: 15px;
}

.card-features li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.card-features li i {
  color: var(--whatsapp-green);
  font-size: 0.85rem;
}

.btn-whatsapp-card {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-whatsapp-card:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Central Direct Banner */
.cta-direct-banner {
  background: linear-gradient(135deg, #11283d 0%, #0c4349 100%);
  border: 1px solid rgba(5, 184, 168, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.cta-banner-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: #cbd5e1;
  font-size: 1rem;
}

/* --- SECTION BENEFITS (Alívio de dores) --- */
.section-benefits {
  padding: 90px 0;
  background: var(--bg-dark-secondary);
}

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

.benefit-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.benefit-box:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(5, 184, 168, 0.3);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(5, 184, 168, 0.15);
  color: var(--primary-teal-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefit-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SECTION HOW IT WORKS (Steps) --- */
.section-steps {
  padding: 90px 0;
  background: var(--bg-dark);
}

.steps-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary-teal-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #0b131f;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 183, 3, 0.4);
}

.step-icon-wrap {
  font-size: 2.4rem;
  color: var(--primary-teal-light);
  margin-top: 10px;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.step-connector {
  font-size: 1.5rem;
  color: var(--primary-teal-light);
  opacity: 0.6;
}

/* --- SECTION TOURS SHOWCASE --- */
.section-tours {
  padding: 90px 0;
  background: var(--bg-dark-secondary);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 45px;
}

.tour-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 184, 168, 0.4);
}

.tour-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(11, 19, 31, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-teal-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(5, 184, 168, 0.3);
}

.tour-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.tour-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 15px;
}

.tour-level {
  font-size: 0.82rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.btn-tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-tour-cta:hover {
  background: #1eb954;
  transform: scale(1.05);
}

.tours-cta-footer {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.tours-cta-footer h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* --- SECTION TESTIMONIALS --- */
.section-testimonials {
  padding: 90px 0;
  background: var(--bg-dark);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #e2e8f0;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-teal-light);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- SECTION FAQ (Accordion) --- */
.section-faq {
  padding: 90px 0;
  background: var(--bg-dark-secondary);
}

.faq-container {
  max-width: 900px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--primary-teal-light);
  box-shadow: 0 4px 15px rgba(2, 148, 135, 0.15);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  gap: 15px;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary-teal-light);
}

.accordion-header i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: var(--primary-teal-light);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.35s ease-in-out;
}

.faq-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* --- SECTION FINAL CTA --- */
.section-final-cta {
  padding: 90px 0;
  background: radial-gradient(circle at center, #112e3e 0%, #0b131f 70%);
}

.final-cta-card {
  background: rgba(22, 36, 56, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(5, 184, 168, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.final-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.small-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- FOOTER --- */
.site-footer {
  background: #060b12;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  max-height: 98px;
  max-width: 360px;
  width: auto;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-about {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.safe-browsing-img {
  max-width: 180px;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-teal-light);
}

.footer-links li, .footer-info li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover, .footer-info a:hover {
  color: var(--primary-teal-light);
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-info li i {
  color: var(--primary-teal-light);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- POP-UP MODAL (Mantém também o pop up) --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #111e2e;
  border: 1px solid var(--primary-teal-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 184, 168, 0.15);
  color: var(--primary-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
}

.modal-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-form .form-group {
  margin-bottom: 16px;
}

.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.modal-form input, .modal-form select {
  width: 100%;
  padding: 12px 16px;
  background: #0a1320;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.modal-form input:focus, .modal-form select:focus {
  border-color: var(--primary-teal-light);
  box-shadow: 0 0 0 3px rgba(5, 184, 168, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-trust-text {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.8);
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-tooltip {
  position: absolute;
  right: 74px;
  background: #111e2e;
  color: #ffffff;
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVE DESIGN (Mobile & Tablet) --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .steps-flow {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .cta-direct-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b131f;
    border-bottom: 1px solid var(--border-glass);
    padding: 20px;
  }
  .main-nav.active {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-header-whatsapp {
    display: none;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-trust-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
    gap: 10px;
    padding: 16px;
  }
  .trust-divider {
    display: none;
  }
  .cards-grid, .tours-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .brand-col {
    grid-column: auto;
  }
  .floating-tooltip {
    display: none;
  }
}
