*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --pink: #FF00CC; --purple: #7B00FF;
    --grad: linear-gradient(135deg, #FF00CC 0%, #9B00EE 50%, #7B00FF 100%);
    --white: #ffffff; --off: #f7f0ff; --dark: #1a0033; --text: #2d0050; --muted: #7a5490;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6vw;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(123,0,255,0.08);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(123,0,255,0.12); }

  .logo img { height: 52px; max-width: 150px; width: auto; object-fit: contain; display: block; }
  .logo { text-decoration: none; display: block; }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 14px; transition: color .2s; }
  .nav-links a:hover { color: var(--purple); }
  .nav-cta {
    background: var(--grad); color: var(--white); border: none; border-radius: 50px;
    padding: 10px 22px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
    cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(123,0,255,0.35); white-space: nowrap;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,0,255,0.5); }

  /* HERO */
  #hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 6vw 80px; background: var(--dark); }
  .hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 70% 50%, rgba(123,0,255,0.5) 0%, transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(255,0,204,0.4) 0%, transparent 50%), var(--dark); }
  .plane-bg { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 55vw; max-width: 800px; opacity: 0.18; animation: floatPlane 8s ease-in-out infinite; z-index: 1; }
  @keyframes floatPlane { 0%, 100% { transform: translateY(-50%) rotate(-5deg); } 50% { transform: translateY(-54%) rotate(-3deg); } }
  .hero-content { position: relative; z-index: 2; max-width: 620px; padding-bottom: 68px; }
  .hero-tag { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 28px; animation: fadeUp .8s ease both; }
  .hero-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.1; color: var(--white); margin-bottom: 24px; animation: fadeUp .8s .15s ease both; }
  .hero-title .highlight { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-sub { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 480px; animation: fadeUp .8s .3s ease both; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }
  .btn-primary { background: var(--grad); color: var(--white); border: none; border-radius: 50px; padding: 16px 36px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 30px rgba(255,0,204,0.5); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,0,204,0.65); }
  .btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); border-radius: 50px; padding: 14px 32px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; transition: border-color .2s, background .2s; }
  .btn-ghost:hover { border-color: var(--pink); background: rgba(255,0,204,0.1); }
  .hero-stats { display: flex; gap: 40px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeUp .8s .6s ease both; }
  .stat { display: flex; flex-direction: column; }
  .stat-number { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .scroll-cue { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; animation: bounce 2s ease-in-out infinite; z-index: 2; }
  .scroll-cue svg { width: 20px; opacity: .6; }
  @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

  /* SECTION */
  .section-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; color: var(--purple); margin-bottom: 12px; }
  .section-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
  .section-title .pink { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }

  /* INSTITUCIONAL */
  #institucional { background: var(--white); padding: 100px 6vw; }
  .institutional-grid { align-items: center; display: grid; gap: 64px; grid-template-columns: 1.15fr .85fr; }
  .institutional-copy { max-width: 680px; }
  .institutional-copy .section-sub { max-width: 620px; }
  .institutional-lead { color: var(--text); font-size: 1.04rem; line-height: 1.8; margin-bottom: 28px; }
  .institutional-values { display: grid; gap: 14px 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; }
  .institutional-values li { color: var(--text); font-size: .9rem; line-height: 1.55; padding-left: 28px; position: relative; }
  .institutional-values li::before { background: var(--grad); border-radius: 50%; color: var(--white); content: '✓'; font-size: 11px; font-weight: 900; height: 20px; left: 0; line-height: 20px; position: absolute; text-align: center; top: 1px; width: 20px; }
  .institutional-card { background: var(--dark); border-radius: 28px; box-shadow: 0 20px 60px rgba(26,0,51,.2); color: var(--white); overflow: hidden; padding: 34px; position: relative; }
  .institutional-card::before { background: radial-gradient(circle, rgba(255,0,204,.45), transparent 65%); content: ''; height: 260px; position: absolute; right: -90px; top: -110px; width: 260px; }
  .institutional-card-content { position: relative; z-index: 1; }
  .institutional-card-label { color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: 2px; margin-bottom: 16px; text-transform: uppercase; }
  .institutional-card h3 { color: var(--white); font-family: 'Nunito', sans-serif; font-size: 1.55rem; font-weight: 900; line-height: 1.25; margin-bottom: 14px; }
  .institutional-card p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; margin-bottom: 24px; }
  .institutional-promise { border-top: 1px solid rgba(255,255,255,.14); color: var(--white); font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; line-height: 1.45; padding-top: 20px; }
  .institutional-cta { background: var(--grad); border-radius: 50px; color: var(--white); display: inline-flex; font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 800; margin-top: 24px; padding: 13px 22px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
  .institutional-cta:hover { box-shadow: 0 10px 30px rgba(255,0,204,.35); transform: translateY(-2px); }
  @media (max-width: 900px) {
    .institutional-grid { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 600px) {
    .institutional-values { grid-template-columns: 1fr; }
  }

  /* OFERTAS DE VIAGEM */
  #ofertas { padding: 86px 6vw 92px; background: var(--off); }
  .offers-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
  .offers-header .section-sub { margin-bottom: 0; }
  .offers-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .offer-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 14px 45px rgba(45,0,80,0.10); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
  .offer-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(123,0,255,0.18); }
  .offer-image { width: 100%; height: 218px; object-fit: cover; display: block; }
  .offer-content { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .offer-kicker { color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
  .offer-title { color: var(--dark); font-family: 'Nunito', sans-serif; font-size: 1.35rem; font-weight: 900; line-height: 1.2; margin-bottom: 8px; }
  .offer-route { color: var(--muted); font-size: .85rem; font-weight: 700; line-height: 1.45; margin-bottom: 16px; }
  .offer-date { color: var(--text); font-size: .86rem; font-weight: 700; margin-bottom: 16px; }
  .offer-includes { border-top: 1px solid rgba(123,0,255,0.10); border-bottom: 1px solid rgba(123,0,255,0.10); display: flex; flex-direction: column; gap: 8px; list-style: none; margin: 0 0 20px; padding: 16px 0; }
  .offer-includes li { color: var(--text); font-size: .83rem; line-height: 1.4; padding-left: 20px; position: relative; }
  .offer-includes li::before { color: var(--purple); content: '✓'; font-family: 'Nunito', sans-serif; font-weight: 900; left: 0; position: absolute; top: 0; }
  .offer-price { margin-top: auto; margin-bottom: 18px; }
  .offer-price-label { color: var(--muted); display: block; font-size: .76rem; font-weight: 700; margin-bottom: 2px; }
  .offer-price-value { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-family: 'Nunito', sans-serif; font-size: 1.55rem; font-weight: 900; line-height: 1.15; }
  .offer-price-note { color: var(--muted); display: block; font-size: .76rem; font-weight: 600; margin-top: 2px; }
  .offer-cta { align-items: center; background: var(--grad); border-radius: 50px; color: var(--white); display: inline-flex; font-family: 'Nunito', sans-serif; font-size: .88rem; font-weight: 800; justify-content: center; padding: 13px 18px; text-decoration: none; transition: transform .2s, box-shadow .2s; width: 100%; }
  .offer-cta:hover { box-shadow: 0 8px 24px rgba(123,0,255,0.28); transform: translateY(-2px); }

  /* DESTINOS */
  #destinos { padding: 100px 6vw; background: var(--white); }
  .dest-tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
  .dest-tab-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px; border: 2px solid rgba(123,0,255,0.2); background: transparent; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--muted); transition: all .25s; }
  .dest-tab-btn:hover { border-color: var(--purple); color: var(--purple); }
  .dest-tab-btn.active { background: var(--grad); border-color: transparent; color: var(--white); box-shadow: 0 6px 24px rgba(123,0,255,0.35); }
  .dest-tab-btn .flag { font-size: 18px; }
  .dest-panels { position: relative; }
  .dest-panel { display: none; animation: panelIn .4s ease both; }
  .dest-panel.active { display: block; }
  @keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  .dest-panel-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
  .dest-main-img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; display: block; background-size: cover; background-position: center; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
  .dest-thumb { width: 100%; height: 130px; object-fit: cover; border-radius: 16px; background-size: cover; background-position: center; cursor: pointer; transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
  .dest-thumb:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
  .dest-info-box { background: var(--off); border-radius: 20px; padding: 28px; }
  .dest-info-box h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--dark); margin-bottom: 6px; }
  .dest-country { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
  .dest-description { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
  .dest-highlights { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .dest-highlights li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); font-weight: 600; }
  .dest-highlights li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
  .dest-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--grad); color: var(--white); border-radius: 50px; padding: 14px 28px; text-decoration: none; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 24px rgba(123,0,255,0.3); border: none; cursor: pointer; width: 100%; justify-content: center; }
  .dest-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(123,0,255,0.45); }

  /* SERVICES */
  #servicos { padding: 100px 6vw; background: var(--grad); position: relative; overflow: hidden; }
  #servicos .section-eyebrow { color: rgba(255,255,255,0.9); }
  #servicos .section-title { color: var(--white); }
  #servicos .section-title .pink { background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: var(--white); color: var(--white); }
  #servicos .section-sub { color: rgba(255,255,255,0.92); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
  .service-card { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.88); border-radius: 20px; padding: 32px 28px; box-shadow: 0 14px 35px rgba(26,0,51,0.2); transition: transform .3s, background .3s, box-shadow .3s; }
  .service-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: 0 18px 42px rgba(26,0,51,0.28); }
  .service-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; box-shadow: 0 8px 22px rgba(123,0,255,0.28); }
  .service-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
  .service-desc { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

  /* WHY */
  #por-que { padding: 100px 6vw; background: var(--off); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .why-circle { width: 340px; height: 340px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 130px; box-shadow: 0 0 80px rgba(123,0,255,0.4); margin: 0 auto; animation: pulse 4s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { box-shadow: 0 0 80px rgba(123,0,255,0.4); } 50% { box-shadow: 0 0 120px rgba(255,0,204,0.5); } }
  .why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
  .why-item { display: flex; gap: 18px; align-items: flex-start; }
  .why-num { width: 40px; height: 40px; flex-shrink: 0; background: var(--grad); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 14px; color: var(--white); }
  .why-item-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
  .why-item-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  /* TESTIMONIALS */
  #depoimentos { padding: 100px 6vw; background: var(--white); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card { background: var(--off); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(123,0,255,0.12); }
  .testi-card::before { content: '"'; position: absolute; top: -10px; right: 20px; font-size: 120px; font-family: 'Nunito', sans-serif; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: .15; line-height: 1; }
  .stars { color: #FF00CC; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
  .testi-text { font-size: 0.92rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; }
  .testi-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--dark); }
  .testi-loc { font-size: 12px; color: var(--muted); }

  /* CTA */
  #contato { padding: 100px 6vw; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
  #contato::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(255,0,204,0.3) 0%, transparent 60%), radial-gradient(ellipse at 50% 0%, rgba(123,0,255,0.35) 0%, transparent 60%); }
  .cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
  .cta-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.2; margin-bottom: 16px; }
  .cta-sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); border-radius: 50px; padding: 18px 40px; text-decoration: none; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  .whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.55); }
  .whatsapp-btn svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }

  /* FOOTER */
  footer { background: #0e0020; padding: 32px 6vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-logo img { height: 48px; max-width: 180px; width: auto; object-fit: contain; display: block; }
  .footer-tagline { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 6px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* FLOATING WA */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(37,211,102,0.5); text-decoration: none; transition: transform .2s; animation: waPulse 3s ease-in-out infinite; }
  .wa-float:hover { transform: scale(1.1); animation: none; }
  .wa-float svg { width: 30px; height: 30px; fill: white; }
  @keyframes waPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 50px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); } }

  /* REVEAL */
  .reveal { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .dest-panel-layout { grid-template-columns: 1fr; }
    .dest-main-img { height: 280px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-circle { width: 200px; height: 200px; font-size: 80px; }
    .testi-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .services-grid { grid-template-columns: 1fr; }
    .dest-tab-btn { padding: 10px 16px; font-size: 13px; }
  }
