@font-face {
  font-family: 'New Stencil tfb';
  src: url('New Stencil tfb.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Color Palette - Premium & Vibrant */
  --primary-color: #ff4500;
  /* Orange Red - Energetic */
  --primary-dark: #cc3700;
  --secondary-color: #2c3e50;
  /* Dark Blue Grey - Professional */
  --accent-color: #00d2d3;
  /* Cyan - Fresh */
  --text-color: #333333;
  --bg-color: #f4f4f9;
  --white: #ffffff;
  --dark-bg: #1a1a1a;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-notice {
  width: 100%;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 16px;
  text-align: center;
  font-size: 0.8rem;
}

.top-notice strong {
  color: var(--accent-color);
}

.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* Removed gap to reduce height */
  padding: 2px var(--spacing-lg);
  /* Significantly reduced top/bottom padding */
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.logo-img {
  height: 25px;
  /* Reduced from 30px */
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  /* Reduced spacing between links */
  margin-top: 0px;
  /* Minimal top margin */
}

.nav-links a {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 0.85rem;
  /* Slightly smaller font size */
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-cta {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 150px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 200px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  margin: 0 var(--spacing-sm);
  font-size: 1.2rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  z-index: 1100;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 200px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  margin: 0 var(--spacing-sm);
  font-size: 1.2rem;
}

/* Responsive */
.logo-img {
  height: 220px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .logo {
    flex-direction: column;
    gap: 5px;
  }

  .logo-img {
    height: 120px;
  }

  .logo-text {
    font-size: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
  }

  .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
  }

  /* Features Section */
  .features {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .features h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-color);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
  }

  .feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
  }

  .feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
  }

  /* Destinations Section */
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .destination-card {
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .destination-img {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
  }

  .btn-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .btn-link:hover {
    text-decoration: underline;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonial-card {
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #eee;
  }

  .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
  }

  .testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: #555;
  }

  .testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
  }

  /* Footer */
  footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .social-links a {
    margin: 0 var(--spacing-sm);
    font-size: 1.2rem;
  }

  /* Responsive */
  .logo-img {
    height: 220px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .nav-links a {
      font-size: 1rem;
    }

    .logo {
      flex-direction: column;
      gap: 5px;
    }

    .logo-img {
      height: 120px;
    }

    .logo-text {
      font-size: 1.8rem;
      color: #FFD700;
      font-family: 'New Stencil tfb', sans-serif;
      background: transparent;
      padding: 0;
      text-transform: uppercase;
      -webkit-text-stroke: 2px black;
      paint-order: stroke fill;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: var(--spacing-lg);
      text-align: center;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      font-family: var(--font-heading);
    }

    .stat-label {
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.9;
    }

    /* Features Section */
    .features {
      padding: var(--spacing-xl) var(--spacing-md);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .features h2 {
      font-size: 2.5rem;
      margin-bottom: var(--spacing-xl);
      color: var(--secondary-color);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-lg);
    }

    .feature-card {
      background: var(--white);
      padding: var(--spacing-lg);
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: var(--spacing-md);
    }

    .feature-card h3 {
      margin-bottom: var(--spacing-sm);
      color: var(--secondary-color);
    }

    /* Destinations Section */
    .destinations-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .destination-card {
      text-align: left;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destination-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .destination-img {
      width: 100%;
      height: 200px;
      background-color: #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-weight: 500;
    }

    .btn-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .btn-link:hover {
      text-decoration: underline;
    }

    /* Testimonials */
    .testimonials-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonial-card {
      text-align: left;
      background-color: #f9f9f9;
      border: 1px solid #eee;
    }

    .stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: var(--spacing-sm);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: var(--spacing-md);
      color: #555;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--secondary-color);
    }

    /* Footer */
    footer {
      background-color: var(--secondary-color);
      color: var(--white);
      padding: var(--spacing-xl) var(--spacing-md);
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
    }

    .social-links a {
      margin: 0 var(--spacing-sm);
      font-size: 1.2rem;
    }

    /* Responsive */
    .logo-img {
      height: 220px;
    }

    /* Mobile Intro (Hidden by default on desktop) */
    .mobile-intro {
      display: none;
      padding: 40px 20px;
      text-align: center;
      background-color: var(--white);
    }

    .mobile-intro h1 {
      font-size: 2rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .mobile-intro p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: var(--spacing-lg);
        text-align: center;
      }

      .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        font-family: var(--font-heading);
      }

      .stat-label {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.9;
      }

      /* Features Section */
      .features {
        padding: var(--spacing-xl) var(--spacing-md);
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }

      .features h2 {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-xl);
        color: var(--secondary-color);
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-lg);
      }

      .feature-card {
        background: var(--white);
        padding: var(--spacing-lg);
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-5px);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: var(--spacing-md);
      }

      .feature-card h3 {
        margin-bottom: var(--spacing-sm);
        color: var(--secondary-color);
      }

      /* Destinations Section */
      .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .destination-card {
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .destination-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .destination-img {
        width: 100%;
        height: 200px;
        background-color: #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        font-weight: 500;
      }

      .btn-link {
        display: inline-block;
        margin-top: 10px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
      }

      .btn-link:hover {
        text-decoration: underline;
      }

      /* Testimonials */
      .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .testimonial-card {
        text-align: left;
        background-color: #f9f9f9;
        border: 1px solid #eee;
      }

      .stars {
        color: #ffc107;
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: var(--spacing-md);
        color: #555;
      }

      .testimonial-author {
        font-weight: 700;
        color: var(--secondary-color);
      }

      /* Footer */
      footer {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
      }

      .social-links a {
        margin: 0 var(--spacing-sm);
        font-size: 1.2rem;
      }

      /* Responsive */
      .logo-img {
        height: 220px;
      }

      /* Mobile Intro (Hidden by default on desktop) */
      .mobile-intro {
        display: none;
        padding: 40px 20px;
        text-align: center;
        background-color: var(--white);
      }

      .mobile-intro h1 {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
      }

      .mobile-intro p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
        }

        .nav-links a {
          font-size: 1rem;
        }

        .logo {
          flex-direction: column;
          gap: 5px;
        }

        .logo-img {
          height: 120px;
        }

        .logo-text {
          font-size: 1.8rem;
          color: #FFD700;
          font-family: 'New Stencil tfb', sans-serif;
          text-align: center;
          text-transform: uppercase;
          -webkit-text-stroke: 2px black;
          margin: 0 10px;
          paint-order: stroke fill;
        }

        /* Mobile Layout Adjustments */

        /* Show the text below the image on mobile */
        .mobile-intro {
          display: block;
        }

        .stats-container {
          flex-direction: column;
          gap: var(--spacing-md);
        }
      }

      /* Video Carousel Styles */
      .video-carousel-container {
        max-width: 1000px;
        margin: 0 auto 4rem;
        padding: 0 1rem;
      }

      .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        aspect-ratio: 16/9;
      }

      .swiper-slide iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      .swiper-button-next,
      .swiper-button-prev {
        color: var(--white);
        background: rgba(0, 0, 0, 0.5);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        z-index: 50;
        cursor: pointer;
      }

      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 1.2rem;
        font-weight: bold;
      }

      .swiper-pagination-bullet {
        background: var(--white);
        opacity: 0.7;
      }


      .swiper-pagination-bullet-active {
        background: var(--primary-color);
        opacity: 1;
      }

