/* ===============================
   RESET GLOBAL + ANTI SCROLL LATERAL
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

p, li, a, h1, h2, h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f6;
  color: #2b2b2b;
  line-height: 1.6;
  font-size: 16px;
  padding-top: 80px; /* evita header fixo cobrir conteúdo */
}

/* ===============================
   CONTAINER
=============================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HEADER
=============================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(248, 248, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

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

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

.logo img {
  height: 48px;
}

.logo-name {
  line-height: 1.1;
}

.logo-name strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.logo-name small {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

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

.nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.6;
}

.btn-nav {
  padding: 10px 18px;
  border: 1px solid #2b2b2b;
}

/* ===============================
   HERO
=============================== */
.hero {
  min-height: 100svh;
  background: url('../img/hero.jpg') center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  max-width: 650px;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* ===============================
   BOTÕES
=============================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 13px;
}

.btn-primary:hover {
  background: #fff;
  color: #2b2b2b;
}

.btn-secondary {
  padding: 14px 26px;
  border: 1px solid #2b2b2b;
  color: #2b2b2b;
  font-size: 13px;
}

.btn-secondary:hover {
  background: #2b2b2b;
  color: #fff;
}

/* ===============================
   SEÇÕES
=============================== */
.section {
  padding: 120px 0;
  max-width: 100%;
  overflow-x: hidden;
}

.section-light {
  background-color: #fff;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 600px;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ===============================
   FEATURES
=============================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===============================
   CARROSSEL
=============================== */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===============================
   SETAS DO CARROSSEL – ESTILO BOUTIQUE
=============================== */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-nav button {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

@media (hover: hover) {
  .carousel-nav button:hover {
    background: #ffffff;
    transform: scale(1.08);
  }
}

.carousel-nav button:active {
  transform: scale(0.94);
}

@media (max-width: 768px) {
  .carousel-nav {
    padding: 0 12px;
  }

  .carousel-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ===============================
   PACOTES
=============================== */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 100%;
}

.package-card {
  background: #fff;
  padding: 40px;
  border: 1px solid #e5e5e5;
}

/* ===============================
   RESPONSIVO MOBILE
=============================== */
@media (max-width: 768px) {
  .nav { display: none; }

  body {
    font-size: 15px;
  }

  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

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

  .section {
    padding: 80px 0;
  }

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

  .carousel-slide img {
    height: 300px;
  }
}

/* ===============================
   TABLET
=============================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .features,
  .packages,
  .experiences {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MENU HAMBÚRGUER MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #2b2b2b;
}

/* MENU MOBILE */
.menu-mobile {
  position: fixed;
  inset: 0;
  background: #f8f8f6;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-mobile a {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2b2b2b;
  text-decoration: none;
}

.menu-mobile .btn-mobile {
  margin-top: 20px;
  padding: 16px 32px;
  border: 1px solid #2b2b2b;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ATIVO */
.menu-mobile.active {
  opacity: 1;
  pointer-events: auto;
}

/* APARECE SÓ NO CELULAR */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }
}

/* ===============================
   FOOTER PROFISSIONAL
=============================== */

.footer {
  background: #1f1f1f;
  color: #fff;
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer a:hover {
  opacity: 1;
}

.footer-brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  @media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }
  @media (max-width: 768px) {
  .stars {
    font-size: 13px;
  }
}

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
}
/* ===============================
   SELETOR DE IDIOMA – BOUTIQUE
=============================== */
.lang-switch {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-switch button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.lang-switch img {
  width: 22px;
  height: 22px;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.lang-switch img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.hero-buttons {
  display: flex;
  gap: 48px; /* ← AUMENTA BEM O ESPAÇO */
  margin-top: 30px;
  flex-wrap: wrap;
}

/* base dos botões */
.btn {
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff !important; /* FORÇA TEXTO BRANCO */
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* WhatsApp */
.btn-outline {
  border: 1px solid #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: #000 !important;
}

/* Site – destaque premium */
.btn-solid {
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
/* texto auxiliar */
.btn-note {
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.85;
}
.stars {
 font-family: 'Playfair Display', serif;

  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 4px;
  color: #c9a24d; /* dourado boutique */
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.testimonial {
  max-width: 320px;
}

.stars {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 4px;
  color: #c9a24d;
}