*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

/* Prevent horizontal scroll on all devices */
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
:root {
  /* Brand palette */
  --sand:      #EBDDCD;   /* warm cream — light sections bg */
  --sand-dark: #DDD0BC;   /* slightly deeper sand */
  --navy:      #1B3A4B;   /* primary dark — text, dark sections */
  --navy-90:   rgba(27,58,75,.9);
  --navy-60:   rgba(27,58,75,.6);
  --navy-20:   rgba(27,58,75,.2);
  --teal:      #2D7366;   /* accent — CTAs, highlights */
  --teal-h:    #256058;   /* hover teal */
  --teal-light:#3d9c8c;   /* lighter teal for dark bg */

  /* Derived neutrals */
  --sand-text:  #4a3f35;  /* body text on sand bg */
  --sand-muted: #8a7968;  /* muted text on sand bg */

  --white: #fff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: auto; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  background: #2D7366;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(235,221,205,.1);
  transition: background .4s, border-color .4s;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 30px;
    /* ajuste conforme necessário */
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

#nav.light {
  background: rgba(235,221,205,.9);
  border-bottom-color: rgba(27,58,75,.12);
}
#nav.light .nav-logo { color: var(--navy); }
#nav.light .nav-links a { color: var(--navy-60); }
#nav.light .nav-links a:hover { color: var(--navy); }
#nav.light .nav-cta { background: var(--teal); color: #fff; }
#nav.light .nav-cta:hover { background: var(--teal-h); }

.nav-logo {
  font-size: .9rem; font-weight: 600; letter-spacing: -.01em;
  color: var(--sand); text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .75rem; color: rgba(235,221,205,.7); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
  font-size: .75rem; font-weight: 500;
  padding: 7px 16px; border-radius: 980px;
  background: var(--teal); color: #fff;
  text-decoration: none; transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--teal-h); transform: scale(1.02); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100svh; height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  overflow: visible; background: var(--navy);
  padding-bottom: 60px;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroReveal 1.8s cubic-bezier(.22,1,.36,1) forwards;
  filter: brightness(.45) saturate(.85);
}
@keyframes heroReveal {
  0%   { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.08); opacity: 1; }
}
/* Tinted overlay — navy at bottom, sand hint at top */
.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(27,58,75,.3) 0%,
      rgba(27,58,75,.0) 35%,
      rgba(27,58,75,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 58px 24px 0;
  animation: heroContent 1.4s cubic-bezier(.22,1,.36,1) .3s both;
}
@keyframes heroContent {
  0%   { opacity:0; transform: translateY(30px); }
  100% { opacity:1; transform: translateY(0); }
}
.hero-logo-wrap {
  margin-bottom: 24px;
}
.hero-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}

.hero-logo-wrap {
  margin-bottom: 24px;
}
.hero-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}

.hero-eyebrow {
  font-size: 1.25rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2.8rem,7vw,6rem);
  font-weight: 200; letter-spacing: -.03em; line-height: 1.05;
  color: var(--sand); margin-bottom: 18px; margin-top: 200px;
}
.hero-title strong { font-weight: 600; color: var(--white); }
.hero-sub {
  font-size: clamp(1rem,2vw,1.3rem);
  font-weight: 300; color: rgba(235,221,205,.7);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  font-size: .9rem; font-weight: 500;
  padding: 13px 26px; border-radius: 980px;
  background: var(--teal); color: #fff;
  text-decoration: none; transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-h); transform: scale(1.02); }

.btn-secondary {
  font-size: .9rem; font-weight: 500;
  padding: 13px 26px; border-radius: 980px;
  background: rgba(235,221,205,.15); color: var(--sand);
  text-decoration: none; backdrop-filter: blur(10px);
  border: 1px solid rgba(235,221,205,.25);
  transition: background .2s, transform .15s; display: inline-block;
}
.btn-secondary:hover { background: rgba(235,221,205,.25); transform: scale(1.02); }

