/* ============================================
   EXOTIC TRAVEL LANDING PAGE
   Paleta: "Especiarias & Safira"
   Design System & Styles
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Paleta Especiarias & Safira */
  --safira-noturno: #1E3F66;
  --safira-noturno-rgb: 30, 63, 102;
  --terracota-especiada: #B85D19;
  --terracota-especiada-rgb: 184, 93, 25;
  --verde-jade: #2C5E43;
  --verde-jade-rgb: 44, 94, 67;
  --areia-alabastro: #F5F2EB;
  --areia-alabastro-rgb: 245, 242, 235;
  --ambar-dourado: #D48F38;
  --ambar-dourado-rgb: 212, 143, 56;

  /* Cores auxiliares */
  --text-dark: #1A1A2E;
  --text-body: #3D3D56;
  --text-light: #6B6B80;
  --white: #FFFFFF;
  --overlay-dark: rgba(30, 63, 102, 0.85);
  --overlay-medium: rgba(30, 63, 102, 0.6);

  /* Tipografia */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Bordas e sombras */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  --shadow-soft: 0 4px 20px rgba(30, 63, 102, 0.08);
  --shadow-card: 0 8px 40px rgba(30, 63, 102, 0.1);
  --shadow-elevated: 0 16px 60px rgba(30, 63, 102, 0.15);
  --shadow-glow-amber: 0 4px 30px rgba(212, 143, 56, 0.35);

  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--areia-alabastro);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--safira-noturno);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracota-especiada);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--terracota-especiada);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
  max-width: 600px;
  line-height: 1.6;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Header / Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.header.scrolled {
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(30, 63, 102, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  position: relative;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-smooth);
}

.header.scrolled .logo-text {
  color: var(--safira-noturno);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.header.scrolled .nav-links a {
  color: var(--text-body);
}

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

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

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

.header.scrolled .nav-links a:hover {
  color: var(--safira-noturno);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--ambar-dourado);
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-glow-amber);
}

.nav-cta:hover {
  background: #c07e2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(212, 143, 56, 0.45);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.header.scrolled .menu-toggle span {
  background: var(--safira-noturno);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 63, 102, 0.82) 0%,
    rgba(30, 63, 102, 0.55) 40%,
    rgba(44, 94, 67, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: var(--space-3xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--ambar-dourado);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero h1 .accent {
  color: var(--ambar-dourado);
  font-style: italic;
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 580px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--ambar-dourado);
  color: var(--white);
  box-shadow: var(--shadow-glow-amber);
}

.btn-primary:hover {
  background: #c07e2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 143, 56, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--safira-noturno);
  color: var(--white);
}

.btn-secondary:hover {
  background: #163252;
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ambar-dourado);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--ambar-dourado);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ── Section Spacing ── */
.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  margin: var(--space-sm) auto 0;
}

/* ── About / Intro Section ── */
.about-section {
  background: var(--areia-alabastro);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--terracota-especiada);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  padding-left: var(--space-lg);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--text-body);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(44, 94, 67, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-jade);
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--safira-noturno);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.82rem !important;
  color: var(--text-light) !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ── Destinations Section ── */
.destinations-section {
  background: var(--areia-alabastro);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: destination;
}

.destination-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 63, 102, 0.9) 0%,
    rgba(30, 63, 102, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  transition: all var(--transition-smooth);
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 63, 102, 0.95) 0%,
    rgba(30, 63, 102, 0.4) 60%,
    rgba(30, 63, 102, 0.1) 100%
  );
}

.destination-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.destination-tag.cultural {
  background: rgba(184, 93, 25, 0.25);
  color: var(--ambar-dourado);
  border: 1px solid rgba(184, 93, 25, 0.4);
}

.destination-tag.nature {
  background: rgba(44, 94, 67, 0.25);
  color: #6DC99A;
  border: 1px solid rgba(44, 94, 67, 0.4);
}

.destination-tag.spiritual {
  background: rgba(30, 63, 102, 0.3);
  color: #7EB3E0;
  border: 1px solid rgba(30, 63, 102, 0.5);
}

.destination-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.destination-card.featured h3 {
  font-size: 2rem;
}

.destination-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.destination-info span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.destination-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ambar-dourado);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.destination-card:hover .destination-cta {
  opacity: 1;
  transform: translateY(0);
}

.destination-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.destination-cta:hover svg {
  transform: translateX(4px);
}

