/* Definições locais de @font-face (Zero requisições bloqueantes de terceiros) */
@font-face {
  font-family: 'Satoshi';
  src: url('Assets/fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Assets/fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Assets/fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Assets/fonts/satoshi-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary: #d97d27;
  --primary-hover: #c26b1d;
  --text-dark: #000000;
  --text-muted: #787878;
  --text-brown: #40250b;
  --bg-page: #f5f5f5;
  --bg-hero: #e6eee3;
  --bg-white: #ffffff;
  --border-light: #e6e6e6;
  --border-badge: rgba(64, 37, 11, 0.12);
  --shadow-sm: 0 4px 12px rgba(12, 12, 13, 0.06);
  --shadow-card: 0 8px 24px rgba(12, 12, 13, 0.08);
  --shadow-hero-img: 0 20px 40px -10px rgba(12, 12, 13, 0.25);
  --radius-full: 100px;
  --radius-card: 24px;
  --radius-hero-img: 48px;
  --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header-wrapper {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.navbar {
  width: 100%;
  max-width: 1104px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(12, 12, 13, 0.06);
  transition: box-shadow 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 20px rgba(12, 12, 13, 0.1);
}

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

.logo-icon {
  width: 24px;
  height: 24px;
}

.logo-text {
  height: 14px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-brown);
  padding: 8px 4px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-header {
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-header:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   SEÇÃO 1: HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--bg-hero);
  padding-top: 170px;
  padding-bottom: 300px;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-badge);
  margin-bottom: 24px;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.badge-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-brown);
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #333333;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(217, 125, 39, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 125, 39, 0.35);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 125, 39, 0.2);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background-color: #fafafa;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Imagem Destaque Hero (sobreposta) */
.hero-image-wrapper {
  max-width: 960px;
  margin: -240px auto 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-hero-img);
  box-shadow: var(--shadow-hero-img);
}

/* ==========================================================================
   SEÇÃO 2: PACOTES
   ========================================================================== */
.packages-section {
  padding: 100px 24px 120px 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.package-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(12, 12, 13, 0.12);
}

.card-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.package-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.card-header {
  text-align: left;
}

.card-destination {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.card-origin {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.card-dates {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.card-price-block {
  margin-top: -4px;
}

.price-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-card {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary);
  background: transparent;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
  text-align: center;
  margin-top: auto;
}

.btn-card:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 56px;
  }
  
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    top: 20px;
  }

  .navbar {
    padding: 12px 20px;
  }

  .nav-menu {
    display: none;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 180px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image-wrapper {
    margin-top: -140px;
  }

  .hero-image {
    height: 300px;
    border-radius: 28px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .packages-section {
    padding: 60px 20px 80px 20px;
  }
}