.btn-dark {
  font-size: .9rem; font-weight: 500;
  padding: 13px 26px; border-radius: 980px;
  background: var(--navy); color: var(--sand);
  text-decoration: none; transition: background .2s, transform .15s; display: inline-block;
}
.btn-dark:hover { background: #24506a; transform: scale(1.02); }

.btn-outline-teal {
  font-size: .9rem; font-weight: 500;
  padding: 13px 26px; border-radius: 980px;
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
  text-decoration: none; transition: all .2s; display: inline-block;
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; transform: scale(1.02); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroContent 1s ease 1.5s both;
}
.hero-scroll-hint span { font-size: .65rem; color: rgba(235,221,205,.4); letter-spacing: .12em; text-transform: uppercase; }
.scroll-chevron {
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(235,221,205,.35);
  border-bottom: 1.5px solid rgba(235,221,205,.35);
  transform: rotate(45deg);
  animation: chevBounce 2s ease-in-out 2s infinite;
}
@keyframes chevBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--sand); overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--sand-dark); border-bottom: 1px solid var(--sand-dark);
}
/* Track width is set by JS; no CSS animation — rAF drives it */
.ticker-track {
  display: flex; gap: 0;
  white-space: nowrap; will-change: transform;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 0 40px; font-size: .8rem; color: var(--sand-muted); font-weight: 400;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ─── STATEMENT — sand bg, navy text ─── */
#statement { background: var(--sand); }
.section-center { text-align: center; padding: 100px 24px; max-width: 980px; margin: 0 auto; }
.section-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 200; letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 20px;
}
.section-title strong { font-weight: 600; }
.section-body {
  font-size: clamp(.95rem,1.5vw,1.15rem);
  line-height: 1.7; max-width: 580px; margin: 0 auto;
}

/* On sand bg */
#statement .section-title { color: var(--navy); }
#statement .section-title strong { color: var(--teal); }
#statement .section-body { color: var(--sand-muted); }

