:root {
  --green-dark: #1a3c2e;
  --green-mid: #2d5a3d;
  --green-accent: #3d7a52;
  --green-light: #5a9e6f;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --bg-light: #f8f6f2;
  --shadow: 0 4px 24px rgba(26, 60, 46, 0.10);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}


.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.nav-cta:hover {
  background: #e0bc60;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  border-radius: 2px;
}

/* ── MENU MOBILE ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a3d34;
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  z-index: 998;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
  font-weight: 500;
}

.mobile-menu ul li a:hover {
  background: rgba(201,168,76,0.15);
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: #c9a84c;
  color: #1a3d34;
  font-weight: 600;
}

.mobile-menu .mobile-cta:hover {
  background: #b8964a;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 68px 5% 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2419 0%, #1a3c2e 40%, #2d5a3d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/img/imagem-alta.png');
  background-size: cover;
  background-position: center;
  opacity: 0.90;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(14, 36, 25, 0.92) 10%, rgba(14, 36, 25, 0.2) 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}

.btn-primary:hover {
  background: #e0bc60;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all .25s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px; 
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}

.stat-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

/* ── SEARCH BAR ── */
.search-section {
  background: var(--white);
  padding: 0 5%;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.search-bar {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(26, 60, 46, 0.14);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 60, 46, 0.1);
  transform: translateY(-30px);
  align-items: stretch;
}

.search-field {
  flex: 1;
  padding: 20px 24px;
  border: none;
  border-right: 1px solid #eee;
  cursor: pointer;
  transition: background .2s;
}

.search-field:last-child {
  padding: 0;
  border-right: none;
  cursor: default;
  flex: 0 0 auto;
  /* Não cresce, usa apenas o espaço necessário */
  max-width: 200px;
  /* Limita a largura máxima */
}

.search-field:last-child label {
  margin-bottom: 8px;
}

.search-field:hover {
  background: var(--bg-light);
}

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.search-field select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.search-btn {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 0 32px;
  /* Padding horizontal */
  border-radius: 0;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  min-width: 180px;
  /* Largura mínima */
  align-self: stretch;
  min-height: 100%;
}

.search-btn:hover {
  background: var(--green-accent);
}

/* OVERLAY */
#contactCard {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(26, 60, 46, 0.75);
  backdrop-filter: blur(4px);

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* BOX */
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
  max-width: 420px;

  box-shadow: var(--shadow);
  position: relative;

  animation: fadeInScale 0.3s ease;
}

/* ANIMAÇÃO */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* TÍTULO */
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.modal-box p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* INPUTS */
.modal-box input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;

  border: 1px solid #e5e5e5;
  border-radius: 10px;

  font-size: 14px;
  font-family: 'DM Sans', sans-serif;

  transition: all 0.2s ease;
}

.modal-box input:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 2px rgba(61, 122, 82, 0.15);
}

/* BOTÃO */
.modal-box .btn-submit {
  width: 100%;
  padding: 14px;

  background: var(--green-dark);
  color: var(--white);

  border: none;
  border-radius: 10px;

  font-weight: 600;
  font-size: 15px;

  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-box button:hover {
  background: var(--green-accent);
}

/* BOTÃO FECHAR */
.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;

  background: transparent;
  border: none;

  font-size: 18px;
  color: var(--text-light);

  cursor: pointer;

  width: auto;
  padding: 0;
}

.close-btn:hover {
  color: var(--green-dark);
}

#successMessage {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #22c55e;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 9999;
}

/* ── SECTIONS ── */
section {
  padding: 80px 5%;
}

.section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

/* ── DESTINATIONS ── */
.destinations {
  background: var(--bg-light);
}

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

.dest-card {
  position: relative;
  background: white;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 60, 46, 0.16);
}

.dest-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  border-radius: var(--radius) var(--radius) 0 0;
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.04);
}

.dest-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  z-index: 10;
  overflow: visible;
}