/* Inspiration Video Section - Larger Display */
.video-carousel-container.large {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.inspirationSwiper .swiper-slide {
    aspect-ratio: 16/9;
    min-height: 1000px;
    max-width: 100%;
}

.inspirationSwiper .swiper-slide iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .inspirationSwiper .swiper-slide {
        min-height: 500px;
    }
}

/* Hero Desktop Fix - Evita distorção */
@media (min-width: 769px) {
  .hero {
    height: 70vh !important;
    max-height: 700px !important;
    background-position: center top !important;
  }
}


/* =========================================
   MENU DESKTOP - VERSÃO FINAL
   ========================================= */
@media (min-width: 769px) {
  /* Ajuste do Header */
  header {
    padding: 15px 0 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  }
  
  /* Container da Navbar */
  .navbar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 5% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    height: auto !important;
  }
  
  /* Logo */
  .logo {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
  }
  
  .logo-img {
    height: 90px !important; /* Tamanho aumentado */
    width: auto !important;
    display: block !important;
  }
  
  /* Links de Navegação */
  .nav-links {
    display: flex !important;
    flex: 1 !important;
    justify-content: flex-end !important; /* Alinhado à direita fica mais elegante */
    gap: 40px !important; /* Espaçamento generoso */
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  
  .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .nav-links a {
    font-family: 'Outfit', sans-serif !important; /* Fonte mais moderna */
    font-size: 1.25rem !important; /* Letra grande */
    font-weight: 700 !important; /* Negrito */
    color: #2c3e50 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 15px !important;
    position: relative !important;
    transition: color 0.3s ease !important;
  }
  
  /* Efeito Hover */
  .nav-links a:hover {
    color: #ff4500 !important;
    background: transparent !important;
    transform: none !important;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff4500;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
}