/* ─── DESTINATIONS PIN — navy dark bg ─── */
#destinations-pin { background: var(--navy); }
.pin-wrap { position: relative; }
.pin-stage {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#destinations-pin .pin-stage { background: var(--navy); }

.dest-scene { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.dest-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity .7s ease; }
/* Navy-to-teal gradient overlay */
.dest-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(27,58,75,.85) 0%,
    rgba(27,58,75,.5) 55%,
    rgba(27,58,75,.1) 100%);
}
.dest-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.dest-counter {
  font-size: .7rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(235,221,205,.4); margin-bottom: 18px;
}
.dest-title-big {
  font-size: clamp(2.5rem,6vw,5.5rem);
  font-weight: 200; letter-spacing: -.03em; line-height: 1;
  margin-bottom: 20px; color: var(--sand);
  transition: opacity .5s, transform .5s;
}
.dest-title-big strong { font-weight: 600; color: var(--white); display: block; }
.dest-desc {
  font-size: 1rem; line-height: 1.7; color: rgba(235,221,205,.65);
  max-width: 400px; margin-bottom: 28px;
  transition: opacity .5s .05s, transform .5s .05s;
}
.dest-link {
  font-size: .9rem; font-weight: 500; color: var(--teal-light);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.dest-link:hover { gap: 12px; color: #5bbdac; }
.dest-link::after { content: '›'; font-size: 1.1rem; }

/* Pills with sand/teal palette */
.dest-pills { display: flex; flex-direction: column; gap: 12px; }
.dest-pill {
  padding: 16px 22px; border-radius: 16px;
  background: rgba(235,221,205,.05);
  border: 1px solid rgba(235,221,205,.12);
  cursor: pointer; transition: all .3s; backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 14px;
}
.dest-pill.active {
  background: rgba(45,115,102,.18);
  border-color: rgba(45,115,102,.5);
}
.dest-pill-flag { font-size: 1.4rem; flex-shrink: 0; }
.dest-pill-info { flex: 1; }
.dest-pill-name { font-size: .9rem; font-weight: 500; color: var(--sand); margin-bottom: 2px; }
.dest-pill-tag { font-size: .7rem; color: rgba(235,221,205,.45); }
.dest-pill-bar { width: 0; height: 2px; background: var(--teal-light); border-radius: 1px; transition: width 5s linear; margin-top: 6px; }
.dest-pill.active .dest-pill-bar { width: 100%; }

/* ─── FEATURES PIN — sand bg ─── */
#features-pin-wrap { background: var(--sand); }
#features-pin-wrap .pin-stage { background: var(--sand); }

.feat-scene {
  width: 100%; max-width: 1200px; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feat-step {
  padding: 28px 0;
  border-bottom: 1px solid rgba(27,58,75,.1);
  opacity: .3; transform: translateY(10px);
  transition: opacity .5s, transform .5s;
}
.feat-step:first-child { border-top: 1px solid rgba(27,58,75,.1); }
.feat-step.active { opacity: 1; transform: translateY(0); }
.feat-step-num {
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.feat-step-title { font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em; color: var(--navy); margin-bottom: 10px; }
.feat-step-body { font-size: .9rem; line-height: 1.65; color: var(--sand-muted); }
.feat-visual { border-radius: 24px; overflow: hidden; box-shadow: 0 40px 100px rgba(27,58,75,.2); aspect-ratio: 4/5; position: relative; }
.feat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.feat-img.active { opacity: 1; }

/* ─── GALLERY — navy bg ─── */
#gallery-section { background: var(--navy); padding: 100px 0; }
.gallery-header { text-align: center; padding: 0 24px 60px; }
.gallery-header .section-title { color: var(--sand); }
.gallery-header .section-title strong { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); filter: brightness(.8) saturate(.9); }
.gallery-cell:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
.gallery-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(27,58,75,.85), transparent);
  font-size: .85rem; font-weight: 500; color: var(--sand);
  transform: translateY(4px); opacity: 0; transition: all .4s;
}
.gallery-cell:hover .gallery-cell-label { transform: translateY(0); opacity: 1; }

/* ─── FAQ — sand bg ─── */
#faq { background: var(--sand); padding: 100px 0; }
.faq-inner {
  max-width: 780px; margin: 0 auto; padding: 0 24px;
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-title { color: var(--navy); }
.faq-header .section-title strong { color: var(--teal); }
.faq-header .section-body { color: var(--sand-muted); margin-top: 16px; }

/* Accordion item */
.faq-item {
  border-bottom: 1px solid var(--sand-dark);
  overflow: hidden;
}
.faq-item:first-of-type { border-top: 1px solid var(--sand-dark); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 0; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
  transition: color .2s;
}
.faq-question:hover .faq-q-text { color: var(--teal); }

.faq-q-text {
  font-size: 1.05rem; font-weight: 500;
  color: var(--navy); line-height: 1.4;
  transition: color .2s;
  letter-spacing: -.01em;
}
.faq-item.open .faq-q-text { color: var(--teal); }

/* The + / × icon */
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; border: 1.5px solid var(--navy-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; font-weight: 300;
  transition: background .3s, border-color .3s, transform .4s cubic-bezier(.22,1,.36,1);
  user-select: none;
}
.faq-item.open .faq-icon {
  background: var(--teal); border-color: var(--teal); color: #fff;
  transform: rotate(45deg);
}

/* Answer panel — height animated via JS max-height */
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,1,.36,1);
}
.faq-answer-inner {
  padding: 0 0 26px;
  font-size: .95rem; line-height: 1.75;
  color: var(--sand-muted);
}
.faq-answer-inner a { color: var(--teal); text-decoration: none; }
.faq-answer-inner a:hover { text-decoration: underline; }

/* CTA row below FAQ */
.faq-cta-row {
  margin-top: 56px; text-align: center;
  padding-top: 40px; border-top: 1px solid var(--sand-dark);
}
.faq-cta-row p {
  font-size: 1rem; color: var(--sand-muted); margin-bottom: 20px;
}

/* ─── STATS — teal bg ─── */
#stats-section {
  background: var(--teal); padding: 100px 24px; text-align: center;
}
.stats-eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(235,221,205,.7); margin-bottom: 14px; }
.stats-title { font-size: clamp(2rem,4vw,3rem); font-weight: 200; letter-spacing: -.03em; margin-bottom: 70px; color: var(--sand); }
.stats-title strong { font-weight: 600; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; max-width: 960px; margin: 0 auto; }
.stat-cell { padding: 40px 20px; border-right: 1px solid rgba(235,221,205,.2); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: clamp(2.5rem,5vw,4rem); font-weight: 200; letter-spacing: -.04em; color: var(--white); margin-bottom: 8px; }
.stat-num .unit { font-size: .5em; font-weight: 400; vertical-align: super; color: var(--sand); }
.stat-label { font-size: .8rem; color: rgba(235,221,205,.65); line-height: 1.4; }