.dest-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.dest-card-body {
  padding: 32px 20px 20px;
}

.dest-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 8px;
}

.dest-card-body h3 {
  font-size: 1.18rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.dest-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.dest-card-footer {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
}

.dest-price span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.dest-link {
  font-size: 0.82rem;
  color: var(--green-accent);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.dest-link:hover {
  gap: 8px;
}

.center-btn {
  text-align: center;
  margin-top: 44px;
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pkg-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.pkg-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.pkg-card:hover img {
  transform: scale(1.05);
}

.pkg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 36, 25, 0.92) 0%, rgba(14, 36, 25, 0.1) 60%);
}

.pkg-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.pkg-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pkg-card-body h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pkg-card-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── GALLERY ── */

.gallery {
  background: var(--green-dark);
}

.gallery .section-title,
.gallery .section-label {
  color: var(--white);
}

.gallery .section-label {
  color: var(--gold);
}

.gallery .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

/* ITEM */

.gallery-item {
  perspective: 1200px;
  position: relative;
  border-radius: 16px;
}

/* CARD */

.gallery-card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform .8s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}

/* FLIP DESKTOP */

.gallery-item:hover .gallery-card {
  transform: rotateY(180deg);
}

/* FLIP MOBILE */

.gallery-item.flipped .gallery-card {
  transform: rotateY(180deg);
}

/* FACES */

.gallery-front,
.gallery-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}

/* FRENTE */

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

/* OVERLAY */

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.1)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity .35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 38px;
  height: 38px;
  fill: white;
}

/* VERSO */

.gallery-back {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      #1a3c2e,
      #244f3d
    );

  color: white;

  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  gap: 10px;

  transform: rotateY(180deg);

  overflow: hidden;
}

.gallery-back h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--gold);
}

.gallery-back p {
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255,255,255,.78);

  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* TAMANHOS */

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  height: 420px;
}

.gallery-item:not(:first-child) {
  height: 200px;
}

.destination-tag{
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .8rem;
}


/* ── CURSOS INTERNACIONAIS ── */
.cursos { background: var(--white); }

.cursos-intro {
  max-width: 700px;
  margin: -24px auto 52px;
  text-align: center;
  margin-top:30px;
}
.cursos-intro p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.curso-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(26,60,46,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.curso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,60,46,0.10);
  background: white;
}

.curso-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.curso-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(26,60,46,0.10);
  flex-shrink: 0;
}
.curso-cidade {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
}
.curso-pais {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.curso-escolas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.curso-escola-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(26,60,46,0.08);
  transition: all .2s;
  font-weight: 500;
}
.curso-escola-item svg {
  color: var(--green-accent);
  flex-shrink: 0;
}
.curso-escola-item:hover {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}
.curso-escola-item:hover svg {
  color: var(--gold);
}

.curso-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color .2s;
  align-self: flex-start;
}
.curso-cta:hover { color: var(--green-dark); }

/* Banner inferior */
.cursos-banner {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cursos-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cursos-banner-text strong {
  color: white;
  font-size: 1.05rem;
}
.cursos-banner-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cursos-vermais-wrap {
  display: none;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .cursos-vermais-wrap {
    display: block;
  }
}

.cursos-vermais-btn {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.cursos-vermais-btn:hover {
  background: var(--green-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .cursos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cursos-grid { grid-template-columns: 1fr; }
  .cursos-banner { flex-direction: column; text-align: center; }
  .cursos-banner a { width: 100%; text-align: center; }
  .curso-card:nth-child(n+3) {
    display: none;
  }
  .curso-card.visivel {
    display: flex;
  }
}



/* ── QUOTE FORM ── */
.quote-section {
  background: var(--bg-light);
}

.quote-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.quote-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  width: 40px;
  height: 40px;
  background: rgba(61, 122, 82, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--green-accent);
}

.perk-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.perk-text span {
  font-size: 0.83rem;
  color: var(--text-light);
}

.quote-form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.1);
  background: white;
}

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

