/* ==========================================================
   Unique Travel — design tokens
   Cyan  #05C3DD | Gold #FFD700 | Dark #4B4F54
   ========================================================== */

:root{
  --cyan: #05C3DD;
  --cyan-dark: #049AAD;
  --gold: #FFD700;
  --dark: #4B4F54;
  --dark-2: #3A3D41;
  --dark-3: #2C2E31;
  --muted: #7D8085;
  --ink: #2B2D30;
  --paper: #FFFFFF;
  --paper-alt: #F5F7F8;
  --line: #E4E7E9;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43,45,48,.08);
  --font-body: 'Jost', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-script: 'Qwigley', cursive;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  /* base maior para melhor leitura (público majoritariamente mais velho) */
  font-size: 20px;
}

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

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;

  /* visual estilo "app", evita seleção/cópia casual */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img{
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
}

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

h1,h2,h3{
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--dark);
}

p{ margin: 0 0 1em; }

.container{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 88px 0; }
.section-alt{ background: var(--paper-alt); }

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 .6em;
}
.eyebrow.center, h2.center{ text-align: center; }
h2.center{ max-width: 640px; margin-left: auto; margin-right: auto; }

.section-title{ font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--cyan); }

.highlight{ color: var(--cyan); }
.script{ font-family: var(--font-script); font-style: normal; color: var(--gold); font-weight: 400; font-size: 1.2em; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-icon{ width: 18px; height: 18px; }
.btn-icon-white{ filter: brightness(0) invert(1); }

.btn-cyan{
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 8px 20px rgba(5,195,221,.35);
}
.btn-cyan:hover{ background: var(--cyan-dark); }

.btn-outline{
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover{ background: rgba(255,255,255,.12); }

.btn-outline-dark{
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover{ background: var(--dark); color: #fff; }
.btn-outline-dark .btn-icon{ filter: none; }

.btn-small{ padding: 10px 18px; font-size: .85rem; }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 91px;
}
.brand-logo{ height: 55px; width: auto; }

.main-nav{ display: flex; gap: 32px; }
.main-nav a{
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .9;
  position: relative;
  padding-bottom: 6px;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  transition: right .25s ease;
}
.main-nav a:hover{ opacity: 1; color: var(--cyan); }
.main-nav a:hover::after{ right: 0; }

.header-actions{ display: flex; align-items: center; gap: 18px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  margin: 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 55%, var(--dark-3) 100%);
  overflow: hidden;
  padding: 96px 0;
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(75,79,84,.88) 0%, rgba(58,61,65,.85) 55%, rgba(44,46,49,.9) 100%);
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(5,195,221,.35), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(255,215,0,.22), transparent 45%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
}
.hero-tagline{
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin: 0 0 .1em;
}
.hero-text h1{
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  max-width: 12.5ch;
}
.hero-desc{
  color: rgba(255,255,255,.78);
  max-width: 46ch;
  font-size: 1.05rem;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

.hero-badge{
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-badge img{
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  animation: float 5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* ---------- sobre ---------- */
.about-inner{
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-media{ display: flex; justify-content: center; }
.about-media img{ width: 100%; max-width: 375px; }
.about-text p{ color: #565A5E; font-size: 1.05rem; }
.about-text h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--cyan); }

/* ---------- orçamento ---------- */
.orcamento-inner{
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}
.orcamento-text p:not(.eyebrow){ color: #565A5E; font-size: 1.05rem; }

.orcamento-form{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row{ display: flex; flex-direction: column; gap: 8px; }
.form-row[hidden]{ display: none; }
.form-row label{ font-weight: 600; font-size: .92rem; color: var(--dark); }

.form-row select,
.form-row input{
  font: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease;
  width: 100%;
}
.form-row select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B4F54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}
.form-row select:focus,
.form-row input:focus{ outline: none; border-color: var(--cyan); }

.orcamento-submit{ justify-content: center; margin-top: 4px; white-space: normal; text-align: center; }

/* ---------- divisor animado (avião) ---------- */
.fly-divider{
  position: relative;
  overflow: hidden;
  height: 64px;
  display: flex;
  align-items: center;
}
.fly-divider img{
  width: min(640px, 74%);
  margin: 0 auto;
  opacity: 0;
  transform: translateX(-140%);
  transition: transform 1.2s cubic-bezier(.22,.9,.28,1), opacity 1.2s ease;
}
.fly-divider.in-view img{
  opacity: 1;
  transform: translateX(0);
}
.fly-divider-reverse img{ transform: translateX(140%); }
.fly-divider-reverse.in-view img{ transform: translateX(0); }

/* ---------- serviços ---------- */
.services-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 34px rgba(43,45,48,.14); }
.service-card h3{ font-size: 1.2rem; margin-bottom: .3em; }
.service-card p{ font-size: 1rem; color: #6B6F73; margin: 0; }

.service-icon{
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  background-color: var(--cyan);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.service-icon[data-icon="aereo"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 327.58 314.58'%3E%3Cpath fill='%23000' d='M200.59,98.87l1.92-57.65v-.29c0-22.57-17.55-40.92-39.15-40.92s-39.16,18.36-39.16,40.92l1.95,58.4L0,167.35v37.91c0,8.29,6.75,15.03,15.03,15.03h1.21l112.92-32.75,2.17,53.52c.02,3.83.41,7.57,1.16,11.2l-39.99,23.55v25.35c.01,7.39,6.03,13.41,13.42,13.42h1.36l54.58-17.84h3.84l54.58,17.84h1.36c3.59,0,6.96-1.39,9.5-3.93,2.54-2.54,3.93-5.91,3.93-9.49v-25.33s-40.77-24.01-40.77-24.01c.7-3.49,1.05-7.08,1.06-10.75l2.18-53.77,113.79,33h1.21c8.29,0,15.03-6.74,15.03-15.03v-37.9l-127-68.49ZM310.54,202.32l-129.13-37.45-3.08,75.66v.35c0,4.28-.67,8.4-1.98,12.24l-2.24,6.57,43.94,25.86v10.36s-49.63-16.22-49.63-16.22h-9.27l-49.61,16.22v-10.36l43.26-25.47-2.33-6.62c-1.38-3.93-2.08-8.17-2.09-12.6l-3.07-75.75L17.04,202.32v-24.79l126.49-68.22-2.3-68.52c.06-13.11,9.97-23.75,22.12-23.75s22.05,10.64,22.11,23.75l-2.28,68.06,127.34,68.67v24.79Z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="passaporte"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 225.79 269.82'%3E%3Cpath fill='%23000' d='M198.82.07v-.07H0v269.82h198.82v-.57c14.78-.98,26.51-13.29,26.51-28.29l.47-212.56c0-15.19-11.98-27.59-26.98-28.34h0ZM181.77,252.78H17.04V17.04h164.74v235.73ZM208.28,240.95c0,5.62-4.1,10.26-9.47,11.17V17.18c5.59.71,9.94,5.44,9.94,11.2l-.47,212.57ZM71.71,191h54.67v17.04h-54.67v-17.04ZM71.71,216.57h54.67v17.04h-54.67v-17.04ZM99.4,172.46c38.14,0,69.17-31.03,69.17-69.16s-30.16-68.27-67.56-69.13c-.25,0-.5-.04-.76-.04-.1,0-.18.01-.28.01-.19,0-.38-.01-.58-.01-38.14,0-69.17,31.03-69.17,69.17s31.03,69.16,69.17,69.16h0ZM100.26,155.34c-3.42-.99-11.66-15.51-13.11-43.52h26.22c-1.44,28.01-9.69,42.53-13.11,43.52h0ZM150.76,94.78h-20.33c-.65-13.49-2.89-26.85-6.81-37.59,14.16,7.47,24.44,21.26,27.13,37.59h0ZM130.43,111.82h20.33c-2.7,16.34-12.99,30.14-27.16,37.6,3.93-10.73,6.17-24.1,6.83-37.6h0ZM100.09,51.22c.07,0,.13,0,.2,0,3.43,1.06,11.64,15.58,13.08,43.55h-26.23c1.44-28.03,9.66-42.55,12.95-43.56h0ZM77.24,56.19c-4.15,10.9-6.49,24.69-7.16,38.58h-22.04c2.83-17.11,14-31.4,29.2-38.58h0ZM70.09,111.82c.68,13.92,3.03,27.7,7.18,38.6-15.22-7.18-26.39-21.48-29.23-38.6h22.05Z'/%3E%3C/svg%3E"); }

.service-icon[data-icon="hotel"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V6.5C3 5.67 3.67 5 4.5 5H10a1 1 0 0 1 1 1v15'/%3E%3Cpath d='M13 21V11a1 1 0 0 1 1-1h5.5c.83 0 1.5.67 1.5 1.5V21'/%3E%3Cline x1='6' y1='9' x2='7.8' y2='9'/%3E%3Cline x1='6' y1='13' x2='7.8' y2='13'/%3E%3Cline x1='6' y1='17' x2='7.8' y2='17'/%3E%3Cline x1='16' y1='14' x2='17.6' y2='14'/%3E%3Cline x1='16' y1='17.5' x2='17.6' y2='17.5'/%3E%3Cline x1='3' y1='21' x2='21' y2='21'/%3E%3C/svg%3E"); }

.service-icon[data-icon="cruzeiro"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11h16l-2 6.2a2 2 0 0 1-1.9 1.3H7.9A2 2 0 0 1 6 17.2L4 11Z'/%3E%3Cpath d='M8 11V4h5l2.5 3.2'/%3E%3Cline x1='8' y1='7.2' x2='13.6' y2='7.2'/%3E%3Cpath d='M2.5 20.5c1.5 1.2 3 1.2 4.5 0 1.5-1.2 3-1.2 4.5 0 1.5 1.2 3 1.2 4.5 0 1.5-1.2 3-1.2 4.5 0'/%3E%3C/svg%3E"); }

.service-icon[data-icon="carro"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 16V12l2.2-5A2 2 0 0 1 7.6 5.8h8.8a2 2 0 0 1 1.9 1.3l2.2 5v4'/%3E%3Cpath d='M3.5 16h17v3a1 1 0 0 1-1 1h-1.2a1 1 0 0 1-1-1v-1H6.7v1a1 1 0 0 1-1 1H4.5a1 1 0 0 1-1-1v-3Z'/%3E%3Cline x1='3.5' y1='12' x2='20.5' y2='12'/%3E%3Ccircle cx='7' cy='16' r='1.2'/%3E%3Ccircle cx='17' cy='16' r='1.2'/%3E%3C/svg%3E"); }

.service-icon[data-icon="passeios"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4.5 3.5 6.7v13L9 17.5l6 2.2 5.5-2.2v-13L15 6.7l-6-2.2Z'/%3E%3Cline x1='9' y1='4.5' x2='9' y2='17.5'/%3E%3Cline x1='15' y1='6.7' x2='15' y2='19.7'/%3E%3C/svg%3E"); }

.service-icon[data-icon="grupos"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8.5' cy='8' r='2.6'/%3E%3Cpath d='M3.5 19c0-3 2.2-5 5-5s5 2 5 5'/%3E%3Ccircle cx='16.3' cy='9' r='2.1'/%3E%3Cpath d='M14.3 13.3c2.6.3 4.2 2.1 4.2 5'/%3E%3C/svg%3E"); }

.service-icon[data-icon="seguro"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 19 6v6c0 4.4-2.9 7.7-7 8.8-4.1-1.1-7-4.4-7-8.8V6l7-2.5Z'/%3E%3Cpath d='M9 12.2l2 2 4-4.4'/%3E%3C/svg%3E"); }

.service-icon[data-icon="assistencia"]{ --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13v-1a8 8 0 0 1 16 0v1'/%3E%3Crect x='3' y='13' width='4.2' height='6' rx='1.5'/%3E%3Crect x='16.8' y='13' width='4.2' height='6' rx='1.5'/%3E%3Cpath d='M20 19v1a2 2 0 0 1-2 2h-4'/%3E%3C/svg%3E"); }

.service-icon[data-icon="aereo"],
.service-icon[data-icon="hotel"],
.service-icon[data-icon="cruzeiro"],
.service-icon[data-icon="carro"],
.service-icon[data-icon="passeios"],
.service-icon[data-icon="grupos"],
.service-icon[data-icon="passaporte"],
.service-icon[data-icon="seguro"],
.service-icon[data-icon="assistencia"]{
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

/* ---------- destinos ---------- */
.destinos-inner{ text-align: center; }
.destinos-inner .eyebrow{ text-align: center; }
.destinos-title{ font-family: var(--font-body); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.destinos-title .amarelo{ color: var(--gold); }
.destinos-title .azul{ color: var(--cyan); }
.destinos-desc{ max-width: 56ch; margin: 0 auto 40px; color: #565A5E; font-size: 1.05rem; }

.destinos-carrossel-wrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.destinos-carrossel{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 4px 20px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.destinos-carrossel::-webkit-scrollbar{ height: 8px; }
.destinos-carrossel::-webkit-scrollbar-thumb{ background: var(--line); border-radius: 999px; }

/* nas pontas do carrossel não há nada cortado, então tira o fade daquele lado */
.destinos-carrossel-wrap.at-start .destinos-carrossel{
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent 100%);
}
.destinos-carrossel-wrap.at-end .destinos-carrossel{
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px);
}
.destinos-carrossel-wrap.at-start.at-end .destinos-carrossel{
  -webkit-mask-image: none;
  mask-image: none;
}

.destinos-nav{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.destinos-nav:hover{ background: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.destinos-nav span{
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dark);
  border-top: 2px solid var(--dark);
  transition: border-color .15s ease;
}
.destinos-nav:hover span{ border-color: #fff; }
.destinos-nav-prev span{ transform: rotate(-135deg) translate(1px,-1px); }
.destinos-nav-next span{ transform: rotate(45deg) translate(-1px,-1px); }
.destinos-nav:disabled{ opacity: .35; cursor: default; }
.destinos-nav:disabled:hover{ background: var(--paper); border-color: var(--line); transform: none; }
.destinos-nav:disabled:hover span{ border-color: var(--dark); }

.destino-card{
  position: relative;
  flex: 0 0 260px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  transition: transform .3s ease;
}
.destino-card:hover{ transform: translateY(-6px); }

.destino-card-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 55%);
}
.destino-card-nome{
  position: relative;
  padding: 22px;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
}

/* ---------- cta band ---------- */
.cta-band{
  background: var(--cyan);
  background: linear-gradient(120deg, var(--cyan) 0%, var(--cyan-dark) 100%);
}
.cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2{ color: #fff; margin-bottom: .2em; font-size: clamp(2rem, 4.5vw, 3rem); }
.cta-text p{ color: rgba(255,255,255,.92); margin: 0; font-size: 1.05rem; }
.cta-actions{ display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cta-actions .btn-cyan{ background: #fff; color: var(--cyan-dark); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta-actions .btn-cyan:hover{ background: var(--dark); color: #fff; }
.cta-actions .btn-cyan .btn-icon{ filter: none; }
.cta-actions .btn-outline-dark{ border-color: #fff; color: #fff; }
.cta-actions .btn-outline-dark:hover{ background: #fff; color: var(--cyan-dark); }
.cta-actions .btn-outline-dark .btn-icon{ filter: brightness(0) invert(1); }
.cta-actions .btn-outline-dark:hover .btn-icon{ filter: none; }
.cta-fone{
  flex-basis: 100%;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-top: -4px;
}

/* ---------- footer ---------- */
.site-footer{
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
  text-align: center;
}
.footer-logo{ height: 61px; margin: 0 auto 16px; }
.footer-tagline{ font-family: var(--font-script); font-style: normal; color: var(--gold); font-size: 51px; margin-bottom: 24px; }
.footer-social{ display: flex; justify-content: center; gap: 18px; margin-bottom: 24px; }
.footer-social img{ width: 26px; height: 26px; opacity: .85; transition: opacity .15s ease, transform .15s ease; }
.footer-social a:hover img{ opacity: 1; transform: translateY(-2px); }

.footer-payments{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.payment-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 7px;
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
}
.payment-badge img{ height: 16px; width: auto; -webkit-user-drag: none; }
.payment-boleto{ color: #1a1a1a; }
.payment-boleto::before{ content: ''; width: 14px; height: 16px; margin-right: 6px; background: repeating-linear-gradient(90deg, #1a1a1a 0, #1a1a1a 1px, transparent 1px, transparent 3px); }

.footer-divider{
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 480px;
  margin: 0 auto 20px;
}

.footer-copy{ font-size: .85rem; margin-bottom: 2px; }
.footer-cnpj{ font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 6px; }

.footer-credit{
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.footer-credit a{ color: rgba(255,255,255,.45); }
.footer-credit a:hover{ color: rgba(255,255,255,.75); text-decoration: underline; }

.link-like{
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(255,255,255,.45);
  cursor: pointer;
}
.link-like:hover{ color: rgba(255,255,255,.75); text-decoration: underline; }

/* ---------- modal (SEO) ---------- */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(20,21,23,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay[hidden]{ display: none; }
.modal{
  background: #fff;
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal-header h3{ margin: 0; font-size: 1.15rem; color: var(--dark); }
.modal-close{
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #8A8E92;
  padding: 4px 8px;
}
.modal-close:hover{ color: var(--dark); }
.modal-body{
  padding: 20px 24px 28px;
  overflow-y: auto;
  color: #4A4E52;
  font-size: .96rem;
}

/* ---------- responsive ---------- */
@media (max-width: 900px){
  html{ font-size: 18px; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-badge{ order: -1; }
  .hero-badge img{ max-width: 200px; }
  .about-inner{ grid-template-columns: 1fr; text-align: center; }
  .about-media img{ max-width: 220px; }
  .orcamento-inner{ grid-template-columns: minmax(0, 1fr); text-align: center; }
  .orcamento-form{ text-align: left; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-inner{ justify-content: center; text-align: center; }
  .cta-fone{ text-align: center; }
}

@media (max-width: 760px){
  .main-nav{
    position: absolute;
    top: 91px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.is-open{ display: flex; }
  .main-nav a{ padding: 10px 0; }
  .nav-toggle{ display: flex; }
  .header-actions .btn-small span{ display: none; }
  .section{ padding: 64px 0; }
  .footer-tagline{ font-size: 40px; }

  .destinos-carrossel-wrap{ gap: 0; }
  .destinos-carrossel{
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .destino-card{ flex-basis: 100%; }

  /* setas flutuam por cima da foto em vez de espremer o card */
  .destinos-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,.92);
  }
  .destinos-nav:hover{ transform: translateY(-50%); }
  .destinos-nav-prev{ left: 12px; }
  .destinos-nav-next{ right: 12px; }
}

@media (max-width: 520px){
  html{ font-size: 17px; }
  .services-grid{ gap: 16px; }
  .service-card{ padding: 24px 16px; }
  .header-actions .btn-small{ padding: 10px 14px; }
  .destino-card{ height: 300px; }
}