/* ─── TESTIMONIALS — sand bg ─── */
#testimonials { background: var(--teal); padding: 100px 40px; overflow: hidden; box-sizing: border-box; width: 100%; }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.testi-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background .3s, border-color .3s, transform .3s;
  box-sizing: border-box;
  width: 100%;
}
.testi-card:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.testi-stars { color: var(--sand); font-size: .9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 28px; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; color: var(--sand);
  letter-spacing: 0;
}
.testi-name { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.testi-trip { font-size: .75rem; color: rgba(255,255,255,.6); }

@media (max-width: 1023px) {
  #testimonials { padding: 80px 24px; }
  .testi-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  #testimonials { padding: 60px 20px; box-sizing: border-box; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; width: 100%; }
  .testi-card { padding: 24px 18px; width: 100%; box-sizing: border-box; }
  .testi-text { font-size: .88rem; }
}

/* ─── CTA — navy bg ─── */
#cta-section {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--navy);
}
.cta-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.3) saturate(.7);
  transform: scale(1.06);
  animation: ctaBreathe 20s ease-in-out infinite alternate;
}
@keyframes ctaBreathe { 0%{transform:scale(1.06)} 100%{transform:scale(1.12)} }
/* Navy + teal gradient overlay */
.cta-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(27,58,75,.95) 0%, rgba(45,115,102,.6) 100%);
}
.cta-content { position: relative; z-index: 2; padding: 0 24px; max-width: 720px; }
.cta-eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; }
.cta-title { font-size: clamp(2.4rem,6vw,5rem); font-weight: 200; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 20px; color: var(--sand); }
.cta-title strong { font-weight: 600; color: var(--white); }
.cta-body { font-size: 1.1rem; color: rgba(235,221,205,.65); line-height: 1.6; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER — deep navy ─── */
footer {
  background: #0f2535;
  border-top: 1px solid rgba(235,221,205,.08);
  padding: 60px 40px 30px;
}
.footer-top {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(235,221,205,.08);
}
.footer-brand {
  flex: 0 0 220px;
}
.footer-brand p { font-size: .8rem; color: rgba(235,221,205,.4); line-height: 1.7; margin-top: 12px; max-width: 220px; }
.footer-logo { font-size: 1.1rem; font-weight: 600; color: var(--sand); }
.footer-col h4 { font-size: .75rem; font-weight: 600; color: var(--sand); margin-bottom: 16px; letter-spacing: .02em; opacity: .7; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .8rem; color: rgba(235,221,205,.38); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 900px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(235,221,205,.25);
}
.footer-bottom a { color: rgba(235,221,205,.25); text-decoration: none; }
.footer-bottom a:hover { color: var(--sand); }

/* ─── REVEALS ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1{transition-delay:.12s}.delay-2{transition-delay:.24s}.delay-3{transition-delay:.38s}

/* ─── HAMBURGER & MOBILE MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 9100;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--sand); border-radius: 2px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s ease, background .3s;
  transform-origin: center;
}
#nav.light .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9050;
  background: rgba(27,58,75,.98);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  width: 100%; max-width: 320px; padding: 0 24px;
}
.mobile-link {
  width: 100%; text-align: center;
  font-size: 1.1rem; font-weight: 400; letter-spacing: .04em;
  color: var(--sand); text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(235,221,205,.1);
  transition: color .2s;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1), color .2s;
}
.mobile-menu.open .mobile-link:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.14s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.20s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:.26s; }
.mobile-menu.open .btn-primary           { opacity:1; transform:translateY(0); transition-delay:.34s; }
.mobile-link:hover { color: var(--teal-light); }
.mobile-nav .btn-primary {
  width: 100%; opacity:0; transform:translateY(16px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1), background .2s;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — COMPLETO
   Breakpoints:
     xl  = 1280px+   → Desktop grande
     lg  = 1024–1279 → Notebook / laptop
     md  = 768–1023  → Tablet
     sm  = 480–767   → Mobile grande
     xs  = 0–479     → Mobile pequeno / iPhone SE
   ══════════════════════════════════════════════════════════ */

/* ── Infinity Hub badge ── */
.infihub-badge {
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; text-decoration: none;
  padding: 3px 10px 3px 8px; border-radius: 980px;
  background: linear-gradient(135deg, rgba(45,115,102,.25), rgba(45,115,102,.1));
  border: 1px solid rgba(45,115,102,.45); color: var(--teal-light);
  font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  vertical-align: middle; transition: border-color .3s, background .3s, transform .2s; overflow: hidden;
}
.infihub-badge:hover { background: linear-gradient(135deg, rgba(45,115,102,.4), rgba(45,115,102,.2)); border-color: var(--teal-light); transform: scale(1.04); }
.infihub-badge__glow {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 30%, rgba(61,156,140,.35) 50%, transparent 70%);
  background-size: 200% 100%; animation: infihub-shine 2.8s ease-in-out infinite; pointer-events: none;
}
@keyframes infihub-shine { 0%{ background-position: 200% center; } 60%,100%{ background-position: -50% center; } }
.infihub-badge__text { position: relative; }
.infihub-badge__logo { width: 16px; height: 16px; border-radius: 4px; object-fit: contain; flex-shrink: 0; }