.form-submit {
  width: 100%;
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 60, 46, 0.25);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: white;
}

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

.testi-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(26, 60, 46, 0.07);
  transition: box-shadow .3s;
}

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

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars span {
  color: var(--gold);
  font-size: 1rem;
}

.testi-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.testi-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.testi-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── MAP ── */
.map-section {
  background: var(--bg-light);
  padding-bottom: 10px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 460px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--green-accent);
  flex-shrink: 0;
}

.map-info-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.map-info-item strong {
  color: var(--green-dark);
}

/* ── INSTAGRAM ── */
.instagram {
  background: white;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 46, 0.6);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.insta-handle {
  text-align: center;
  margin-top: 24px;
}

.insta-handle a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.insta-handle a:hover {
  color: var(--green-accent);
}

/* ── BLOG ── */
.blog {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.08rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.blog-meta a {
  color: var(--green-accent);
  text-decoration: none;
  font-weight: 600;
}

/* ── FEATURES ── */
.features {
  background: white;
}

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

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(61, 122, 82, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green-accent);
}

.feature-item h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.section-sub {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--green-dark);
  padding: 72px 5%;
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.newsletter-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.newsletter-icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
}

.newsletter-text h2 {
  font-size: 1.7rem;
  color: white;
  margin-bottom: 6px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

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

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: all .2s;
}

.newsletter-form button:hover {
  background: #e0bc60;
}

/* ── FOOTER ── */
footer {
  background: #0e1e17;
  padding: 64px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s;
}

.social-btn:hover {
  background: var(--green-accent);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.footer-col h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-newsletter h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 10px 16px;
  border-radius: 10px 0 0 10px;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

.footer-newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 10px 16px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-form button svg {
  width: 16px;
  height: 16px;
  fill: var(--green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 300px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(14, 36, 25, 0.92) 25%, rgba(14, 36, 25, 0.2) 120%);
  }

  .search-bar {
    flex-direction: column;
    transform: translateY(-20px);
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
  }

  .quote-container {
    grid-template-columns: 1fr;
  }

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

  .newsletter-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-item:not(:first-child) {
    height: 240px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 220px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  


  @media (max-width: 480px) {
  .footer-grid {
    gap: 32px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-col h5,
  .footer-newsletter h5 {
    font-size: 16px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-social {
    gap: 12px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form input {
    border-radius: 8px;
    border-right: 1px solid #ddd;
  }

  .footer-newsletter-form button {
    border-radius: 8px;
    padding: 14px;
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }
  }

  /* DESTINATIONS SECTION */
  .destinations-swiper {
    padding: 20px 0 56px !important;
    margin: 0 !important;
  }

  .destinations-swiper .swiper-wrapper {
    display: flex !important;
  }

  /* FORÇA UM ÚNICO CARD VISÍVEL */
  .destinations-swiper .swiper-slide {
    width: calc(100vw - 64px) !important;
    /* Largura da viewport menos padding */
    min-width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    margin: 0 32px !important;
    /* Margem lateral de 32px */
    flex-shrink: 0 !important;
  }

  /* Remove grid do card se existir */
  .destinations-swiper .swiper-slide .destination-card {
    display: block !important;
  }

  /* Esconde navegação */
  .destinations-swiper .swiper-button-prev,
  .destinations-swiper .swiper-button-next {
    display: none !important;
  }

  /* Paginação */
  .destinations-swiper .swiper-pagination {
    bottom: 24px;
  }
}


.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.wpp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* Tooltip */
.wpp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  font-family: 'DM Sans', sans-serif;
}

.wpp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}

.wpp-float:hover .wpp-tooltip {
  opacity: 1;
}

/* Pulso de atenção */
@keyframes wpp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wpp-float {
  animation: wpp-pulse 2.5s infinite;
}