/* ── Experiences / Benefits Section ── */
.experiences-section {
  background: var(--safira-noturno);
  position: relative;
  overflow: hidden;
}

.experiences-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 94, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.experiences-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 93, 25, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.experiences-section .section-label {
  color: var(--ambar-dourado);
}

.experiences-section .section-label::before {
  background: var(--ambar-dourado);
}

.experiences-section h2 {
  color: var(--white);
}

.experiences-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.experience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota-especiada), var(--ambar-dourado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.experience-card:hover::before {
  transform: scaleX(1);
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.experience-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 143, 56, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--ambar-dourado);
  transition: all var(--transition-smooth);
}

.experience-card:hover .experience-icon {
  background: rgba(212, 143, 56, 0.2);
  transform: scale(1.05);
}

.experience-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Testimonials Section ── */
.testimonials-section {
  background: var(--areia-alabastro);
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--ambar-dourado);
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--safira-noturno);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--terracota-especiada);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--safira-noturno), var(--verde-jade));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--safira-noturno);
}

.testimonial-author-info p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.testimonials-nav button {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid var(--safira-noturno);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonials-nav button.active {
  background: var(--safira-noturno);
  width: 32px;
  border-radius: 6px;
}

/* ── Trust / Guarantee Section ── */
.trust-section {
  background: var(--safira-noturno);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(44, 94, 67, 0.15) 0%, transparent 60%);
}

.trust-section h2 {
  color: var(--white);
}

.trust-section .section-label {
  color: var(--ambar-dourado);
}

.trust-section .section-label::before {
  background: var(--ambar-dourado);
}

.trust-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: rgba(212, 143, 56, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--ambar-dourado);
}

.trust-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── CTA / Contact Section ── */
.cta-section {
  background: var(--areia-alabastro);
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, var(--safira-noturno) 0%, #162f4e 50%, var(--verde-jade) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(212, 143, 56, 0.15) 0%, transparent 60%);
}

.cta-card h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-card .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form input:focus {
  border-color: var(--ambar-dourado);
  background: rgba(255, 255, 255, 0.15);
}

.cta-form .btn-primary {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.cta-benefit svg {
  width: 16px;
  height: 16px;
  color: var(--ambar-dourado);
}

/* ── Itinerary Highlights Section ── */
.itineraries-section {
  background: var(--areia-alabastro);
}

.itinerary-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.itinerary-tab {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(30, 63, 102, 0.15);
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.itinerary-tab:hover {
  border-color: var(--safira-noturno);
  color: var(--safira-noturno);
}

.itinerary-tab.active {
  background: var(--safira-noturno);
  color: var(--white);
  border-color: var(--safira-noturno);
}

.itinerary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.itinerary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(30, 63, 102, 0.06);
}

.itinerary-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.itinerary-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.itinerary-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.itinerary-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(30, 63, 102, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
}

.itinerary-card-body {
  padding: var(--space-md);
}

.itinerary-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.itinerary-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.itinerary-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.itinerary-highlight {
  padding: 0.25rem 0.65rem;
  background: rgba(44, 94, 67, 0.08);
  color: var(--verde-jade);
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.itinerary-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(30, 63, 102, 0.06);
}

.itinerary-price {
  display: flex;
  flex-direction: column;
}

.itinerary-price .from {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.itinerary-price .amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--safira-noturno);
}

.itinerary-card .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
}

/* ── Footer ── */
.footer {
  background: var(--safira-noturno);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: var(--space-md);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--ambar-dourado);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--ambar-dourado);
  padding-left: 4px;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition-fast);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter input:focus {
  border-color: var(--ambar-dourado);
}

.footer-newsletter .btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--ambar-dourado);
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ── Counter Animation ── */
.counter {
  display: inline-block;
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card.featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .itinerary-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--safira-noturno);
    flex-direction: column;
    padding: 6rem var(--space-lg) var(--space-lg);
    gap: 1.5rem;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-content {
    padding-left: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.featured {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-cards {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input {
    width: 100%;
  }

  .cta-benefits {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .itinerary-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--safira-noturno);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.preloader-logo .accent {
  color: var(--ambar-dourado);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--ambar-dourado);
  border-radius: 2px;
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ── Mobile Overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── WhatsApp Contact Section ── */
.whatsapp-contact-section {
  background: var(--areia-alabastro);
}

.whatsapp-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.whatsapp-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(30, 63, 102, 0.06);
}

.whatsapp-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(30, 63, 102, 0.08);
}

.whatsapp-form-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
}