/* ── LG: Notebook (max 1279px) ── */
@media (max-width: 1279px) {
  #nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .hero-content { padding-top: 120px; }
  .dest-content { max-width: 960px; gap: 40px; padding: 0 40px; }
  .dest-title-big { font-size: clamp(2rem,5vw,4rem); }
  .feat-scene { max-width: 960px; padding: 0 40px; gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { max-width: 100%; padding: 0 40px; }
  .stat-cell { padding: 32px 16px; }
  .stat-num { font-size: 2.8rem; }

  .faq-inner { max-width: 680px; }
  .footer-top { gap: 48px; }
  .section-center { max-width: 780px; }

  /* Widget */
  .hero-widget-wrap { padding: 0 20px; }
  #wrapper { padding: 18px 16px; overflow: visible; }
}

/* ── MD: Tablet (768px – 1023px) ── */
@media (max-width: 1023px) {
  /* Nav */
  #nav { padding: 0 24px; height: 52px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .7rem; }
  .nav-cta { padding: 6px 14px; font-size: .7rem; }

  /* Hero */
  #hero { min-height: 100svh; padding-bottom: 48px; }
  .hero-content { padding: 100px 32px 0; max-width: 100%; text-align: center; }
  .hero-title { font-size: clamp(2.2rem,6vw,3.6rem); }
  .hero-sub { font-size: .95rem; margin: 0 auto 28px; }
  .hero-scroll-hint { display: none; }

  /* Widget */
  .hero-widget-wrap { padding: 0 16px; margin-top: 28px; }
  #wrapper { padding: 16px 12px; border-radius: 14px; overflow: visible; }

  /* Sections */
  .section-center { padding: 80px 32px; }
  #gallery-section { padding: 80px 0; }
  .gallery-header { padding: 0 32px 48px; }
  #faq { padding: 80px 0; }
  .faq-inner { padding: 0 32px; max-width: 100%; }
  #testimonials { padding: 80px 24px; }
  #cta-section { padding: 80px 32px; min-height: 70vh; }

  /* Statement */
  #statement { padding: 64px 24px !important; }

  /* Destinations — unpin, stack */
  #destinations-pin { height: auto !important; }
  #destinations-pin .pin-stage { position: relative !important; height: 80vh !important; min-height: 520px; }
  .dest-content { grid-template-columns: 1fr; padding: 0 32px; gap: 28px; max-width: 100%; }
  .dest-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .dest-title-big { font-size: clamp(2rem,5vw,3rem); }
  .dest-desc { max-width: 100%; }

  /* Features — unpin, text only */
  #features-pin-wrap { height: auto !important; }
  #features-pin-wrap .pin-stage { position: relative !important; height: auto !important; padding: 80px 0; }
  .feat-scene { grid-template-columns: 1fr; padding: 0 32px; gap: 0; max-width: 640px; }
  .feat-visual-col { display: none; }
  .feat-step { opacity: 1; transform: none; }
  .feat-step-title { font-size: 1.2rem; }

  /* Gallery — 2 cols */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .gallery-cell-label { opacity: 1; transform: none; }

  /* Stats — 2x2 */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2px; padding: 0; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(235,221,205,.1); padding: 36px 20px; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-right: 1px solid rgba(235,221,205,.1); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 3rem; }

  /* Testimonials */


  /* Footer */
  .footer-top { flex-wrap: wrap; gap: 36px; justify-content: flex-start; }
  .footer-brand { flex: 0 0 100%; }

  /* Overlays */
  .parc-hero { padding: 36px 24px 28px; }
  .parc-section-title { padding: 24px 24px 12px; }
  .parc-card { padding: 18px 24px; }
}

