/* =============================================
   JS TURISMO — CSS
   Paleta: turquesa #00BCD4, laranja #FF8A00,
           branco #fff, verde #2E7D32, escuro #0D1B2A
============================================= */

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

:root {
  --turquesa: #00BCD4;
  --turquesa-dark: #0097A7;
  --turquesa-light: #E0F7FA;
  --laranja: #FF8A00;
  --laranja-light: #FFA726;
  --verde: #2E7D32;
  --escuro: #0D1B2A;
  --escuro-2: #1A2E40;
  --cinza: #5A6878;
  --cinza-light: #f4f7f9;
  --branco: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--escuro);
  background: var(--branco);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-direction: row;
}
.logo-js {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--laranja);
  line-height: 1;
}
.logo-turismo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--branco);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  align-self: center;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--branco);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: -5%;
  background: url('images/hero.jpg') center center / cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1%, 0.5%); }
  50%  { transform: scale(1.10) translate(1%, -1%); }
  75%  { transform: scale(1.06) translate(-0.5%, 1%); }
  100% { transform: scale(1.0) translate(0%, 0%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.35) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,188,212,0.2);
  border: 1px solid rgba(0,188,212,0.5);
  color: #80DEEA;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-accent {
  color: var(--laranja-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--branco);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ====== TRUST BAR ====== */
.trust {
  background: var(--escuro);
  padding: 28px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
}
.trust-item strong {
  display: block;
  color: var(--branco);
  font-weight: 700;
  font-size: 0.95rem;
}
.trust-item span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 2px;
}
.trust-icon {
  color: var(--turquesa);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ====== SECTION COMMON ====== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--turquesa-light);
  color: var(--turquesa-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--escuro);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title.left { text-align: left; }
.section-sub {
  color: var(--cinza);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ====== PASSEIOS ====== */
.passeios {
  padding: 100px 0;
  background: var(--cinza-light);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.5s ease;
}
.card:hover .card-img-wrap img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--laranja);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.card-badge-green { background: var(--verde); }
.card-body {
  padding: 24px;
}
.card-body h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--escuro);
}
.card-body p {
  color: var(--cinza);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-btn {
  display: inline-block;
  background: var(--turquesa);
  color: var(--branco);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.card-btn:hover {
  background: var(--turquesa-dark);
  transform: translateY(-1px);
}

/* ====== SOBRE ====== */
.sobre {
  padding: 100px 0;
  background: var(--branco);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.sobre-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--branco);
  color: var(--turquesa-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.sobre-text .section-tag { display: block; margin-bottom: 14px; text-align: left; }
.sobre-text p {
  color: var(--cinza);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.sobre-text p strong { color: var(--escuro); font-weight: 700; }
.sobre-selos {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.selo strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--turquesa-dark);
}
.selo span {
  font-size: 0.82rem;
  color: var(--cinza);
  margin-top: 4px;
  display: block;
}

/* ====== DEPOIMENTOS ====== */
.depoimentos {
  padding: 100px 0;
  background: var(--escuro);
}
.depoimentos .section-tag {
  background: rgba(0,188,212,0.15);
  color: #80DEEA;
}
.depoimentos .section-title { color: var(--branco); }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.depo-card {
  min-width: calc(100% / 3 - 19px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.depo-stars {
  color: var(--laranja);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.depo-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--turquesa);
}
.depo-author strong {
  display: block;
  color: var(--branco);
  font-weight: 700;
  font-size: 0.9rem;
}
.depo-author span {
  display: block;
  color: var(--turquesa);
  font-size: 0.78rem;
  margin-top: 2px;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.carousel-dots .dot.active {
  background: var(--turquesa);
  transform: scale(1.3);
}

/* ====== GALERIA ====== */
.galeria {
  padding: 100px 0;
  background: var(--cinza-light);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.galeria-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}
.galeria-item img {
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-large {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-tall { grid-row: span 2; }

/* ====== CTA FINAL ====== */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--turquesa-dark) 0%, var(--escuro-2) 60%);
  z-index: 0;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-social {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.cta-insta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cta-insta:hover { color: var(--branco); }

/* ====== FOOTER ====== */
.footer {
  background: var(--escuro);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-cnpj {
  font-size: 0.75rem !important;
  margin-top: 16px !important;
  color: rgba(255,255,255,0.3) !important;
}
.footer-links h4, .footer-contato h4 {
  color: var(--branco);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--turquesa); }
.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contato a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-contato a:hover { color: var(--turquesa); }
.footer-cidade {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ====== WHATSAPP FLUTUANTE ====== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: wppPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.wpp-float:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}
.wpp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--escuro);
  color: var(--branco);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ====== ANIMATIONS ====== */
.reveal-up, .reveal-card, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-card { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-card.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-large { grid-column: span 2; }
  .trust-item { padding: 12px 20px; }
}

@media (max-width: 768px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
  .logo-tagline { display: none; }

  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 340px; justify-content: center; }

  .trust-grid { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 14px 24px; }

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

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-wrap { height: 340px; }
  .section-title.left { text-align: center; }
  .sobre-text .section-tag { text-align: center; }
  .sobre-selos { justify-content: center; }

  .carousel { flex-direction: column; }
  .depo-card { min-width: 100%; }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .galeria-large { grid-column: span 2; height: 240px; }
  .galeria-tall { grid-row: span 1; }

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

  .wpp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .cards-grid { gap: 20px; }
  .section-header { margin-bottom: 36px; }
  .passeios, .sobre, .depoimentos, .galeria { padding: 72px 0; }
  .cta-final { padding: 80px 0; }
  .sobre-selos { flex-direction: column; gap: 20px; }
}