.whatsapp-form-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-form-header h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--safira-noturno);
  margin-bottom: 0.15rem;
}

.whatsapp-form-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--safira-noturno);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: var(--areia-alabastro);
  border: 1.5px solid rgba(30, 63, 102, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ambar-dourado);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 143, 56, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Travelers Selector */
.travelers-selector {
  display: flex;
  gap: 0.5rem;
}

.traveler-option {
  flex: 1;
  padding: 0.65rem 0.75rem;
  background: var(--areia-alabastro);
  border: 1.5px solid rgba(30, 63, 102, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.traveler-option:hover {
  border-color: var(--safira-noturno);
  color: var(--safira-noturno);
}

.traveler-option.active {
  background: var(--safira-noturno);
  border-color: var(--safira-noturno);
  color: var(--white);
}

/* WhatsApp Submit Button */
.btn-whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  margin-top: 0.5rem;
  width: 100%;
}

.btn-whatsapp-submit:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-submit:active {
  transform: translateY(-1px);
}

/* WhatsApp Info Card */
.whatsapp-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.whatsapp-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 63, 102, 0.06);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.whatsapp-info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.whatsapp-info-icon {
  font-size: 1.5rem;
  min-width: 32px;
  text-align: center;
  line-height: 1.4;
}

.whatsapp-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--safira-noturno);
  margin-bottom: 0.2rem;
}

.whatsapp-info-item p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* WhatsApp Direct Link */
.whatsapp-direct-link {
  margin-top: var(--space-sm);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(37, 211, 102, 0.02) 100%);
  border: 1px dashed rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
}

.whatsapp-direct-link > p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-direct:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

/* Responsive: WhatsApp Section */
@media (max-width: 768px) {
  .whatsapp-contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .travelers-selector {
    flex-wrap: wrap;
  }

  .traveler-option {
    flex: 1 1 calc(50% - 0.25rem);
  }
}

/* ── Lead Capture / Newsletter Section ── */
.lead-section {
  background: var(--safira-noturno);
  position: relative;
  overflow: hidden;
}

.lead-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lead-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 63, 102, 0.95) 0%, rgba(44, 94, 67, 0.3) 50%, rgba(184, 93, 25, 0.15) 100%);
  z-index: 0;
}

.lead-card-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 143, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.lead-card-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(44, 94, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.lead-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-3xl) var(--space-xl);
  align-items: center;
}

.lead-text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.lead-text h2 em {
  color: var(--ambar-dourado);
  font-style: italic;
}

.lead-text > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.lead-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.lead-benefit-item svg {
  color: var(--ambar-dourado);
  min-width: 18px;
}

/* Lead Form Card */
.lead-form-wrapper {
  position: relative;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.lead-form-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  background: rgba(212, 143, 56, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--safira-noturno);
  margin-bottom: 0.25rem;
}

.lead-form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.lead-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lead-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--safira-noturno);
  letter-spacing: 0.02em;
}

.lead-form-group input {
  padding: 0.8rem 1rem;
  background: var(--areia-alabastro);
  border: 1.5px solid rgba(30, 63, 102, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.lead-form-group input::placeholder {
  color: var(--text-light);
}

.lead-form-group input:focus {
  border-color: var(--ambar-dourado);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 143, 56, 0.1);
}

/* Interest Chips */
.lead-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.interest-chip {
  cursor: pointer;
  user-select: none;
}

.interest-chip input[type="checkbox"] {
  display: none;
}

.interest-chip span {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: var(--areia-alabastro);
  border: 1.5px solid rgba(30, 63, 102, 0.1);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.interest-chip:hover span {
  border-color: var(--safira-noturno);
  color: var(--safira-noturno);
}

.interest-chip input[type="checkbox"]:checked + span {
  background: var(--safira-noturno);
  border-color: var(--safira-noturno);
  color: var(--white);
}

/* Lead Submit Button */
.btn-lead-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: var(--ambar-dourado);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-glow-amber);
  margin-top: 0.5rem;
}

.btn-lead-submit:hover {
  background: #c07e2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 143, 56, 0.5);
}

.btn-lead-submit:active {
  transform: translateY(-1px);
}

/* Privacy Text */
.lead-form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  text-align: center;
}

.lead-form-privacy svg {
  min-width: 14px;
  color: var(--verde-jade);
}