/* ── SM: Mobile (max 767px) ── */
@media (max-width: 767px) {
  /* Nav */
  #nav { padding: 0 16px; height: 52px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  #hero { min-height: 100svh; height: auto; justify-content: flex-start; padding-bottom: 40px; }
  .hero-content { padding: 88px 16px 0; text-align: center; }
  .hero-eyebrow { font-size: 1rem; }
  .hero-title { font-size: clamp(1.9rem,9vw,2.8rem); letter-spacing: -.025em; }
  .hero-title strong { display: inline; }
  .hero-sub { font-size: .9rem; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-scroll-hint { display: none; }

  /* Widget */
  .hero-widget-wrap { padding: 0 12px; margin-top: 20px; }
  #wrapper { padding: 14px 10px; border-radius: 12px; overflow: visible; }

  /* Buttons full width */
  .btn-primary, .btn-secondary, .btn-dark, .btn-outline-teal {
    width: 100%; max-width: 320px; text-align: center; padding: 14px 20px;
  }

  /* Ticker */
  .ticker-item { padding: 0 20px; font-size: .73rem; }

  /* Statement / WhatsApp section */
  #statement { padding: 56px 16px !important; }
  #statement .section-title { font-size: clamp(1.6rem,7vw,2.2rem); }

  /* Section globals */
  .section-center { padding: 60px 16px; }
  .section-title { font-size: clamp(1.6rem,7vw,2.2rem); }
  .section-body { font-size: .9rem; }
  .section-eyebrow { margin-bottom: 12px !important; }

  /* Destinations */
  #destinations-pin { height: auto !important; }
  #destinations-pin .pin-stage { position: relative !important; height: auto !important; min-height: unset; padding: 0; }
  .dest-scene { height: auto; min-height: 100svh; }
  .dest-bg { filter: brightness(.5); }
  .dest-content { grid-template-columns: 1fr; padding: 80px 16px 36px; gap: 24px; }
  .dest-pills { grid-template-columns: 1fr; gap: 8px; }
  .dest-pill { padding: 12px 14px; border-radius: 12px; }
  .dest-pill-flag { font-size: 1.2rem; }
  .dest-pill-name { font-size: .82rem; }
  .dest-pill-tag { font-size: .62rem; }
  .dest-title-big { font-size: clamp(1.7rem,8vw,2.6rem); margin-bottom: 12px; }
  .dest-desc { font-size: .86rem; margin-bottom: 18px; }
  .dest-counter { font-size: .62rem; margin-bottom: 10px; }
  .dest-link { font-size: .85rem; }

  /* Features */
  #features-pin-wrap { height: auto !important; }
  #features-pin-wrap .pin-stage { position: relative !important; height: auto !important; padding: 56px 0; }
  .feat-scene { padding: 0 16px; max-width: 100%; grid-template-columns: 1fr; gap: 0; }
  .feat-visual-col { display: none; }
  .feat-step { opacity: 1 !important; transform: none !important; padding: 18px 0; }
  .feat-step-num { font-size: .6rem; }
  .feat-step-title { font-size: 1.05rem; }
  .feat-step-body { font-size: .84rem; }
  .feat-steps { margin-top: 0; }
  .feat-text-col { padding: 0; }

  /* Gallery */
  #gallery-section { padding: 64px 0; }
  .gallery-header { padding: 0 16px 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  .gallery-cell-label { opacity: 1; transform: none; padding: 14px 14px 12px; font-size: .78rem; }

  /* Testimonials */
  #testimonials { padding: 56px 0; }
  .testi-header { padding: 0 16px; margin-bottom: 32px; }
  .testi-text { font-size: .88rem; }

  /* FAQ */
  #faq { padding: 56px 0; }
  .faq-inner { padding: 0 16px; }
  .faq-header { margin-bottom: 36px; }
  .faq-q-text { font-size: .92rem; }
  .faq-answer-inner { font-size: .86rem; }
  .faq-question { padding: 18px 0; gap: 12px; }
  .faq-icon { width: 24px; height: 24px; font-size: .82rem; flex-shrink: 0; }
  .faq-cta-row { margin-top: 36px; padding-top: 28px; }
  .faq-cta-row p { font-size: .88rem; }

  /* Stats */
  #stats-section { padding: 56px 16px; }
  .stats-title { font-size: clamp(1.6rem,7vw,2.2rem); margin-bottom: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-cell { padding: 24px 12px; border-right: 1px solid rgba(235,221,205,.1); border-bottom: 1px solid rgba(235,221,205,.1); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: .7rem; }

  /* CTA */
  #cta-section { min-height: 80svh; padding: 56px 16px; }
  .cta-title { font-size: clamp(1.8rem,8vw,2.8rem); }
  .cta-body { font-size: .88rem; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }

  /* Footer */
  footer { padding: 48px 16px 28px; }
  .footer-top { flex-direction: column; gap: 28px; align-items: center; text-align: center; }
  .footer-brand { flex: unset; }
  .footer-brand p { max-width: 100%; margin: 12px auto 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-top: 20px; max-width: 100%; }
  .footer-bottom > div { flex-direction: row; gap: 16px; justify-content: center; }
  .footer-logo { font-size: 1rem; }
  .footer-col h4 { font-size: .72rem; }
  .footer-col a { font-size: .78rem; }

  /* Overlays — full screen */
  .parc-hero { padding: 28px 16px 24px; }
  .parc-hero h2 { font-size: clamp(1.6rem,7vw,2.2rem); }
  .parc-close { padding: 14px 16px; }
  .parc-section-title { padding: 20px 16px 10px; }
  .parc-card { padding: 16px 16px; gap: 14px; }
  .parc-card-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 1rem; }
  .parc-card-name { font-size: .92rem; }
  .parc-card-desc { font-size: .78rem; }
  .parc-stats { grid-template-columns: 1fr 1fr; }
  .parc-stat { padding: 16px 10px; }
  .parc-stat-num { font-size: 1.3rem; }
  .parc-stat-label { font-size: .6rem; }
  .parc-cta { padding: 24px 16px 36px; }
}

/* ── XS: Pequeno mobile / iPhone SE (max 479px) ── */
@media (max-width: 479px) {
  /* Hero */
  #hero { padding-bottom: 36px; }
  .hero-content { padding: 80px 14px 0; }
  .hero-title { font-size: clamp(1.7rem,10vw,2.4rem); }
  .hero-eyebrow { font-size: .85rem; letter-spacing: .06em; }
  .hero-sub { font-size: .85rem; }

  /* Widget ainda mais compacto */
  .hero-widget-wrap { padding: 0 8px; margin-top: 16px; }
  #wrapper { padding: 10px 8px; border-radius: 10px; overflow: visible; }

  /* Statement */
  #statement { padding: 48px 12px !important; }

  /* Sections */
  .section-center { padding: 48px 14px; }
  .section-title { font-size: clamp(1.45rem,9vw,2rem); }

  /* Destinations */
  .dest-content { padding: 72px 12px 28px; gap: 18px; }
  .dest-title-big { font-size: clamp(1.5rem,9vw,2.2rem); }

  /* Testimonials — card ocupa quase tela toda */
  .testi-card { width: 100%; padding: 20px 16px; }
  .testi-text { font-size: .84rem; }

  /* Features */
  .feat-scene { padding: 0 12px; }
  #features-pin-wrap .pin-stage { padding: 48px 0; }

  /* Gallery */

  .gallery-header { padding: 0 14px 28px; }

  /* FAQ */
  .faq-inner { padding: 0 12px; }
  .faq-q-text { font-size: .88rem; }

  /* CTA */
  #cta-section { padding: 48px 14px; }
  .cta-title { font-size: clamp(1.6rem,9vw,2.4rem); }

  /* Footer */
  footer { padding: 40px 14px 24px; }
  .footer-bottom > div { flex-direction: column; gap: 8px; }

  /* Nav */
  #nav { padding: 0 14px; }

  /* Stats */
  .stat-num { font-size: 1.9rem; }

  /* Overlays */
  .parc-hero { padding: 22px 14px 20px; }
  .parc-card { padding: 14px 12px; }
  .parc-close { padding: 12px 14px; }
  .parc-stats { grid-template-columns: 1fr 1fr; }
}

/* ── XXS: iPhone SE / Galaxy A (max 374px) ── */
@media (max-width: 374px) {
  .hero-title { font-size: 1.55rem; }
  .dest-title-big { font-size: 1.5rem; }
  .testi-card { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; }
  .stat-cell:nth-child(odd) { border-bottom: 1px solid rgba(235,221,205,.1) !important; }
  .stat-cell:last-child { border-bottom: none !important; }
  .section-title { font-size: 1.4rem; }

  .footer-bottom > div { gap: 6px; }
  #wrapper { padding: 8px 6px; overflow: visible; }
}
/* ─── DESTINOS GRID ─── */
#destinos-grid {
  background: var(--sand);
  padding: 100px 40px;
}
.destgrid-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.destgrid-header .section-title { color: var(--navy); }
.destgrid-header .section-body  { color: var(--sand-text); margin-top: 14px; }

.destgrid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.destgrid-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,58,75,.10);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.destgrid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27,58,75,.18);
}

