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

:root {
  --pink: #E8448A;
  --pink-dark: #C4147A;
  --pink-light: #FFF0F7;
  --teal: #3ABFB0;
  --teal-light: #F0FDFB;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --border: #F0E4EC;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --header-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] {
  --bg: #0F0F1A;
  --dark: #EEEEFF;
  --gray: #9090B0;
  --pink-light: #2A0E1A;
  --teal-light: #091D1B;
  --border: #2A2A3E;
  --header-bg: rgba(15, 15, 26, 0.95);
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--bg);
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
}

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

.btn-label-short { display: none; }

/* --- Main nav --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
  background: var(--pink-light);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
}

/* --- Header controls --- */
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.lang-toggle:hover,
.theme-toggle:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.theme-toggle svg { display: block; }

.icon-sun { display: none; }
.icon-moon { display: inline; }
[data-theme="dark"] .icon-sun { display: inline; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .footer { background: #0D0D1A; }
[data-theme="dark"] .cta-final { background: #1a0c14; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 68, 138, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 191, 176, 0.3);
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 68, 138, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-large {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.badge-teal {
  background: var(--teal-light);
  color: var(--teal);
}

.section-sub {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 8px;
  margin-bottom: 48px;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
  background: var(--header-bg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
  width: auto;
}

/* --- Hero --- */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--teal-light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-photo img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 32px 64px rgba(232, 68, 138, 0.2);
  display: block;
  margin: 0 auto;
}

/* --- Park Ticker --- */
.park-ticker {
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker-scroll 50s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.park-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-dot {
  color: var(--pink);
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Services --- */
.services {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}

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

.service-card {
  background: var(--pink-light);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s ease;
}

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

.service-card:nth-child(even) {
  background: var(--teal-light);
}

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- About --- */
.about {
  padding: 80px 0;
  background: var(--teal-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 32px 64px rgba(58, 191, 176, 0.2);
  display: block;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text .btn {
  margin-top: 8px;
}

/* --- How it works --- */
.how-it-works {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 36px 24px;
  background: var(--pink-light);
  border-radius: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--pink);
  flex-shrink: 0;
  opacity: 0.4;
}

/* --- Outros Destinos --- */
.outros-destinos {
  padding: 80px 0;
  background: var(--pink-light);
  text-align: center;
}

.outros-destinos h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}

.destinos-desc {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 40px;
  line-height: 1.6;
}

.destinos-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.destino-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  white-space: nowrap;
}

.destino-chip--more {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal);
}

[data-theme="dark"] .outros-destinos {
  background: #1a0c14;
}

[data-theme="dark"] .destino-chip {
  background: #26263e;
  border-color: #3a3a54;
  color: var(--dark);
}

/* --- CTA Final --- */
.cta-final {
  padding: 96px 0;
  background: #ffffff;
  text-align: center;
  color: var(--dark);
}

.cta-final h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  background: var(--dark);
  text-align: center;
}

.footer-logo {
  height: auto;
  width: 180px;
  display: block;
  margin: 0 auto 16px;
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 99;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

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

@media (max-width: 768px) {
  .logo {
    height: auto;
    width: 140px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    font-size: 1rem;
    padding: 16px 28px;
  }

  .hero {
    padding: 48px 0 56px;
  }

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

  .hero-photo {
    order: -1;
  }

  .hero-photo img {
    max-width: 280px;
    border-radius: 24px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .services {
    padding: 64px 0;
  }

  .services h2 {
    font-size: 1.6rem;
  }

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

  .about {
    padding: 64px 0;
  }

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

  .about-text h2 {
    font-size: 1.5rem;
  }

  .how-it-works {
    padding: 64px 0;
  }

  .how-it-works h2 {
    font-size: 1.6rem;
  }

  .outros-destinos {
    padding: 64px 0;
  }

  .outros-destinos h2 {
    font-size: 1.6rem;
  }

  .steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step {
    max-width: none;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .cta-final {
    padding: 72px 0;
  }

  .cta-final h2 {
    font-size: 1.75rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
}