/* Success State */
.lead-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-elevated);
  animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lead-success-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  animation: successBounce 0.6s ease-out 0.3s both;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.lead-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--verde-jade);
  margin-bottom: 0.5rem;
}

.lead-success p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.lead-success p span {
  font-weight: 700;
  color: var(--safira-noturno);
}

.lead-success-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(44, 94, 67, 0.08);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--verde-jade);
}

.lead-success-check svg {
  color: var(--verde-jade);
}

/* Responsive: Lead Section */
@media (max-width: 768px) {
  .lead-card-content {
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-lg);
  }

  .lead-text {
    text-align: center;
  }

  .lead-benefits-list {
    align-items: center;
  }

  .lead-interests {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════ */
/* HERO INLINE FORM                           */
/* ═══════════════════════════════════════════ */
.hero-form {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 460px;
}

.hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-form-group input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.hero-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form-group input:focus {
  border-color: var(--ambar-dourado);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(212, 143, 56, 0.15);
}

.hero-whatsapp-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  user-select: none;
  padding: 0.25rem 0;
}

.hero-whatsapp-toggle input[type="checkbox"] {
  display: none;
}

.toggle-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hero-whatsapp-toggle input:checked + .toggle-check {
  background: var(--ambar-dourado);
  border-color: var(--ambar-dourado);
}

.hero-whatsapp-toggle input:checked + .toggle-check::after {
  content: '✓';
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-phone-group {
  animation: fadeSlideDown 0.3s ease-out;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.phone-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.country-code-select {
  width: 110px;
  min-width: 110px;
  padding: 0.9rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.country-code-select:focus {
  border-color: var(--ambar-dourado);
  background-color: rgba(255, 255, 255, 0.15);
}

.country-code-select option {
  background: var(--safira-noturno);
  color: var(--white);
  padding: 0.5rem;
}

.phone-input-row input[type="tel"] {
  flex: 1;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.phone-input-row input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.phone-input-row input[type="tel"]:focus {
  border-color: var(--ambar-dourado);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(212, 143, 56, 0.15);
}

.hero-submit {
  max-width: 100%;
}

.hero-form-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.5;
}

.hero-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-md);
  text-align: center;
  line-height: 1.5;
}

.hero-success {
  text-align: center;
  animation: successFadeIn 0.5s ease-out;
  padding: var(--space-lg) 0;
}


/* ═══════════════════════════════════════════ */
/* DEPTH SECTION                              */
/* ═══════════════════════════════════════════ */
.depth-section {
  background: var(--areia-alabastro);
}

.depth-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.depth-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--safira-noturno);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.depth-text > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.depth-quote {
  background: var(--white);
  border-left: 4px solid var(--ambar-dourado);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-soft);
}

.depth-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--safira-noturno);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.depth-quote cite {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
}

.depth-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

@media (max-width: 768px) {
  .depth-content {
    grid-template-columns: 1fr;
  }
  .depth-image {
    order: -1;
    max-height: 300px;
  }
}


/* ═══════════════════════════════════════════ */
/* PILLAR GRID (O que você vai vivenciar)     */
/* ═══════════════════════════════════════════ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(30, 63, 102, 0.06);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.pillar-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pillar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.pillar-card-body {
  padding: var(--space-md);
}

.pillar-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--safira-noturno);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pillar-card-body p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════ */
/* CONDUCTOR SECTION (Quem conduz)            */
/* ═══════════════════════════════════════════ */
.conductor-section {
  background: var(--safira-noturno);
}

.conductor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.conductor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.conductor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.conductor-content .section-label {
  color: var(--ambar-dourado);
}

.conductor-bio {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .conductor-grid {
    grid-template-columns: 1fr;
  }
  .conductor-image {
    max-width: 320px;
    margin: 0 auto;
  }
  .conductor-content {
    text-align: center;
  }
}


/* ═══════════════════════════════════════════ */
/* SIMPLE TESTIMONIALS                        */
/* ═══════════════════════════════════════════ */
.testimonial-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-simple-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--ambar-dourado);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
  transition: all var(--transition-fast);
}

.testimonial-simple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-simple-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--safira-noturno);
  line-height: 1.6;
}

.testimonial-simple-card cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-simple-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════ */
/* FAQ ACCORDION                              */
/* ═══════════════════════════════════════════ */
.faq-section {
  background: var(--areia-alabastro);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 63, 102, 0.06);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.3rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--safira-noturno);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question svg {
  min-width: 20px;
  color: var(--ambar-dourado);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.3rem 1.15rem;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
}