/* Imagem com zoom no hover */
.destgrid-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.destgrid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.destgrid-card:hover .destgrid-img-wrap img {
  transform: scale(1.10);
}
.destgrid-country {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
}

/* Corpo do card */
.destgrid-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.destgrid-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.destgrid-desc {
  font-size: .84rem;
  color: var(--sand-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

/* Botão Orçamento */
.destgrid-btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}
.destgrid-btn:hover {
  background: var(--teal-h);
  transform: scale(1.03);
}

/* Responsivo */
@media (max-width: 1023px) {
  .destgrid-wrap { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  #destinos-grid { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .destgrid-wrap { grid-template-columns: 1fr; gap: 16px; }
  #destinos-grid { padding: 60px 16px; }
  .destgrid-img-wrap { height: 180px; }
}

/* ─── RESORTS ALL INCLUSIVE ─── */
#resorts-section {
  background: var(--navy);
  padding: 100px 40px;
}
.resorts-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.resorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.resort-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.resort-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 16px;
}
.resort-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.75);
}
.resort-card:hover .resort-img-wrap img {
  transform: scale(1.08);
  filter: brightness(.6);
}

/* Badge ALL INCLUSIVE */
.resort-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}
.resort-badge--right {
  left: auto;
  right: 14px;
  background: var(--navy);
}
.resort-badge--brasil {
  background: #1a6b2f;
}

/* Card body abaixo da imagem */
.resort-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.resort-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.resort-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.resort-desc {
  font-size: .83rem;
  color: var(--sand-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.resort-btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 10px 22px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  align-self: flex-start;
  transition: background .2s, transform .15s;
}
.resort-btn:hover {
  background: var(--teal-h);
  transform: scale(1.04);
}

/* Responsivo */
@media (max-width: 1023px) {
  .resorts-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  #resorts-section { padding: 80px 24px; }
  .resort-img-wrap { height: 280px; }
}
@media (max-width: 600px) {
  .resorts-grid { grid-template-columns: 1fr; gap: 16px; }
  #resorts-section { padding: 60px 16px; }
  .resort-img-wrap { height: 260px; }
  .resort-name { font-size: 1.15rem; }
}